]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #1000 from fabrixxm/master
authorfabrixxm <fabrix.xm@gmail.com>
Thu, 29 May 2014 13:04:39 +0000 (15:04 +0200)
committerfabrixxm <fabrix.xm@gmail.com>
Thu, 29 May 2014 13:04:39 +0000 (15:04 +0200)
update IT strings

59 files changed:
boot.php
include/bb2diaspora.php
include/bbcode.php
include/cronhooks.php
include/html2bbcode.php
include/html2plain.php
include/items.php
include/network.php
include/oembed.php
include/onepoll.php
include/pidfile.php
include/plaintext.php
include/poller.php
include/queue.php
mod/network.php
mod/parse_url.php
mod/starred.php
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/smarty3/register_adminadd_eml.tpl [new file with mode: 0644]
view/fr/strings.php
view/global.css
view/nb-no/messages.po
view/nb-no/strings.php
view/nl/messages.po
view/nl/strings.php
view/pt-br/messages.po
view/pt-br/strings.php
view/ro/messages.po [new file with mode: 0644]
view/ro/smarty3/follow_notify_eml.tpl [new file with mode: 0644]
view/ro/smarty3/friend_complete_eml.tpl [new file with mode: 0644]
view/ro/smarty3/intro_complete_eml.tpl [new file with mode: 0644]
view/ro/smarty3/lostpass_eml.tpl [new file with mode: 0644]
view/ro/smarty3/passchanged_eml.tpl [new file with mode: 0644]
view/ro/smarty3/register_adminadd_eml.tpl [new file with mode: 0644]
view/ro/smarty3/register_open_eml.tpl [new file with mode: 0644]
view/ro/smarty3/register_verify_eml.tpl [new file with mode: 0644]
view/ro/smarty3/request_notify_eml.tpl [new file with mode: 0644]
view/ro/smarty3/update_fail_eml.tpl [new file with mode: 0644]
view/ro/strings.php [new file with mode: 0644]
view/templates/head.tpl
view/templates/oembed_video.tpl
view/theme/vier/css/font-awesome-ie7.css
view/theme/vier/css/font-awesome-ie7.min.css [new file with mode: 0644]
view/theme/vier/css/font-awesome.css
view/theme/vier/css/font-awesome.min.css [new file with mode: 0644]
view/theme/vier/css/font2.css
view/theme/vier/font/FontAwesome.otf [new file with mode: 0644]
view/theme/vier/font/fontawesome-webfont.eot
view/theme/vier/font/fontawesome-webfont.svg
view/theme/vier/font/fontawesome-webfont.ttf
view/theme/vier/font/fontawesome-webfont.woff
view/theme/vier/style.css
view/theme/vier/templates/nav.tpl
view/theme/vier/templates/wall_thread.tpl

index 3a9e8c3e725678f1a82f6c102e479c1e2c05bb38..53d1c18ba16b6f3631d9b65f5b3da543d1832613 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -12,7 +12,7 @@ require_once('library/Mobile_Detect/Mobile_Detect.php');
 require_once('include/features.php');
 
 define ( 'FRIENDICA_PLATFORM',     'Friendica');
-define ( 'FRIENDICA_VERSION',      '3.2.1748' );
+define ( 'FRIENDICA_VERSION',      '3.2.1750' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
 define ( 'DB_UPDATE_VERSION',      1170      );
 define ( 'EOL',                    "<br />\r\n"     );
@@ -428,6 +428,8 @@ if(! class_exists('App')) {
 
                        global $default_timezone, $argv, $argc;
 
+                       $hostname = "";
+
                        if (file_exists(".htpreconfig.php"))
                                @include(".htpreconfig.php");
 
@@ -622,11 +624,16 @@ if(! class_exists('App')) {
                        if($parsed) {
                                $this->scheme = $parsed['scheme'];
 
-                               $this->hostname = $parsed['host'];
+                               $hostname = $parsed['host'];
                                if(x($parsed,'port'))
-                                       $this->hostname .= ':' . $parsed['port'];
+                                       $hostname .= ':' . $parsed['port'];
                                if(x($parsed,'path'))
                                        $this->path = trim($parsed['path'],'\\/');
+
+                               if (file_exists(".htpreconfig.php"))
+                                       @include(".htpreconfig.php");
+
+                               $this->hostname = $hostname;
                        }
 
                }
index 0ffbf0a14464fd8d4dc2bf9f2ab63953c4147bcf..eeed19d81686a150b9be58609243f2d5a684f74a 100644 (file)
@@ -63,7 +63,8 @@ function bb2diaspora($Text,$preserve_nl = false, $fordiaspora = true) {
        /**
         * Transform #tags, strip off the [url] and replace spaces with underscore
         */
-       $Text = preg_replace_callback('/#\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', create_function('$match',
+       $URLSearchString = "^\[\]";
+       $Text = preg_replace_callback("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/i", create_function('$match',
                'return \'#\'. str_replace(\' \', \'_\', $match[2]);'
        ), $Text);
 
index 33c0721b08e9cda041b7b151d72d8226368791ea..4ccab8db5d9ffb276a17874a1ff3bd9edd680296 100644 (file)
@@ -40,11 +40,11 @@ function bb_remove_share_information($Text, $plaintext = false) {
 }
 
 function bb_cleanup_share($shared) {
-        if ($shared[2] != "type-link")
-                return($shared[3]);
+       if (!in_array($shared[2], array("type-link", "type-video")))
+                return($shared[0]);
 
         if (!preg_match_all("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism",$shared[3], $bookmark))
-                return($shared[3]);
+                return($shared[0]);
 
         $title = "";
         $link = "";
@@ -746,9 +746,20 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal
        // Set up the parameters for a MAIL search string
        $MAILSearchString = $URLSearchString;
 
+       // Remove all hashtag addresses
+       if (!$tryoembed OR $simplehtml)
+               $Text = preg_replace("/([#@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', $Text);
+
        // Bookmarks in red - will be converted to bookmarks in friendica
        $Text = preg_replace("/#\^\[url\]([$URLSearchString]*)\[\/url\]/ism", '[bookmark=$1]$1[/bookmark]', $Text);
        $Text = preg_replace("/#\^\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[bookmark=$1]$2[/bookmark]', $Text);
+       $Text = preg_replace("/#\[url\=[$URLSearchString]*\]\^\[\/url\]\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/i",
+                               "[bookmark=$1]$2[/bookmark]", $Text);
+
+       if ($simplehtml == 2) {
+               $Text = preg_replace("/[^#@]\[url\=([^\]]*)\](.*?)\[\/url\]/ism",' $2 [url]$1[/url]',$Text);
+               $Text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism",' $2 [url]$1[/url]',$Text);
+       }
 
        if ($simplehtml == 5)
                $Text = preg_replace("/[^#@]\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[url]$1[/url]', $Text);
@@ -1062,11 +1073,11 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal
        //      $Text = str_replace('<br /><ul','<ul ', $Text);
 
        // Remove all hashtag addresses
-       if (!$tryoembed AND get_config("system", "remove_hashtags_on_export")) {
+/*     if (!$tryoembed AND get_config("system", "remove_hashtags_on_export")) {
                $pattern = '/#<a.*?href="(.*?)".*?>(.*?)<\/a>/is';
                $Text = preg_replace($pattern, '#$2', $Text);
        }
-
+*/
        call_hooks('bbcode',$Text);
 
        $a->save_timestamp($stamp1, "parser");
index cf1d13765faf56d8d55b49bc5d6796cc677ede02..0ba453555ce63c580622d922ed3feee27438e329 100644 (file)
@@ -37,9 +37,15 @@ function cronhooks_run(&$argv, &$argc){
 
        $lockpath = get_config('system','lockpath');
        if ($lockpath != '') {
-               $pidfile = new pidfile($lockpath, 'cron.lck');
+               $pidfile = new pidfile($lockpath, 'cronhooks');
                if($pidfile->is_already_running()) {
                        logger("cronhooks: Already running");
+                       if ($pidfile->running_time() > 9*60) {
+                                $pidfile->kill();
+                                logger("cronhooks: killed stale process");
+                               // Calling a new instance
+                               proc_run('php','include/cronhooks.php');
+                        }
                        exit;
                }
        }
@@ -50,11 +56,12 @@ function cronhooks_run(&$argv, &$argc){
 
        logger('cronhooks: start');
 
-
        $d = datetime_convert();
 
        call_hooks('cron', $d);
 
+       logger('cronhooks: end');
+
        return;
 }
 
index d9255a7ffc02ac49f5a2ca50f764a6439f6fc407..6e9532c92f5bf462461b600facc085b5489f2e97 100644 (file)
@@ -167,6 +167,7 @@ function html2bbcode($message)
        // Test
        //node2bbcode($doc, 'span', array('class'=>'/([\w ]+)/'), '[class=$1]', '[/class]');
        node2bbcode($doc, 'span', array('class'=>'type-link'), '[class=type-link]', '[/class]');
+       node2bbcode($doc, 'span', array('class'=>'type-video'), '[class=type-video]', '[/class]');
 
        node2bbcode($doc, 'strong', array(), '[b]', '[/b]');
        node2bbcode($doc, 'em', array(), '[i]', '[/i]');
index 0398ea79b074159ff9fa2efa4e8b3ea7761eb492..f09087e0b0179fab68fb4e42328ba5037dbabf61 100644 (file)
@@ -114,11 +114,11 @@ function html2plain($html, $wraplength = 75, $compact = false)
        $message = str_replace("\r", "", $html);
 
        // replace all hashtag addresses
-       if (get_config("system", "remove_hashtags_on_export")) {
+/*     if (get_config("system", "remove_hashtags_on_export")) {
                $pattern = '/#<a.*?href="(.*?)".*?>(.*?)<\/a>/is';
                $message = preg_replace($pattern, '#$2', $message);
        }
-
+*/
        $doc = new DOMDocument();
        $doc->preserveWhiteSpace = false;
 
@@ -185,8 +185,8 @@ function html2plain($html, $wraplength = 75, $compact = false)
        node2bbcode($doc, 'h6', array(), "\n\n*", "*\n");
 
        // Problem: there is no reliable way to detect if it is a link to a tag or profile
-       //node2bbcode($doc, 'a', array('href'=>'/(.+)/'), ' $1 ', '', true);
-       node2bbcode($doc, 'a', array('href'=>'/(.+)/', 'rel'=>'oembed'), ' $1 ', '', true);
+       //node2bbcode($doc, 'a', array('href'=>'/(.+)/'), ' $1 ', ' ', true);
+       //node2bbcode($doc, 'a', array('href'=>'/(.+)/', 'rel'=>'oembed'), ' $1 ', '', true);
        //node2bbcode($doc, 'img', array('alt'=>'/(.+)/'), '$1', '');
        //node2bbcode($doc, 'img', array('title'=>'/(.+)/'), '$1', '');
        //node2bbcode($doc, 'img', array(), '', '');
index 2f03818a76bae0e2099df620a75016a04ec6f1b5..76bcbc7b24120d39216ce49a42140427a7e19436 100755 (executable)
@@ -1007,9 +1007,9 @@ function item_store($arr,$force_parent = false) {
        }
 
        // Shouldn't happen but we want to make absolutely sure it doesn't leak from a plugin.
-
-       if((strpos($arr['body'],'<') !== false) || (strpos($arr['body'],'>') !== false))
-               $arr['body'] = strip_tags($arr['body']);
+       // 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))
+       //      $arr['body'] = strip_tags($arr['body']);
 
 
        if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
index 310b988cb3460fcee23b4af08be4e83ae6688d8c..79843a3322fb9ff0f55b4c218b6d7a8e7b798fc4 100644 (file)
@@ -122,7 +122,6 @@ function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_
 
 if(! function_exists('post_url')) {
 function post_url($url,$params, $headers = null, &$redirects = 0, $timeout = 0) {
-
        $stamp1 = microtime(true);
 
        $a = get_app();
@@ -130,6 +129,8 @@ function post_url($url,$params, $headers = null, &$redirects = 0, $timeout = 0)
        if(($redirects > 8) || (! $ch))
                return false;
 
+       logger("post_url: start ".$url, LOGGER_DATA);
+
        curl_setopt($ch, CURLOPT_HEADER, true);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
        curl_setopt($ch, CURLOPT_POST,1);
@@ -178,6 +179,8 @@ function post_url($url,$params, $headers = null, &$redirects = 0, $timeout = 0)
        $curl_info = curl_getinfo($ch);
        $http_code = $curl_info['http_code'];
 
+       logger("post_url: result ".$http_code." - ".$url, LOGGER_DATA);
+
        $header = '';
 
        // Pull out multiple headers, e.g. proxy and continuation headers
@@ -190,16 +193,18 @@ function post_url($url,$params, $headers = null, &$redirects = 0, $timeout = 0)
        }
 
        if($http_code == 301 || $http_code == 302 || $http_code == 303 || $http_code == 307) {
-        $matches = array();
-        preg_match('/(Location:|URI:)(.*?)\n/', $header, $matches);
-        $newurl = trim(array_pop($matches));
+               $matches = array();
+               preg_match('/(Location:|URI:)(.*?)\n/', $header, $matches);
+               $newurl = trim(array_pop($matches));
                if(strpos($newurl,'/') === 0)
                        $newurl = $old_location_info["scheme"] . "://" . $old_location_info["host"] . $newurl;
-        if (filter_var($newurl, FILTER_VALIDATE_URL)) {
-            $redirects++;
-            return fetch_url($newurl,false,$redirects,$timeout);
-        }
-    }
+               if (filter_var($newurl, FILTER_VALIDATE_URL)) {
+                       $redirects++;
+                       logger("post_url: redirect ".$url." to ".$newurl);
+                       return post_url($newurl,$params, $headers, $redirects, $timeout);
+                       //return fetch_url($newurl,false,$redirects,$timeout);
+               }
+       }
        $a->set_curl_code($http_code);
        $body = substr($s,strlen($header));
 
@@ -209,6 +214,8 @@ function post_url($url,$params, $headers = null, &$redirects = 0, $timeout = 0)
 
        $a->save_timestamp($stamp1, "network");
 
+       logger("post_url: end ".$url, LOGGER_DATA);
+
        return($body);
 }}
 
@@ -1107,8 +1114,30 @@ function xml2array($contents, $namespaces = true, $get_attributes=1, $priority =
 }
 
 function original_url($url, $depth=1, $fetchbody = false) {
+
+       // Remove Analytics Data from Google and other tracking platforms
+       $urldata = parse_url($url);
+       if (is_string($urldata["query"])) {
+               $query = $urldata["query"];
+               parse_str($query, $querydata);
+
+               if (is_array($querydata))
+                       foreach ($querydata AS $param=>$value)
+                               if (in_array($param, array("utm_source", "utm_medium", "utm_term", "utm_content", "utm_campaign",
+                                                       "wt_mc", "pk_campaign", "pk_kwd", "mc_cid", "mc_eid",
+                                                       "fb_action_ids", "fb_action_types", "fb_ref",
+                                                       "woo_campaign", "woo_source", "woo_medium", "woo_content", "woo_term"))) {
+                                       $pair = $param."=".$value;
+                                       $url = str_replace($pair, "", $url);
+                                       $url = str_replace(array("?&", "&&"), array("?", ""), $url);
+                               }
+
+               if (substr($url, -1, 1) == "?")
+                       $url = substr($url, 0, -1);
+       }
+
         if ($depth > 10)
-                return($url);
+               return($url);
 
         $url = trim($url, "'");
 
index 17fc873ccb304aa339cd4e24d5267a82a60e1015..29d462d8f7d2252629e1cd3fb75b6508b90c04f2 100755 (executable)
@@ -10,7 +10,7 @@ function oembed_replacecb($matches){
 }
 
 
-function oembed_fetch_url($embedurl){
+function oembed_fetch_url($embedurl, $no_rich_type = false){
 
        $embedurl = trim($embedurl, "'");
        $embedurl = trim($embedurl, '"');
@@ -79,6 +79,32 @@ function oembed_fetch_url($embedurl){
                return false;
 
        $j->embedurl = $embedurl;
+
+       // If fetching information doesn't work, then improve via internal functions
+       if (($j->type == "error") OR ($no_rich_type AND ($j->type == "rich"))) {
+               require_once("mod/parse_url.php");
+               $data = parseurl_getsiteinfo($embedurl, true, false);
+               $j->type = $data["type"];
+
+               if ($j->type == "photo") {
+                       $j->url = $data["url"];
+                       //$j->width = $data["images"][0]["width"];
+                       //$j->height = $data["images"][0]["height"];
+               }
+
+               if (isset($data["title"]))
+                       $j->title = $data["title"];
+
+               if (isset($data["text"]))
+                       $j->description = $data["text"];
+
+               if (is_array($data["images"])) {
+                       $j->thumbnail_url = $data["images"][0]["src"];
+                       $j->thumbnail_width = $data["images"][0]["width"];
+                       $j->thumbnail_height = $data["images"][0]["height"];
+               }
+       }
+
        return $j;
 }
 
index 49047118a4b20c3fe96b3a255518657cd0c85de2..15b8e7c2cc20c2679f04cfe2e1408585aed071a4 100644 (file)
@@ -60,7 +60,7 @@ function onepoll_run(&$argv, &$argc){
        // Test
        $lockpath = get_config('system','lockpath');
        if ($lockpath != '') {
-               $pidfile = new pidfile($lockpath, 'onepoll'.$contact_id.'.lck');
+               $pidfile = new pidfile($lockpath, 'onepoll'.$contact_id);
                if($pidfile->is_already_running()) {
                        logger("onepoll: Already running for contact ".$contact_id);
                        exit;
index 47df8d1f4624ef43fa2430d013f4000f8edad411..4f5b25ad756521af2dee7626a26beb6c83395964 100644 (file)
@@ -28,5 +28,14 @@ class pidfile {
        public function is_already_running() {
                return $this->_running;
        }
+
+       public function running_time() {
+               return(time() - filectime($this->_file));
+       }
+
+       public function kill() {
+               if (file_exists($this->_file))
+                       return(posix_kill(file_get_contents($this->_file), SIGTERM));
+       }
 }
 ?>
index 0c985e05c05a6a489006260449081abcbc1be796..d824f8759590d3068d3e048db0b12cf355687176 100644 (file)
@@ -9,6 +9,10 @@ function get_attached_data($body) {
  - description:
  - (thumbnail)
 */
+
+       // Simplify image codes
+       $body = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $body);
+
        $post = array();
 
        if (preg_match_all("(\[class=(.*?)\](.*?)\[\/class\])ism",$body, $attached,  PREG_SET_ORDER)) {
@@ -38,24 +42,11 @@ function get_attached_data($body) {
 
                }
        }
-       return($post);
-}
-
-function plaintext($a, $b, $limit = 0, $includedlinks = false) {
-       require_once("include/bbcode.php");
-       require_once("include/html2plain.php");
-       require_once("mod/parse_url.php");
-       require_once("include/network.php");
-
-       // Simplify image codes
-       $body = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $b["body"]);
-
-       // At first look at data that is attached via "type-..." stuff
-       // This will hopefully replaced with a dedicated bbcode later
-       $post = get_attached_data($body);
 
        // if nothing is found, it maybe having an image.
        if (!isset($post["type"])) {
+               require_once("mod/parse_url.php");
+
                $URLSearchString = "^\[\]";
                if (preg_match_all("(\[url=([$URLSearchString]*)\]\s*\[img\]([$URLSearchString]*)\[\/img\]\s*\[\/url\])ism", $body, $pictures,  PREG_SET_ORDER)) {
                        if (count($pictures) == 1) {
@@ -109,6 +100,37 @@ function plaintext($a, $b, $limit = 0, $includedlinks = false) {
                }
        }
 
+       return($post);
+}
+
+function shortenmsg($msg, $limit, $twitter = false) {
+       // To-Do:
+       // For Twitter URLs aren't shortened, but they have to be calculated as if.
+
+       $lines = explode("\n", $msg);
+       $msg = "";
+       $recycle = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8');
+       foreach ($lines AS $row=>$line) {
+               if (strlen(trim($msg."\n".$line)) <= $limit)
+                       $msg = trim($msg."\n".$line);
+               // Is the new message empty by now or is it a reshared message?
+               elseif (($msg == "") OR (($row == 1) AND (substr($msg, 0, 4) == $recycle)))
+                       $msg = substr(substr(trim($msg."\n".$line), 0, $limit), 0, -3)."...";
+               else
+                       break;
+       }
+       return($msg);
+}
+
+function plaintext($a, $b, $limit = 0, $includedlinks = false) {
+       require_once("include/bbcode.php");
+       require_once("include/html2plain.php");
+       require_once("include/network.php");
+
+       // At first look at data that is attached via "type-..." stuff
+       // This will hopefully replaced with a dedicated bbcode later
+       $post = get_attached_data($b["body"]);
+
        if (($b["title"] != "") AND ($post["text"] != ""))
                $post["text"] = trim($b["title"]."\n\n".$post["text"]);
        elseif ($b["title"] != "")
@@ -159,16 +181,7 @@ function plaintext($a, $b, $limit = 0, $includedlinks = false) {
                                $post["url"] = $b["plink"];
                        }
 
-                       $lines = explode("\n", $msg);
-                       $msg = "";
-                       $recycle = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8');
-                       foreach ($lines AS $row=>$line) {
-                               if (strlen(trim($msg."\n".$line)) <= $limit)
-                                       $msg = trim($msg."\n".$line);
-                               // Is the new message empty by now or is it a reshared message?
-                               elseif (($msg == "") OR (($row == 1) AND (substr($msg, 0, 4) == $recycle)))
-                                       $msg = substr(substr(trim($msg."\n".$line), 0, $limit), 0, -3)."...";
-                       }
+                       $msg = shortenmsg($msg, $limit);
                }
        }
 
index 084067b190059c3c6f0290b2476811b1f2c87d82..b04c77f74446d80ce627fb41786a50b9aae3ed49 100644 (file)
@@ -43,9 +43,15 @@ function poller_run(&$argv, &$argc){
 
        $lockpath = get_config('system','lockpath');
        if ($lockpath != '') {
-               $pidfile = new pidfile($lockpath, 'poller.lck');
+               $pidfile = new pidfile($lockpath, 'poller');
                if($pidfile->is_already_running()) {
                        logger("poller: Already running");
+                       if ($pidfile->running_time() > 9*60) {
+                                $pidfile->kill();
+                                logger("poller: killed stale process");
+                                // Calling a new instance
+                                proc_run('php','include/poller.php');
+                        }
                        exit;
                }
        }
index 4825eb8a4d4cb0524e5e637804fe37d5f01ea566..bc3cc258cc8c0ce04f56b038ebc1deb8161ee242 100644 (file)
@@ -86,9 +86,15 @@ function queue_run(&$argv, &$argc){
 
        $lockpath = get_config('system','lockpath');
        if ($lockpath != '') {
-               $pidfile = new pidfile($lockpath, 'queue.lck');
+               $pidfile = new pidfile($lockpath, 'queue');
                if($pidfile->is_already_running()) {
                        logger("queue: Already running");
+                       if ($pidfile->running_time() > 9*60) {
+                               $pidfile->kill();
+                               logger("queue: killed stale process");
+                               // Calling a new instance
+                               proc_run('php',"include/queue.php");
+                       }
                        return;
                }
        }
index 585c063f567da09689fbc9567606f09a3abd4694..ab44073508c572dba438a74b753a8944f7e7a5eb 100644 (file)
@@ -710,7 +710,7 @@ die("ss");
                        );
                } else {
                        $r = q("SELECT `thread`.`iid` AS `item_id`, `thread`.`network` AS `item_network`, `contact`.`uid` AS `contact_uid`
-                               FROM $sql_table $sql_post_table INNER JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
+                               FROM $sql_table $sql_post_table STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
                                AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
                                WHERE `thread`.`uid` = %d AND `thread`.`visible` = 1 AND `thread`.`deleted` = 0
                                AND `thread`.`moderated` = 0
index 135a4ccc6f15d7a6fae783f4179f1c1c485b9bed..481b26533d25da5586a8f9f135f90ea0e7b96ec6 100644 (file)
@@ -50,7 +50,7 @@ function completeurl($url, $scheme) {
         return($complete);
 }
 
-function parseurl_getsiteinfo($url, $no_guessing = false) {
+function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true) {
 
        $siteinfo = array();
 
@@ -82,12 +82,14 @@ function parseurl_getsiteinfo($url, $no_guessing = false) {
                return($siteinfo);
        }
 
-       require_once("include/oembed.php");
+       if ($do_oembed) {
+               require_once("include/oembed.php");
 
-       $oembed_data = oembed_fetch_url($url);
+               $oembed_data = oembed_fetch_url($url);
 
-       if ($oembed_data->type != "error")
-               $siteinfo["type"] = $oembed_data->type;
+               if ($oembed_data->type != "error")
+                       $siteinfo["type"] = $oembed_data->type;
+       }
 
        // Fetch the first mentioned charset. Can be in body or header
        $charset = "";
@@ -217,7 +219,7 @@ function parseurl_getsiteinfo($url, $no_guessing = false) {
                        }
        }
 
-       if ($oembed_data->type == "link") {
+       if (isset($oembed_data) AND ($oembed_data->type == "link")) {
                if (isset($oembed_data->title) AND (trim($oembed_data->title) != ""))
                        $siteinfo["title"] = $oembed_data->title;
                if (isset($oembed_data->description) AND (trim($oembed_data->description) != ""))
index 3bfc75f67964df1c5107aecca6ff615d8323193c..2a89ac768bae20cb3150c48b3d5a841347790611 100644 (file)
@@ -3,6 +3,8 @@
 
 function starred_init(&$a) {
 
+       require_once("include/threads.php");
+
        $starred = 0;
 
        if(! local_user())
@@ -27,7 +29,9 @@ function starred_init(&$a) {
                intval(local_user()),
                intval($message_id)
        );
+
+       update_thread($message_id);
+
        // See if we've been passed a return path to redirect to
        $return_path = ((x($_REQUEST,'return')) ? $_REQUEST['return'] : '');
        if($return_path) {
index c51af82316c6d0e79af4ddf1da4897bffbc6be5d..a385085c081baac862246e826994cc214b00eee0 100644 (file)
@@ -8,8 +8,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-28 17:57+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:1355
+#: ../../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:670
+#: ../../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:612
+#: ../../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: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 "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:1538
+#: ../../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:1539
+#: ../../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č)"
 
@@ -131,17 +132,17 @@ msgstr "přes Zeď-na-Zeď "
 msgid "%s from %s"
 msgstr "%s od %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 "Okomentovat"
 
-#: ../../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 "Čekejte prosím"
 
@@ -154,41 +155,38 @@ msgstr[1] "%d komentářů"
 msgstr[2] "%d komentářů"
 
 #: ../../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] ""
 msgstr[2] "komentář"
 
-#: ../../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 "zobrazit více"
 
-#: ../../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 "Nastavte Vaši polohu"
 
-#: ../../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 "Odeslat"
 
@@ -225,9 +223,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 "Náhled"
 
@@ -243,32 +241,33 @@ msgstr "Nenalezen"
 msgid "Page not found."
 msgstr "Stránka nenalezena"
 
-#: ../../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 "Nedostatečné oprávnění"
 
-#: ../../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 "Přístup odmítnut."
 
@@ -276,2756 +275,2744 @@ msgstr "Přístup odmítnut."
 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:145
-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:145
-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: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 "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:1986
-#: ../../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:2003
-#: ../../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:328
-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:327
-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
-#: ../../view/theme/vier/config.php:49
-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:688
-#: ../../include/nav.php:173
-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:1940
-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: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 "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:150 ../../mod/subthread.php:87
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1942 ../../include/diaspora.php:1908
-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:167
-#: ../../include/conversation.php:137 ../../include/diaspora.php:1924
-#, 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: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 "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: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 "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:1005 ../../mod/admin.php:1213 ../../mod/settings.php:84
-#: ../../include/nav.php:169
-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"
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "Požadavek o přátelství / kontaktování"
 
-#: ../../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: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: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:834
+msgid "Please answer the following:"
+msgstr "Odpovězte, prosím, následující:"
 
-#: ../../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:835
+#, php-format
+msgid "Does %s know you?"
+msgstr "Zná Vás uživatel %s ?"
 
-#: ../../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: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:606
-#: ../../view/theme/diabook/theme.php:628
-#: ../../view/theme/diabook/config.php:162
-msgid "Connect Services"
-msgstr "Propojené služby"
+#: ../../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/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Zobrazit/skrýt boxy na pravém sloupci:"
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "Přidat osobní poznámku:"
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Nastavení barevného schematu"
+#: ../../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 "Nastavit přiblížení pro Earth Layer"
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet / Federativní Sociální Web"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Zarovnání"
+#: ../../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 "Vlevo"
+#: ../../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:67
-msgid "Center"
-msgstr "Uprostřed"
+#: ../../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:68 ../../view/theme/clean/config.php:76
-#: ../../view/theme/cleanzero/config.php:86
-msgid "Color scheme"
-msgstr "Barevné schéma"
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "Odeslat žádost"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Velikost písma u příspěvků"
+#: ../../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/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Velikost písma textů"
+#: ../../mod/files.php:156 ../../mod/videos.php:301
+#: ../../include/text.php:1400
+msgid "View Video"
+msgstr "Zobrazit video"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Nastavit barevné schéma"
+#: ../../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:54 ../../include/user.php:246
-#: ../../include/text.php:1676
-msgid "default"
-msgstr "standardní"
+#: ../../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 "Background Image"
-msgstr "Obrázek pozadí"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Tipy pro nové členy"
 
-#: ../../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/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Neplatný identifikátor požadavku."
 
-#: ../../view/theme/clean/config.php:75
-msgid "Background Color"
-msgstr "Barva pozadí"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Odstranit"
 
-#: ../../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: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 "font size"
-msgstr "velikost fondu"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Systém"
 
-#: ../../view/theme/clean/config.php:77
-msgid "base font size for your interface"
-msgstr "základní velikost fontu"
+#: ../../mod/notifications.php:83 ../../include/nav.php:142
+msgid "Network"
+msgstr "Síť"
 
-#: ../../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:88 ../../mod/network.php:365
+msgid "Personal"
+msgstr "Osobní"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Nastavení šířku grafické šablony"
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123
+#: ../../include/nav.php:104 ../../include/nav.php:145
+msgid "Home"
+msgstr "Domů"
 
-#: ../../view/theme/vier/config.php:50
-msgid "Set style"
-msgstr "Nastavit styl"
+#: ../../mod/notifications.php:98 ../../include/nav.php:151
+msgid "Introductions"
+msgstr "Představení"
 
-#: ../../boot.php:692
-msgid "Delete this item?"
-msgstr "Odstranit tuto položku?"
+#: ../../mod/notifications.php:103 ../../mod/message.php:182
+#: ../../include/nav.php:158
+msgid "Messages"
+msgstr "Zprávy"
 
-#: ../../boot.php:695
-msgid "show fewer"
-msgstr "zobrazit méně"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Zobrazit ignorované žádosti"
 
-#: ../../boot.php:1023
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb."
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Skrýt ignorované žádosti"
 
-#: ../../boot.php:1025
-#, php-format
-msgid "Update Error at %s"
-msgstr "Chyba aktualizace na %s"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Typ oznámení: "
 
-#: ../../boot.php:1135
-msgid "Create a New Account"
-msgstr "Vytvořit nový účet"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Návrh přátelství"
 
-#: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108
-msgid "Register"
-msgstr "Registrovat"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "navrhl %s"
 
-#: ../../boot.php:1160 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Odhlásit se"
+#: ../../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:1161 ../../include/nav.php:91
-msgid "Login"
-msgstr "Přihlásit se"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Zveřejnit aktivitu nového přítele."
 
-#: ../../boot.php:1163
-msgid "Nickname or Email address: "
-msgstr "Přezdívka nebo e-mailová adresa:"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "je-li použitelné"
 
-#: ../../boot.php:1164
-msgid "Password: "
-msgstr "Heslo: "
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
+#: ../../mod/admin.php:908
+msgid "Approve"
+msgstr "Schválit"
 
-#: ../../boot.php:1165
-msgid "Remember me"
-msgstr "Pamatuj si mne"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Vaši údajní známí: "
 
-#: ../../boot.php:1168
-msgid "Or login using OpenID: "
-msgstr "Nebo přihlášení pomocí OpenID: "
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "ano"
 
-#: ../../boot.php:1174
-msgid "Forgot your password?"
-msgstr "Zapomněli jste své heslo?"
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "ne"
 
-#: ../../boot.php:1175 ../../mod/lostpass.php:84
-msgid "Password Reset"
-msgstr "Obnovení hesla"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Schválit jako: "
 
-#: ../../boot.php:1177
-msgid "Website Terms of Service"
-msgstr "Podmínky použití serveru"
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Přítel"
 
-#: ../../boot.php:1178
-msgid "terms of service"
-msgstr "podmínky použití"
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Sdílené"
 
-#: ../../boot.php:1180
-msgid "Website Privacy Policy"
-msgstr "Pravidla ochrany soukromí serveru"
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fanoušek / obdivovatel"
 
-#: ../../boot.php:1181
-msgid "privacy policy"
-msgstr "Ochrana soukromí"
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Přítel / žádost o připojení"
 
-#: ../../boot.php:1314
-msgid "Requested account is not available."
-msgstr "Požadovaný účet není dostupný."
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Nový následovník"
 
-#: ../../boot.php:1353 ../../mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Požadovaný profil není k dispozici."
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Žádné představení."
 
-#: ../../boot.php:1393 ../../boot.php:1497
-msgid "Edit profile"
-msgstr "Upravit profil"
+#: ../../mod/notifications.php:220 ../../include/nav.php:152
+msgid "Notifications"
+msgstr "Upozornění"
 
-#: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58
-#: ../../include/contact_widgets.php:9
-msgid "Connect"
-msgstr "Spojit"
+#: ../../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:1459
-msgid "Message"
-msgstr "Zpráva"
+#: ../../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:1467 ../../include/nav.php:171
-msgid "Profiles"
-msgstr "Profily"
+#: ../../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:1467
-msgid "Manage/edit profiles"
-msgstr "Spravovat/upravit profily"
+#: ../../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:1473 ../../boot.php:1499 ../../mod/profiles.php:730
-msgid "Change profile photo"
-msgstr "Změnit profilovou fotografii"
+#: ../../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:1474 ../../mod/profiles.php:731
-msgid "Create New Profile"
-msgstr "Vytvořit nový profil"
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
+msgstr "Žádné další síťové upozornění."
 
-#: ../../boot.php:1484 ../../mod/profiles.php:742
-msgid "Profile Image"
-msgstr "Profilový obrázek"
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
+msgstr "Upozornění Sítě"
 
-#: ../../boot.php:1487 ../../mod/profiles.php:744
-msgid "visible to everybody"
-msgstr "viditelné pro všechny"
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
+msgid "No more system notifications."
+msgstr "Žádné další systémová upozornění."
 
-#: ../../boot.php:1488 ../../mod/profiles.php:745
-msgid "Edit visibility"
-msgstr "Upravit viditelnost"
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr "Systémová upozornění"
 
-#: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:155
-msgid "Location:"
-msgstr "Místo:"
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
+msgstr "Žádné další osobní upozornění."
 
-#: ../../boot.php:1515 ../../mod/directory.php:136
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Pohlaví:"
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
+msgstr "Osobní upozornění"
 
-#: ../../boot.php:1518 ../../mod/directory.php:138
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Status:"
+#: ../../mod/notifications.php:508
+msgid "No more home notifications."
+msgstr "Žádné další domácí upozornění."
 
-#: ../../boot.php:1520 ../../mod/directory.php:140
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Domácí stránka:"
+#: ../../mod/notifications.php:512
+msgid "Home Notifications"
+msgstr "Domácí upozornění"
 
-#: ../../boot.php:1596 ../../boot.php:1682
-msgid "g A l F d"
-msgstr "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 "fotografie"
 
-#: ../../boot.php:1597 ../../boot.php:1683
-msgid "F d"
-msgstr "d. F"
+#: ../../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:1642 ../../boot.php:1723
-msgid "[today]"
-msgstr "[Dnes]"
+#: ../../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:1654
-msgid "Birthday Reminders"
-msgstr "Připomínka narozenin"
+#: ../../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:1655
-msgid "Birthdays this week:"
-msgstr "Narozeniny tento týden:"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID."
 
-#: ../../boot.php:1716
-msgid "[No description]"
-msgstr "[Žádný popis]"
+#: ../../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:1734
-msgid "Event Reminders"
-msgstr "Připomenutí událostí"
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
+msgstr "Přihlášení se nezdařilo."
 
-#: ../../boot.php:1735
-msgid "Events this week:"
-msgstr "Události tohoto týdne:"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Zdrojový text (bbcode):"
 
-#: ../../boot.php:1972 ../../include/nav.php:76
-msgid "Status"
-msgstr "Stav"
+#: ../../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:1975
-msgid "Status Messages and Posts"
-msgstr "Statusové zprávy a příspěvky "
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Zdrojový vstup: "
 
-#: ../../boot.php:1982
-msgid "Profile Details"
-msgstr "Detaily profilu"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (raw HTML): "
 
-#: ../../boot.php:1989 ../../mod/photos.php:52
-msgid "Photo Albums"
-msgstr "Fotoalba"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: ../../boot.php:1993 ../../boot.php:1996
-msgid "Videos"
-msgstr "Videa"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../boot.php:2006
-msgid "Events and Calendar"
-msgstr "Události a kalendář"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../boot.php:2010 ../../mod/notes.php:44
-msgid "Personal Notes"
-msgstr "Osobní poznámky"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../boot.php:2013
-msgid "Only You Can See This"
-msgstr "Toto můžete vidět jen Vy"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../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:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Nálada"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Vstupní data (ve formátu Diaspora): "
 
-#: ../../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:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../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 "Veřejný přístup odepřen."
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr "Nastavení téma zobrazení bylo aktualizováno."
 
-#: ../../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 "Položka nenalezena."
+#: ../../mod/admin.php:102 ../../mod/admin.php:573
+msgid "Site"
+msgstr "Web"
 
-#: ../../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:103 ../../mod/admin.php:901 ../../mod/admin.php:916
+msgid "Users"
+msgstr "Uživatelé"
 
-#: ../../mod/display.php:263
-msgid "Item has been removed."
-msgstr "Položka byla odstraněna."
+#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058
+#: ../../mod/settings.php:57
+msgid "Plugins"
+msgstr "Pluginy"
 
-#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Přístup odmítnut"
+#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258
+msgid "Themes"
+msgstr "Témata"
 
-#: ../../mod/friendica.php:58
-msgid "This is Friendica, version"
-msgstr "Toto je Friendica, verze"
+#: ../../mod/admin.php:106
+msgid "DB updates"
+msgstr "Aktualizace databáze"
 
-#: ../../mod/friendica.php:59
-msgid "running at web location"
-msgstr "běžící na webu"
+#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345
+msgid "Logs"
+msgstr "Logy"
 
-#: ../../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/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:126 ../../include/nav.php:180
+msgid "Admin"
+msgstr "Administrace"
 
-#: ../../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:127
+msgid "Plugin Features"
+msgstr "Funkčnosti rozšíření"
 
-#: ../../mod/friendica.php:78
-msgid "Installed plugins/addons/apps:"
-msgstr "Instalované pluginy/doplňky/aplikace:"
+#: ../../mod/admin.php:129
+msgid "User registrations waiting for confirmation"
+msgstr "Registrace uživatele čeká na potvrzení"
 
-#: ../../mod/friendica.php:91
-msgid "No installed plugins/addons/apps"
-msgstr "Nejsou žádné nainstalované doplňky/aplikace"
+#: ../../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/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:188 ../../mod/admin.php:855
+msgid "Normal Account"
+msgstr "Normální účet"
 
-#: ../../mod/register.php:92 ../../mod/admin.php:735 ../../mod/regmod.php:54
-#, php-format
-msgid "Registration details for %s"
-msgstr "Registrační údaje pro %s"
+#: ../../mod/admin.php:189 ../../mod/admin.php:856
+msgid "Soapbox Account"
+msgstr "Soapbox účet"
 
-#: ../../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:190 ../../mod/admin.php:857
+msgid "Community/Celebrity Account"
+msgstr "Komunitní účet / Účet celebrity"
 
-#: ../../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:191 ../../mod/admin.php:858
+msgid "Automatic Friend Account"
+msgstr "Účet s automatickým schvalováním přátel"
 
-#: ../../mod/register.php:109
-msgid "Your registration can not be processed."
-msgstr "Vaši registraci nelze zpracovat."
+#: ../../mod/admin.php:192
+msgid "Blog Account"
+msgstr "Účet Blogu"
 
-#: ../../mod/register.php:149
-#, php-format
-msgid "Registration request at %s"
-msgstr "Žádost o registraci na %s"
+#: ../../mod/admin.php:193
+msgid "Private Forum"
+msgstr "Soukromé fórum"
 
-#: ../../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:212
+msgid "Message queues"
+msgstr "Fronty zpráv"
 
-#: ../../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 "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: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 ""
-"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:218
+msgid "Summary"
+msgstr "Shrnutí"
 
-#: ../../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:220
+msgid "Registered users"
+msgstr "Registrovaní uživatelé"
 
-#: ../../mod/register.php:226
-msgid "Your OpenID (optional): "
-msgstr "Vaše OpenID (nepovinné): "
+#: ../../mod/admin.php:222
+msgid "Pending registrations"
+msgstr "Čekající registrace"
 
-#: ../../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:223
+msgid "Version"
+msgstr "Verze"
 
-#: ../../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 "Ano"
+#: ../../mod/admin.php:225
+msgid "Active plugins"
+msgstr "Aktivní pluginy"
 
-#: ../../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 "Ne"
+#: ../../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 "Membership on this site is by invitation only."
-msgstr "Členství na tomto webu je pouze na pozvání."
+#: ../../mod/admin.php:485
+msgid "Site settings updated."
+msgstr "Nastavení webu aktualizováno."
 
-#: ../../mod/register.php:262
-msgid "Your invitation ID: "
-msgstr "Vaše pozvání ID:"
+#: ../../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:265 ../../mod/admin.php:573
-msgid "Registration"
-msgstr "Registrace"
+#: ../../mod/admin.php:531 ../../mod/contacts.php:408
+msgid "Never"
+msgstr "Nikdy"
 
-#: ../../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:532
+msgid "At post arrival"
+msgstr "Při obdržení příspěvku"
 
-#: ../../mod/register.php:274
-msgid "Your Email Address: "
-msgstr "Vaše e-mailová adresa:"
+#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "Často"
 
-#: ../../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:534 ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "každou hodinu"
 
-#: ../../mod/register.php:276
-msgid "Choose a nickname: "
-msgstr "Vyberte přezdívku:"
+#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "Dvakrát denně"
 
-#: ../../mod/register.php:285 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Import"
+#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "denně"
 
-#: ../../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:541
+msgid "Multi user instance"
+msgstr "Více uživatelská instance"
 
-#: ../../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:559
+msgid "Closed"
+msgstr "Uzavřeno"
 
-#: ../../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:560
+msgid "Requires approval"
+msgstr "Vyžaduje schválení"
 
-#: ../../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:561
+msgid "Open"
+msgstr "Otevřená"
 
-#: ../../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: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:246
-msgid "Unexpected response from remote site: "
-msgstr "Neočekávaná odpověď od vzdáleného serveru:"
+#: ../../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:254
-msgid "Confirmation completed successfully."
-msgstr "Potvrzení úspěšně dokončena."
+#: ../../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:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr "Vzdálený server oznámil:"
+#: ../../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: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:575 ../../mod/register.php:265
+msgid "Registration"
+msgstr "Registrace"
 
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
-msgstr "Žádost o propojení selhala nebo byla zrušena."
+#: ../../mod/admin.php:576
+msgid "File upload"
+msgstr "Nahrání souborů"
 
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Nelze nastavit fotografii kontaktu."
+#: ../../mod/admin.php:577
+msgid "Policies"
+msgstr "Politiky"
 
-#: ../../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 je nyní přítel s %2$s"
+#: ../../mod/admin.php:578
+msgid "Advanced"
+msgstr "Pokročilé"
 
-#: ../../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:579
+msgid "Performance"
+msgstr "Výkonnost"
 
-#: ../../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: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: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:583
+msgid "Site name"
+msgstr "Název webu"
 
-#: ../../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: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 "V adresáři není k dispozici veřejný klíč pro URL %s."
+#: ../../mod/admin.php:585
+msgid "Additional Info"
+msgstr "Dodatečné informace"
 
-#: ../../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 "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat."
+"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: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:586
+msgid "System language"
+msgstr "Systémový jazyk"
 
-#: ../../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:587
+msgid "System theme"
+msgstr "Grafická šablona systému "
 
-#: ../../mod/dfrn_confirm.php:751
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Připojení přijato na %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/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:588
+msgid "Mobile system theme"
+msgstr "Systémové téma zobrazení pro mobilní zařízení"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Povolit připojení aplikacím"
+#: ../../mod/admin.php:588
+msgid "Theme for mobile devices"
+msgstr "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:589
+msgid "SSL link policy"
+msgstr "Politika SSL odkazů"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Pro pokračování se prosím přihlaste."
+#: ../../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/api.php:104
+#: ../../mod/admin.php:590
+msgid "Old style 'Share'"
+msgstr "Sdílení \"postaru\""
+
+#: ../../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/admin.php:591
+msgid "Hide help entry from navigation menu"
+msgstr "skrýt nápovědu z navigačního menu"
+
+#: ../../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 "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ů?"
+"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:17
-msgid "No valid account found."
-msgstr "Nenalezen žádný platný účet."
+#: ../../mod/admin.php:592
+msgid "Single user instance"
+msgstr "Jednouživatelská instance"
 
-#: ../../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: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:44
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Na %s bylo zažádáno o resetování hesla"
+#: ../../mod/admin.php:593
+msgid "Maximum image size"
+msgstr "Maximální velikost obrázků"
 
-#: ../../mod/lostpass.php:66
+#: ../../mod/admin.php:593
 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."
+"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:86
-msgid "Your new password is"
-msgstr "Někdo Vám napsal na Vaši profilovou stránku"
+#: ../../mod/admin.php:594
+msgid "Maximum image length"
+msgstr "Maximální velikost obrázků"
 
-#: ../../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:594
+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/lostpass.php:88
-msgid "click here to login"
-msgstr "klikněte zde pro přihlášení"
+#: ../../mod/admin.php:595
+msgid "JPEG image quality"
+msgstr "JPEG kvalita obrázku"
 
-#: ../../mod/lostpass.php:89
+#: ../../mod/admin.php:595
 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í)."
+"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/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:597
+msgid "Register policy"
+msgstr "Politika registrace"
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Zapomněli jste heslo?"
+#: ../../mod/admin.php:598
+msgid "Maximum Daily Registrations"
+msgstr "Maximální počet denních registrací"
 
-#: ../../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 "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."
+"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/lostpass.php:124
-msgid "Nickname or Email: "
-msgstr "Přezdívka nebo e-mail: "
+#: ../../mod/admin.php:599
+msgid "Register text"
+msgstr "Registrace textu"
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Reset"
+#: ../../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: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:600
+msgid "Accounts abandoned after x days"
+msgstr "Účet je opuštěn po x dnech"
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
-msgstr "Nevybrán příjemce."
+#: ../../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:59
-msgid "Unable to check your home location."
-msgstr "Nebylo možné zjistit Vaši domácí lokaci."
+#: ../../mod/admin.php:601
+msgid "Allowed friend domains"
+msgstr "Povolené domény přátel"
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
-msgstr "Zprávu se nepodařilo odeslat."
+#: ../../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 "Čá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:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr "Sběr zpráv selhal."
+#: ../../mod/admin.php:602
+msgid "Allowed email domains"
+msgstr "Povolené e-mailové domény"
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "Zpráva odeslána."
+#: ../../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:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Žádný příjemce."
+#: ../../mod/admin.php:603
+msgid "Block public"
+msgstr "Blokovat veřejnost"
 
-#: ../../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 "Zadejte prosím URL odkaz:"
+#: ../../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:142 ../../mod/message.php:319
-msgid "Send Private Message"
-msgstr "Odeslat soukromou zprávu"
+#: ../../mod/admin.php:604
+msgid "Force publish"
+msgstr "Publikovat"
 
-#: ../../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 "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ů."
+"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/wallmessage.php:144 ../../mod/message.php:320
-#: ../../mod/message.php:553
-msgid "To:"
-msgstr "Adresát:"
+#: ../../mod/admin.php:605
+msgid "Global directory update URL"
+msgstr "aktualizace URL adresy Globálního adresáře "
 
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
-#: ../../mod/message.php:555
-msgid "Subject:"
-msgstr "Předmět:"
+#: ../../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 adresa k aktualizaci globálního adresáře. Pokud není zadáno, funkce globálního adresáře není dostupná žádné aplikaci."
 
-#: ../../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:606
+msgid "Allow threaded items"
+msgstr "Povolit vícevláknové zpracování obsahu"
 
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../include/conversation.php:1084
-msgid "Upload photo"
-msgstr "Nahrát fotografii"
+#: ../../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/wallmessage.php:155 ../../mod/editpost.php:114
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../include/conversation.php:1088
-msgid "Insert web link"
-msgstr "Vložit webový odkaz"
+#: ../../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:6
-msgid "Welcome to Friendica"
-msgstr "Vítejte na Friendica"
-
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Seznam doporučení pro nového člena"
-
-#: ../../mod/newmember.php:12
+#: ../../mod/admin.php:607
 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"
+"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:18
-msgid "Friendica Walk-Through"
-msgstr "Prohlídka Friendica "
+#: ../../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/newmember.php:18
+#: ../../mod/admin.php:608
 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/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Navštivte své nastavení"
+"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: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/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:28
+#: ../../mod/admin.php:609
 msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "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."
+"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:36 ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Nahrát profilovou fotografii"
+#: ../../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:36
+#: ../../mod/admin.php:610
 msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "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í."
+"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:38
-msgid "Edit Your Profile"
-msgstr "Editujte Váš profil"
+#: ../../mod/admin.php:611
+msgid "Allow Users to set remote_self"
+msgstr "Umožnit uživatelům nastavit "
 
-#: ../../mod/newmember.php:38
+#: ../../mod/admin.php:611
 msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "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."
+"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:40
-msgid "Profile Keywords"
-msgstr "Profilová klíčová slova"
+#: ../../mod/admin.php:612
+msgid "Block multiple registrations"
+msgstr "Blokovat více registrací"
 
-#: ../../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/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:44
-msgid "Connecting"
-msgstr "Probíhá pokus o připojení"
+#: ../../mod/admin.php:613
+msgid "OpenID support"
+msgstr "podpora OpenID"
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../mod/admin.php:613
+msgid "OpenID support for registration and logins."
+msgstr "Podpora OpenID pro registraci a přihlašování."
 
-#: ../../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:614
+msgid "Fullname check"
+msgstr "kontrola úplného jména"
 
-#: ../../mod/newmember.php:51
+#: ../../mod/admin.php:614
 msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>Pokud</em> je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web."
+"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:56
-msgid "Importing Emails"
-msgstr "Importování emaiů"
+#: ../../mod/admin.php:615
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 Regulární výrazy"
 
-#: ../../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/admin.php:615
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Použít PHP UTF8 regulární výrazy."
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Navštivte Vaši stránku s kontakty"
+#: ../../mod/admin.php:616
+msgid "Show Community Page"
+msgstr "Zobrazit stránku komunity"
 
-#: ../../mod/newmember.php:58
+#: ../../mod/admin.php:616
 msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "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>."
+"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:60
-msgid "Go to Your Site's Directory"
-msgstr "Navštivte lokální adresář Friendica"
+#: ../../mod/admin.php:617
+msgid "Enable OStatus support"
+msgstr "Zapnout podporu OStatus"
 
-#: ../../mod/newmember.php:60
+#: ../../mod/admin.php:617
 msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "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."
+"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:62
-msgid "Finding New People"
-msgstr "Nalezení nových lidí"
+#: ../../mod/admin.php:618
+msgid "OStatus conversation completion interval"
+msgstr "Interval dokončení konverzace OStatus"
 
-#: ../../mod/newmember.php:62
+#: ../../mod/admin.php:618
 msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "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."
+"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:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Skupiny"
+#: ../../mod/admin.php:619
+msgid "Enable Diaspora support"
+msgstr "Povolit podporu Diaspora"
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Seskupte si své kontakty"
+#: ../../mod/admin.php:619
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora."
 
-#: ../../mod/newmember.php:70
+#: ../../mod/admin.php:620
+msgid "Only allow Friendica contacts"
+msgstr "Povolit pouze Friendica kontakty"
+
+#: ../../mod/admin.php:620
 msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "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íť."
+"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/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Proč nejsou mé příspěvky veřejné?"
+#: ../../mod/admin.php:621
+msgid "Verify SSL"
+msgstr "Ověřit SSL"
 
-#: ../../mod/newmember.php:73
+#: ../../mod/admin.php:621
 msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "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"
+"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/newmember.php:78
-msgid "Getting Help"
-msgstr "Získání nápovědy"
+#: ../../mod/admin.php:622
+msgid "Proxy user"
+msgstr "Proxy uživatel"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Navštivte sekci nápovědy"
+#: ../../mod/admin.php:623
+msgid "Proxy URL"
+msgstr "Proxy URL adresa"
 
-#: ../../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/admin.php:624
+msgid "Network timeout"
+msgstr "čas síťového spojení vypršelo (timeout)"
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Opravdu chcete smazat tento návrh?"
+#: ../../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/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 "Zrušit"
+#: ../../mod/admin.php:625
+msgid "Delivery interval"
+msgstr "Interval doručování"
 
-#: ../../mod/suggest.php:72
+#: ../../mod/admin.php:625
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin."
+"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/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "Ignorovat / skrýt"
+#: ../../mod/admin.php:626
+msgid "Poll interval"
+msgstr "Dotazovací interval"
 
-#: ../../mod/network.php:136
-msgid "Search Results For:"
-msgstr "Výsledky hledání pro:"
+#: ../../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:179 ../../mod/_search.php:21 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Odstranit termín"
+#: ../../mod/admin.php:627
+msgid "Maximum Load Average"
+msgstr "Maximální průměrné zatížení"
 
-#: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30
-#: ../../include/features.php:42
-msgid "Saved Searches"
-msgstr "Uložená hledání"
+#: ../../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:189 ../../include/group.php:275
-msgid "add"
-msgstr "přidat"
+#: ../../mod/admin.php:629
+msgid "Use MySQL full text engine"
+msgstr "Použít fulltextový vyhledávací stroj MySQL"
 
-#: ../../mod/network.php:350
-msgid "Commented Order"
-msgstr "Dle komentářů"
+#: ../../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:353
-msgid "Sort by Comment Date"
-msgstr "Řadit podle data komentáře"
+#: ../../mod/admin.php:630
+msgid "Suppress Language"
+msgstr "Potlačit Jazyk"
 
-#: ../../mod/network.php:356
-msgid "Posted Order"
-msgstr "Dle data"
+#: ../../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:359
-msgid "Sort by Post Date"
-msgstr "Řadit podle data příspěvku"
+#: ../../mod/admin.php:631
+msgid "Path to item cache"
+msgstr "Cesta k položkám vyrovnávací paměti"
 
-#: ../../mod/network.php:365 ../../mod/notifications.php:88
-msgid "Personal"
-msgstr "Osobní"
+#: ../../mod/admin.php:632
+msgid "Cache duration in seconds"
+msgstr "Doba platnosti vyrovnávací paměti v sekundách"
 
-#: ../../mod/network.php:368
-msgid "Posts that mention or involve you"
-msgstr "Příspěvky, které Vás zmiňují nebo zahrnují"
+#: ../../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:374
-msgid "New"
-msgstr "Nové"
+#: ../../mod/admin.php:633
+msgid "Path for lock file"
+msgstr "Cesta k souboru zámku"
 
-#: ../../mod/network.php:377
-msgid "Activity Stream - by date"
-msgstr "Proud aktivit - dle data"
+#: ../../mod/admin.php:634
+msgid "Temp path"
+msgstr "Cesta k dočasným souborům"
 
-#: ../../mod/network.php:383
-msgid "Shared Links"
-msgstr "Sdílené odkazy"
+#: ../../mod/admin.php:635
+msgid "Base path to installation"
+msgstr "Základní cesta k instalaci"
 
-#: ../../mod/network.php:386
-msgid "Interesting Links"
-msgstr "Zajímavé odkazy"
+#: ../../mod/admin.php:637
+msgid "New base url"
+msgstr "Nová výchozí url adresa"
 
-#: ../../mod/network.php:392
-msgid "Starred"
-msgstr "S hvězdičkou"
+#: ../../mod/admin.php:655
+msgid "Update has been marked successful"
+msgstr "Aktualizace byla označena jako úspěšná."
 
-#: ../../mod/network.php:395
-msgid "Favourite Posts"
-msgstr "Oblíbené přízpěvky"
+#: ../../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:457
+#: ../../mod/admin.php:668
 #, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "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ě."
+msgid "Update %s was successfully applied."
+msgstr "Aktualizace %s byla úspěšně aplikována."
 
-#: ../../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/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/network.php:514 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Žádná taková skupina"
+#: ../../mod/admin.php:675
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "Aktualizační funkce %s nebyla nalezena."
 
-#: ../../mod/network.php:531 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "Skupina je prázdná"
+#: ../../mod/admin.php:690
+msgid "No failed updates."
+msgstr "Žádné neúspěšné aktualizace."
 
-#: ../../mod/network.php:538 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Skupina: "
+#: ../../mod/admin.php:694
+msgid "Failed Updates"
+msgstr "Neúspěšné aktualizace"
 
-#: ../../mod/network.php:548
-msgid "Contact: "
-msgstr "Kontakt: "
+#: ../../mod/admin.php:695
+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/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/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/network.php:555
-msgid "Invalid contact."
-msgstr "Neplatný kontakt."
+#: ../../mod/admin.php:697
+msgid "Attempt to execute this update step automatically"
+msgstr "Pokusit se provést tuto aktualizaci automaticky."
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica Komunikační server - Nastavení"
+#: ../../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:123
-msgid "Could not connect to database."
-msgstr "Nelze se připojit k databázi."
+#: ../../mod/admin.php:743
+msgid "Registration successful. Email send to user"
+msgstr "Registrace úspěšná. Email zaslán uživateli"
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Nelze vytvořit tabulku."
+#: ../../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:133
-msgid "Your Friendica site database has been installed."
-msgstr "Vaše databáze Friendica  byla nainstalována."
+#: ../../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: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/admin.php:799
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Uživatel '%s' smazán"
 
-#: ../../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:807
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Uživatel '%s' odblokován"
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Testování systému"
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Uživatel '%s' blokován"
 
-#: ../../mod/install.php:207 ../../mod/events.php:373
-msgid "Next"
-msgstr "le"
+#: ../../mod/admin.php:902
+msgid "Add User"
+msgstr "Přidat Uživatele"
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Otestovat znovu"
+#: ../../mod/admin.php:903
+msgid "select all"
+msgstr "Vybrat vše"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Databázové spojení"
+#: ../../mod/admin.php:904
+msgid "User registrations waiting for confirm"
+msgstr "Registrace uživatele čeká na potvrzení"
 
-#: ../../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:905
+msgid "User waiting for permanent deletion"
+msgstr "Uživatel čeká na trvalé smazání"
 
-#: ../../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:906
+msgid "Request date"
+msgstr "Datum žádosti"
 
-#: ../../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/install.php:234
-msgid "Database Server Name"
-msgstr "Jméno databázového serveru"
-
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Přihlašovací jméno k databázi"
+#: ../../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:236
-msgid "Database Login Password"
-msgstr "Heslo k databázovému účtu "
+#: ../../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:237
-msgid "Database Name"
-msgstr "Jméno databáze"
+#: ../../mod/admin.php:907
+msgid "No registrations."
+msgstr "Žádné registrace."
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Emailová adresa administrátora webu"
+#: ../../mod/admin.php:909
+msgid "Deny"
+msgstr "Odmítnout"
 
-#: ../../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:911 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Block"
+msgstr "Blokovat"
 
-#: ../../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:912 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Unblock"
+msgstr "Odblokovat"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Nastavení webu"
+#: ../../mod/admin.php:913
+msgid "Site admin"
+msgstr "Site administrátor"
 
-#: ../../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:914
+msgid "Account expired"
+msgstr "Účtu vypršela platnost"
 
-#: ../../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:917
+msgid "New User"
+msgstr "Nový uživatel"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "Cesta k \"PHP executable\""
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Register date"
+msgstr "Datum registrace"
 
-#: ../../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:918 ../../mod/admin.php:919
+msgid "Last login"
+msgstr "Datum posledního přihlášení"
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "Příkazový řádek PHP"
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last item"
+msgstr "Poslední položka"
 
-#: ../../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:918
+msgid "Deleted since"
+msgstr "Smazán od"
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Nalezena PHP verze:"
+#: ../../mod/admin.php:919 ../../mod/settings.php:36
+msgid "Account"
+msgstr "Účet"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "PHP cli binary"
+#: ../../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 "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:354
+#: ../../mod/admin.php:922
 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."
+"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: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:932
+msgid "Name of the new user."
+msgstr "Jméno nového uživatele"
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/admin.php:933
+msgid "Nickname"
+msgstr "Přezdívka"
 
-#: ../../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/admin.php:933
+msgid "Nickname of the new user."
+msgstr "Přezdívka nového uživatele."
 
-#: ../../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/admin.php:934
+msgid "Email address of the new user."
+msgstr "Emailová adresa nového uživatele."
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Generovat kriptovací klíče"
+#: ../../mod/admin.php:967
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s zakázán."
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "libCurl PHP modul"
+#: ../../mod/admin.php:971
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s povolen."
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "GD graphics PHP modul"
+#: ../../mod/admin.php:981 ../../mod/admin.php:1195
+msgid "Disable"
+msgstr "Zakázat"
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP modul"
+#: ../../mod/admin.php:983 ../../mod/admin.php:1197
+msgid "Enable"
+msgstr "Povolit"
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "mysqli PHP modul"
+#: ../../mod/admin.php:1006 ../../mod/admin.php:1225
+msgid "Toggle"
+msgstr "Přepnout"
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "mb_string PHP modul"
+#: ../../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:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite modul"
+#: ../../mod/admin.php:1014 ../../mod/admin.php:1235
+msgid "Author: "
+msgstr "Autor: "
 
-#: ../../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:1015 ../../mod/admin.php:1236
+msgid "Maintainer: "
+msgstr "Správce: "
 
-#: ../../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:1155
+msgid "No themes found."
+msgstr "Nenalezeny žádná témata."
 
-#: ../../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:1217
+msgid "Screenshot"
+msgstr "Snímek obrazovky"
 
-#: ../../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:1263
+msgid "[Experimental]"
+msgstr "[Experimentální]"
 
-#: ../../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:1264
+msgid "[Unsupported]"
+msgstr "[Nepodporováno]"
 
-#: ../../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:1291
+msgid "Log settings updated."
+msgstr "Nastavení protokolu aktualizováno."
 
-#: ../../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:1347
+msgid "Clear"
+msgstr "Vyčistit"
 
-#: ../../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:1353
+msgid "Enable Debugging"
+msgstr "Povolit ladění"
 
-#: ../../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:1354
+msgid "Log file"
+msgstr "Soubor s logem"
 
-#: ../../mod/install.php:441
+#: ../../mod/admin.php:1354
 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."
+"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:444
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php je editovatelné"
+#: ../../mod/admin.php:1355
+msgid "Log level"
+msgstr "Úroveň auditu"
 
-#: ../../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:1404 ../../mod/contacts.php:487
+msgid "Update now"
+msgstr "Aktualizovat"
 
-#: ../../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:1405
+msgid "Close"
+msgstr "Zavřít"
 
-#: ../../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/admin.php:1411
+msgid "FTP Host"
+msgstr "Hostitel FTP"
 
-#: ../../mod/install.php:457
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "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/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 je nastaven pro zápis"
+#: ../../mod/admin.php:1412
+msgid "FTP Path"
+msgstr "Cesta FTP"
 
-#: ../../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:1413
+msgid "FTP User"
+msgstr "FTP uživatel"
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "Url rewrite je funkční."
+#: ../../mod/admin.php:1414
+msgid "FTP Password"
+msgstr "FTP heslo"
 
-#: ../../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/message.php:9 ../../include/nav.php:161
+msgid "New Message"
+msgstr "Nová zpráva"
 
-#: ../../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/message.php:63 ../../mod/wallmessage.php:56
+msgid "No recipient selected."
+msgstr "Nevybrán příjemce."
 
-#: ../../mod/install.php:519
-msgid "<h1>What next</h1>"
-msgstr "<h1>Co dál<h1>"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Nepodařilo se najít kontaktní informace."
 
-#: ../../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:70 ../../mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr "Zprávu se nepodařilo odeslat."
 
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr "Nastavení téma zobrazení bylo aktualizováno."
+#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
+msgid "Message collection failure."
+msgstr "Sběr zpráv selhal."
 
-#: ../../mod/admin.php:101 ../../mod/admin.php:571
-msgid "Site"
-msgstr "Web"
+#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
+msgid "Message sent."
+msgstr "Zpráva odeslána."
 
-#: ../../mod/admin.php:102 ../../mod/admin.php:899 ../../mod/admin.php:914
-msgid "Users"
-msgstr "Uživatelé"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Opravdu chcete smazat tuto zprávu?"
 
-#: ../../mod/admin.php:103 ../../mod/admin.php:1003 ../../mod/admin.php:1045
-#: ../../mod/settings.php:56
-msgid "Plugins"
-msgstr "Pluginy"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Zpráva odstraněna."
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:1211 ../../mod/admin.php:1245
-msgid "Themes"
-msgstr "Témata"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Konverzace odstraněna."
 
-#: ../../mod/admin.php:105
-msgid "DB updates"
-msgstr "Aktualizace databáze"
+#: ../../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:120 ../../mod/admin.php:127 ../../mod/admin.php:1332
-msgid "Logs"
-msgstr "Logy"
+#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
+msgid "Send Private Message"
+msgstr "Odeslat soukromou zprávu"
 
-#: ../../mod/admin.php:125 ../../include/nav.php:180
-msgid "Admin"
-msgstr "Administrace"
+#: ../../mod/message.php:320 ../../mod/message.php:553
+#: ../../mod/wallmessage.php:144
+msgid "To:"
+msgstr "Adresát:"
 
-#: ../../mod/admin.php:126
-msgid "Plugin Features"
-msgstr "Funkčnosti rozšíření"
+#: ../../mod/message.php:325 ../../mod/message.php:555
+#: ../../mod/wallmessage.php:145
+msgid "Subject:"
+msgstr "Předmět:"
 
-#: ../../mod/admin.php:128
-msgid "User registrations waiting for confirmation"
-msgstr "Registrace uživatele čeká na potvrzení"
+#: ../../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:187 ../../mod/admin.php:853
-msgid "Normal Account"
-msgstr "Normální účet"
+#: ../../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:188 ../../mod/admin.php:854
-msgid "Soapbox Account"
-msgstr "Soapbox účet"
+#: ../../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:189 ../../mod/admin.php:855
-msgid "Community/Celebrity Account"
-msgstr "Komunitní účet / Účet celebrity"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Žádné zprávy."
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:856
-msgid "Automatic Friend Account"
-msgstr "Účet s automatickým schvalováním přátel"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Neznámý odesilatel - %s"
 
-#: ../../mod/admin.php:191
-msgid "Blog Account"
-msgstr "Účet Blogu"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Vy a %s"
 
-#: ../../mod/admin.php:192
-msgid "Private Forum"
-msgstr "Soukromé fórum"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s a Vy"
 
-#: ../../mod/admin.php:211
-msgid "Message queues"
-msgstr "Fronty zpráv"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Odstranit konverzaci"
 
-#: ../../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 "Administrace"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D M R - g:i A"
 
-#: ../../mod/admin.php:217
-msgid "Summary"
-msgstr "Shrnutí"
+#: ../../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:219
-msgid "Registered users"
-msgstr "Registrovaní uživatelé"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Zpráva není k dispozici."
 
-#: ../../mod/admin.php:221
-msgid "Pending registrations"
-msgstr "Čekající registrace"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Smazat zprávu"
 
-#: ../../mod/admin.php:222
-msgid "Version"
-msgstr "Verze"
+#: ../../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:224
-msgid "Active plugins"
-msgstr "Aktivní pluginy"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Poslat odpověď"
 
-#: ../../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/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Položka nenalezena"
 
-#: ../../mod/admin.php:483
-msgid "Site settings updated."
-msgstr "Nastavení webu aktualizováno."
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Upravit příspěvek"
 
-#: ../../mod/admin.php:512 ../../mod/settings.php:822
-msgid "No special theme for mobile devices"
-msgstr "žádné speciální téma pro mobilní zařízení"
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1090
+msgid "upload photo"
+msgstr "nahrát fotky"
 
-#: ../../mod/admin.php:529 ../../mod/contacts.php:408
-msgid "Never"
-msgstr "Nikdy"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1091
+msgid "Attach file"
+msgstr "Přiložit soubor"
 
-#: ../../mod/admin.php:530
-msgid "At post arrival"
-msgstr "Při obdržení příspěvku"
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1092
+msgid "attach file"
+msgstr "přidat soubor"
 
-#: ../../mod/admin.php:531 ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Často"
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1094
+msgid "web link"
+msgstr "webový odkaz"
 
-#: ../../mod/admin.php:532 ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "každou hodinu"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1095
+msgid "Insert video link"
+msgstr "Zadejte odkaz na video"
 
-#: ../../mod/admin.php:533 ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Dvakrát denně"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1096
+msgid "video link"
+msgstr "odkaz na video"
 
-#: ../../mod/admin.php:534 ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "denně"
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1097
+msgid "Insert audio link"
+msgstr "Zadejte odkaz na zvukový záznam"
 
-#: ../../mod/admin.php:539
-msgid "Multi user instance"
-msgstr "Více uživatelská instance"
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1098
+msgid "audio link"
+msgstr "odkaz na audio"
 
-#: ../../mod/admin.php:557
-msgid "Closed"
-msgstr "Uzavřeno"
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1099
+msgid "Set your location"
+msgstr "Nastavte vaši polohu"
 
-#: ../../mod/admin.php:558
-msgid "Requires approval"
-msgstr "Vyžaduje schválení"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1100
+msgid "set location"
+msgstr "nastavit místo"
 
-#: ../../mod/admin.php:559
-msgid "Open"
-msgstr "Otevřená"
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1101
+msgid "Clear browser location"
+msgstr "Odstranit adresu v prohlížeči"
 
-#: ../../mod/admin.php:563
-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:123 ../../include/conversation.php:1102
+msgid "clear location"
+msgstr "vymazat místo"
 
-#: ../../mod/admin.php:564
-msgid "Force all links to use SSL"
-msgstr "Vyžadovat u všech odkazů použití SSL"
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1108
+msgid "Permission settings"
+msgstr "Nastavení oprávnění"
 
-#: ../../mod/admin.php:565
-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:133 ../../include/conversation.php:1117
+msgid "CC: email addresses"
+msgstr "skrytá kopie: e-mailové adresy"
 
-#: ../../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 "Uložit Nastavení"
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1118
+msgid "Public post"
+msgstr "Veřejný příspěvek"
 
-#: ../../mod/admin.php:574
-msgid "File upload"
-msgstr "Nahrání souborů"
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1104
+msgid "Set title"
+msgstr "Nastavit titulek"
 
-#: ../../mod/admin.php:575
-msgid "Policies"
-msgstr "Politiky"
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1106
+msgid "Categories (comma-separated list)"
+msgstr "Kategorie (čárkou oddělený seznam)"
 
-#: ../../mod/admin.php:576
-msgid "Advanced"
-msgstr "Pokročilé"
+#: ../../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:577
-msgid "Performance"
-msgstr "Výkonnost"
+#: ../../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:578
+#: ../../mod/dfrn_confirm.php:119
 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/admin.php:581
-msgid "Site name"
-msgstr "Název webu"
+"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:582
-msgid "Banner/Logo"
-msgstr "Banner/logo"
+#: ../../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:583
-msgid "Additional Info"
-msgstr "Dodatečné informace"
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "Neočekávaná odpověď od vzdáleného serveru:"
 
-#: ../../mod/admin.php:583
-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:254
+msgid "Confirmation completed successfully."
+msgstr "Potvrzení úspěšně dokončena."
 
-#: ../../mod/admin.php:584
-msgid "System language"
-msgstr "Systémový jazyk"
+#: ../../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 "System theme"
-msgstr "Grafická šablona systému "
+#: ../../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:585
-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:275
+msgid "Introduction failed or was revoked."
+msgstr "Žádost o propojení selhala nebo byla zrušena."
 
-#: ../../mod/admin.php:586
-msgid "Mobile system theme"
-msgstr "Systémové téma zobrazení pro mobilní zařízení"
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Nelze nastavit fotografii kontaktu."
 
-#: ../../mod/admin.php:586
-msgid "Theme for mobile devices"
-msgstr "Téma zobrazení pro mobilní zařízení"
+#: ../../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 "SSL link policy"
-msgstr "Politika SSL odkazů"
+#: ../../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:587
-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: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 "Old style 'Share'"
-msgstr "Sdílení \"postaru\""
+#: ../../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:588
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Deaktivovat bbcode element \"share\" pro opakující se položky."
+#: ../../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 "Hide help entry from navigation menu"
-msgstr "skrýt nápovědu z navigačního menu"
+#: ../../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:589
+#: ../../mod/dfrn_confirm.php:638
 msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "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/admin.php:590
-msgid "Single user instance"
-msgstr "Jednouživatelská instance"
+"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:590
-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/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 image size"
-msgstr "Maximální velikost obrázků"
+#: ../../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:591
-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."
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Připojení přijato na %s"
 
-#: ../../mod/admin.php:592
-msgid "Maximum image length"
-msgstr "Maximální velikost obrázků"
+#: ../../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:592
-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/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:593
-msgid "JPEG image quality"
-msgstr "JPEG kvalita obrázku"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../mod/admin.php:593
-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/events.php:313
+msgid "Edit event"
+msgstr "Editovat událost"
 
-#: ../../mod/admin.php:595
-msgid "Register policy"
-msgstr "Politika registrace"
+#: ../../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 "Maximum Daily Registrations"
-msgstr "Maximální počet denních registrací"
+#: ../../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: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 "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:371
+msgid "Create New Event"
+msgstr "Vytvořit novou událost"
 
-#: ../../mod/admin.php:597
-msgid "Register text"
-msgstr "Registrace textu"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Předchozí"
 
-#: ../../mod/admin.php:597
-msgid "Will be displayed prominently on the registration page."
-msgstr "Bude zřetelně zobrazeno na registrační stránce."
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Dále"
 
-#: ../../mod/admin.php:598
-msgid "Accounts abandoned after x days"
-msgstr "Účet je opuštěn po x dnech"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "hodina:minuta"
 
-#: ../../mod/admin.php:598
-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:456
+msgid "Event details"
+msgstr "Detaily události"
 
-#: ../../mod/admin.php:599
-msgid "Allowed friend domains"
-msgstr "Povolené domény přátel"
+#: ../../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: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 "Čá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:459
+msgid "Event Starts:"
+msgstr "Událost začíná:"
 
-#: ../../mod/admin.php:600
-msgid "Allowed email domains"
-msgstr "Povolené e-mailové domény"
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Vyžadováno"
 
-#: ../../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 "Čá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: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 "Block public"
-msgstr "Blokovat veřejnost"
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Akce končí:"
 
-#: ../../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 "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:467
+msgid "Adjust for viewer timezone"
+msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení"
 
-#: ../../mod/admin.php:602
-msgid "Force publish"
-msgstr "Publikovat"
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Popis:"
 
-#: ../../mod/admin.php:602
-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/admin.php:603
-msgid "Global directory update URL"
-msgstr "aktualizace URL adresy Globálního adresáře "
+#: ../../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 ""
-"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:473
+msgid "Title:"
+msgstr "Název:"
 
-#: ../../mod/admin.php:604
-msgid "Allow threaded items"
-msgstr "Povolit vícevláknové zpracování obsahu"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Sdílet tuto událost"
 
-#: ../../mod/admin.php:604
-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/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 "Private posts by default for new users"
-msgstr "Nastavit pro nové uživatele příspěvky jako soukromé"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Soubory"
 
-#: ../../mod/admin.php:605
-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/home.php:34
+#, php-format
+msgid "Welcome to %s"
+msgstr "Vítá Vás %s"
 
-#: ../../mod/admin.php:606
-msgid "Don't include post content in email notifications"
-msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních"
+#: ../../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 ""
-"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/lockview.php:48
+msgid "Visible to:"
+msgstr "Viditelné pro:"
 
-#: ../../mod/admin.php:607
-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/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 ""
-"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/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 "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:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Žádný příjemce."
 
-#: ../../mod/admin.php:608
+#: ../../mod/wallmessage.php:143
+#, php-format
 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."
+"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 "Allow Users to set remote_self"
-msgstr "Umožnit uživatelům nastavit "
+#: ../../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 ""
-"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/nogroup.php:41 ../../mod/contacts.php:666
+msgid "Edit contact"
+msgstr "Editovat kontakt"
 
-#: ../../mod/admin.php:610
-msgid "Block multiple registrations"
-msgstr "Blokovat více registrací"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Kontakty, které nejsou členy skupiny"
 
-#: ../../mod/admin.php:610
-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/friendica.php:58
+msgid "This is Friendica, version"
+msgstr "Toto je Friendica, verze"
 
-#: ../../mod/admin.php:611
-msgid "OpenID support"
-msgstr "podpora OpenID"
+#: ../../mod/friendica.php:59
+msgid "running at web location"
+msgstr "běžící na webu"
 
-#: ../../mod/admin.php:611
-msgid "OpenID support for registration and logins."
-msgstr "Podpora OpenID pro registraci a přihlašování."
+#: ../../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:612
-msgid "Fullname check"
-msgstr "kontrola úplného jména"
+#: ../../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
+#: ../../mod/friendica.php:64
 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í."
+"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 "UTF-8 Regular expressions"
-msgstr "UTF-8 Regulární výrazy"
+#: ../../mod/friendica.php:78
+msgid "Installed plugins/addons/apps:"
+msgstr "Instalované pluginy/doplňky/aplikace:"
 
-#: ../../mod/admin.php:613
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Použít PHP UTF8 regulární výrazy."
+#: ../../mod/friendica.php:91
+msgid "No installed plugins/addons/apps"
+msgstr "Nejsou žádné nainstalované doplňky/aplikace"
 
-#: ../../mod/admin.php:614
-msgid "Show Community Page"
-msgstr "Zobrazit stránku komunity"
+#: ../../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 ""
-"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/admin.php:615
-msgid "Enable OStatus support"
-msgstr "Zapnout podporu OStatus"
+"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 ""
-"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/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Prosím, zadejte své heslo pro ověření:"
 
-#: ../../mod/admin.php:616
-msgid "OStatus conversation completion interval"
-msgstr "Interval dokončení konverzace OStatus"
+#: ../../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 ""
-"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: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:617
-msgid "Enable Diaspora support"
-msgstr "Povolit podporu 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 "Provide built-in Diaspora network compatibility."
-msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora."
+#: ../../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:618
-msgid "Only allow Friendica contacts"
-msgstr "Povolit pouze Friendica kontakty"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Povolit připojení aplikacím"
 
-#: ../../mod/admin.php:618
-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: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:619
-msgid "Verify SSL"
-msgstr "Ověřit SSL"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Pro pokračování se prosím přihlaste."
 
-#: ../../mod/admin.php:619
+#: ../../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:620
-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:621
-msgid "Proxy URL"
-msgstr "Proxy URL adresa"
+#: ../../mod/photos.php:52 ../../boot.php:1989
+msgid "Photo Albums"
+msgstr "Fotoalba"
 
-#: ../../mod/admin.php:622
-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:622
-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:623
-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: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 "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:624
-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:624
-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:625
-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:625
-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:627
-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:627
-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:628
-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:628
-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:629
-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:630
-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:630
-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:631
-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:632
-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:633
-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:635
-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:653
-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:663
-#, 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:666
-#, 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:670
-#, 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:673
-#, 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:688
-msgid "No failed updates."
-msgstr "Žádné neúspěšné aktualizace."
+#: ../../mod/photos.php:1146
+msgid "Private Photo"
+msgstr "Soukromé Fotografie"
 
-#: ../../mod/admin.php:692
-msgid "Failed Updates"
-msgstr "Neúspěšné aktualizace"
+#: ../../mod/photos.php:1147
+msgid "Public Photo"
+msgstr "Veřejné Fotografie"
 
-#: ../../mod/admin.php:693
-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:694
-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:695
-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:741
-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:751
-#, 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:758
-#, 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:797
-#, 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:805
-#, 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:805
-#, 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:900
-msgid "Add User"
-msgstr "Přidat Uživatele"
+#: ../../mod/photos.php:1374
+msgid "View Full Size"
+msgstr "Zobrazit v plné velikosti"
 
-#: ../../mod/admin.php:901
-msgid "select all"
-msgstr "Vybrat vše"
+#: ../../mod/photos.php:1453
+msgid "Tags: "
+msgstr "Štítky: "
 
-#: ../../mod/admin.php:902
-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:903
-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:904
-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: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 "Jméno"
+#: ../../mod/photos.php:1499
+msgid "New album name"
+msgstr "Nové jméno alba"
 
-#: ../../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:1502
+msgid "Caption"
+msgstr "Titulek"
 
-#: ../../mod/admin.php:905
-msgid "No registrations."
-msgstr "Žádné registrace."
+#: ../../mod/photos.php:1504
+msgid "Add a Tag"
+msgstr "Přidat štítek"
 
-#: ../../mod/admin.php:906 ../../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:907
-msgid "Deny"
-msgstr "Odmítnout"
+#: ../../mod/photos.php:1517
+msgid "Private photo"
+msgstr "Soukromé fotografie"
 
-#: ../../mod/admin.php:909 ../../mod/contacts.php:431
-#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
-msgid "Block"
-msgstr "Blokovat"
+#: ../../mod/photos.php:1518
+msgid "Public photo"
+msgstr "Veřejné fotografie"
 
-#: ../../mod/admin.php:910 ../../mod/contacts.php:431
-#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
-msgid "Unblock"
-msgstr "Odblokovat"
+#: ../../mod/photos.php:1540 ../../include/conversation.php:1088
+msgid "Share"
+msgstr "Sdílet"
 
-#: ../../mod/admin.php:911
-msgid "Site admin"
-msgstr "Site administrátor"
+#: ../../mod/photos.php:1804 ../../mod/videos.php:308
+msgid "View Album"
+msgstr "Zobrazit album"
 
-#: ../../mod/admin.php:912
-msgid "Account expired"
-msgstr "Účtu vypršela platnost"
+#: ../../mod/photos.php:1813
+msgid "Recent Photos"
+msgstr "Aktuální fotografie"
 
-#: ../../mod/admin.php:915
-msgid "New User"
-msgstr "Nový uživatel"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Žádný profil"
 
-#: ../../mod/admin.php:916 ../../mod/admin.php:917
-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:916 ../../mod/admin.php:917
-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:916 ../../mod/admin.php:917
-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:916
-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:917 ../../mod/settings.php:35
-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:919
+#: ../../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:920
+#: ../../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:930
-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:931
-msgid "Nickname"
-msgstr "Přezdívka"
+#: ../../mod/register.php:226
+msgid "Your OpenID (optional): "
+msgstr "Vaše OpenID (nepovinné): "
 
-#: ../../mod/admin.php:931
-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:932
-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:965
-#, 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:969
-#, 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:979 ../../mod/admin.php:1182
-msgid "Disable"
-msgstr "Zakázat"
+#: ../../mod/register.php:274
+msgid "Your Email Address: "
+msgstr "Vaše e-mailová adresa:"
 
-#: ../../mod/admin.php:981 ../../mod/admin.php:1184
-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:1004 ../../mod/admin.php:1212
-msgid "Toggle"
-msgstr "Přepnout"
+#: ../../mod/register.php:276
+msgid "Choose a nickname: "
+msgstr "Vyberte přezdívku:"
 
-#: ../../mod/admin.php:1012 ../../mod/admin.php:1222
-msgid "Author: "
-msgstr "Autor: "
+#: ../../mod/register.php:279 ../../boot.php:1136 ../../include/nav.php:108
+msgid "Register"
+msgstr "Registrovat"
 
-#: ../../mod/admin.php:1013 ../../mod/admin.php:1223
-msgid "Maintainer: "
-msgstr "Správce: "
+#: ../../mod/register.php:285 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Import"
 
-#: ../../mod/admin.php:1142
-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:1204
-msgid "Screenshot"
-msgstr "Snímek obrazovky"
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
+msgstr "Nenalezen žádný platný účet."
 
-#: ../../mod/admin.php:1250
-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:1251
-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:1278
-msgid "Log settings updated."
-msgstr "Nastavení protokolu aktualizováno."
+#: ../../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:1334
-msgid "Clear"
-msgstr "Vyčistit"
+#: ../../mod/lostpass.php:84 ../../boot.php:1175
+msgid "Password Reset"
+msgstr "Obnovení hesla"
 
-#: ../../mod/admin.php:1340
-msgid "Enable Debugging"
-msgstr "Povolit ladění"
+#: ../../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:1341
-msgid "Log file"
-msgstr "Soubor s logem"
+#: ../../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 ""
-"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:87
+msgid "Save or copy your new password - and then"
+msgstr "Uložte si nebo zkopírujte nové heslo - a pak"
 
-#: ../../mod/admin.php:1342
-msgid "Log level"
-msgstr "Úroveň auditu"
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
+msgstr "klikněte zde pro přihlášení"
 
-#: ../../mod/admin.php:1391 ../../mod/contacts.php:487
-msgid "Update now"
-msgstr "Aktualizovat"
+#: ../../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:1392
-msgid "Close"
-msgstr "Zavřít"
+#: ../../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 Host"
-msgstr "Hostitel FTP"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Zapomněli jste heslo?"
 
-#: ../../mod/admin.php:1399
-msgid "FTP Path"
-msgstr "Cesta FTP"
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "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 User"
-msgstr "FTP uživatel"
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
+msgstr "Přezdívka nebo e-mail: "
 
-#: ../../mod/admin.php:1401
-msgid "FTP Password"
-msgstr "FTP heslo"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Reset"
 
-#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:938
-#: ../../include/text.php:939 ../../include/nav.php:118
-msgid "Search"
-msgstr "Vyhledávání"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Systém vypnut z důvodů údržby"
 
-#: ../../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 "Žádné výsledky."
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Položka není k dispozici."
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Tipy pro nové členy"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Položka nebyla nalezena."
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "odkaz"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Aplikace"
 
-#: ../../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/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:1085
-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:1086
-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:1087
-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:1089
-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:1090
-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:1091
-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:1092
-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:1093
-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:1094
-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:1095
-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:1096
-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:1097
-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:1103
-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:1112
-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:1113
-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:1099
-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:1101
-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:1115
-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:693
-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:694
-#: ../../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:690
-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"
@@ -3058,1146 +3045,952 @@ 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:941
-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/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í."
+#: ../../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:263
-msgid "Spam protection measures have been invoked."
-msgstr "Ochrana proti spamu byla aktivována"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Navštivte své nastavení"
 
-#: ../../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/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/dfrn_request.php:326
-msgid "Invalid locator"
-msgstr "Neplatný odkaz"
+#: ../../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/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr "Neplatná emailová adresa"
+#: ../../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:362
-msgid "This account has not been configured for email. Request failed."
-msgstr "Tento účet nebyl nastaven pro email. Požadavek nesplněn."
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Nahrát profilovou fotografii"
 
-#: ../../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/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/dfrn_request.php:471
-msgid "You have already introduced yourself here."
-msgstr "Již jste se zde zavedli."
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Editujte Váš profil"
 
-#: ../../mod/dfrn_request.php:475
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Zřejmě jste již přátelé se %s."
+#: ../../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/dfrn_request.php:496
-msgid "Invalid profile URL."
-msgstr "Neplatné URL profilu."
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Profilová klíčová slova"
 
-#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "Nepovolené URL profilu."
+#: ../../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/dfrn_request.php:571 ../../mod/contacts.php:180
-msgid "Failed to update contact record."
-msgstr "Nepodařilo se aktualizovat kontakt."
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Probíhá pokus o připojení"
 
-#: ../../mod/dfrn_request.php:592
-msgid "Your introduction has been sent."
-msgstr "Vaše žádost o propojení byla odeslána."
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/dfrn_request.php:645
-msgid "Please login to confirm introduction."
-msgstr "Prosím přihlašte se k potvrzení žádosti o propojení."
+#: ../../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/dfrn_request.php:659
+#: ../../mod/newmember.php:51
 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."
+"<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/dfrn_request.php:670
-msgid "Hide this contact"
-msgstr "Skrýt tento kontakt"
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importování emaiů"
 
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Welcome home %s."
-msgstr "Vítejte doma %s."
+#: ../../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/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/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Navštivte Vaši stránku s kontakty"
 
-#: ../../mod/dfrn_request.php:675
-msgid "Confirm"
-msgstr "Potvrdit"
+#: ../../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/dfrn_request.php:716 ../../include/items.php:3686
-msgid "[Name Withheld]"
-msgstr "[Jméno odepřeno]"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Navštivte lokální adresář Friendica"
 
-#: ../../mod/dfrn_request.php:811
+#: ../../mod/newmember.php:60
 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í:"
+"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/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/newmember.php:62
+msgid "Finding New People"
+msgstr "Nalezení nových lidí"
 
-#: ../../mod/dfrn_request.php:829
+#: ../../mod/newmember.php:62
 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>."
+"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/dfrn_request.php:832
-msgid "Friend/Connection Request"
-msgstr "Požadavek o přátelství / kontaktování"
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Skupiny"
 
-#: ../../mod/dfrn_request.php:833
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Seskupte si své kontakty"
+
+#: ../../mod/newmember.php:70
 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"
+"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/dfrn_request.php:834
-msgid "Please answer the following:"
-msgstr "Odpovězte, prosím, následující:"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Proč nejsou mé příspěvky veřejné?"
 
-#: ../../mod/dfrn_request.php:835
-#, php-format
-msgid "Does %s know you?"
-msgstr "Zná Vás uživatel %s ?"
+#: ../../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/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "Přidat osobní poznámku:"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Získání nápovědy"
 
-#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Navštivte sekci nápovědy"
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet / Federativní Sociální Web"
+#: ../../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/dfrn_request.php:842 ../../mod/settings.php:730
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../mod/search.php:21 ../../mod/network.php:179
+msgid "Remove term"
+msgstr "Odstranit termín"
 
-#: ../../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/search.php:30 ../../mod/network.php:188
+#: ../../include/features.php:42
+msgid "Saved Searches"
+msgstr "Uložená hledání"
 
-#: ../../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/search.php:99 ../../include/text.php:951
+#: ../../include/text.php:952 ../../include/nav.php:118
+msgid "Search"
+msgstr "Vyhledávání"
 
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "Odeslat žádost"
-
-#: ../../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/search.php:170 ../../mod/search.php:196
+#: ../../mod/community.php:62 ../../mod/community.php:89
+msgid "No results."
+msgstr "Žádné výsledky."
 
-#: ../../mod/content.php:496 ../../include/conversation.php:688
-msgid "View in context"
-msgstr "Pohled v kontextu"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Celkový limit pozvánek byl překročen"
 
-#: ../../mod/contacts.php:104
+#: ../../mod/invite.php:49
 #, 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"
+msgid "%s : Not a valid email address."
+msgstr "%s : není platná e-mailová adresa."
 
-#: ../../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/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Prosím přidejte se k nám na Friendice"
 
-#: ../../mod/contacts.php:149
-msgid "Could not locate selected profile."
-msgstr "Nelze nalézt vybraný profil."
+#: ../../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/contacts.php:178
-msgid "Contact updated."
-msgstr "Kontakt aktualizován."
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Doručení zprávy se nezdařilo."
 
-#: ../../mod/contacts.php:278
-msgid "Contact has been blocked"
-msgstr "Kontakt byl zablokován"
+#: ../../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/contacts.php:278
-msgid "Contact has been unblocked"
-msgstr "Kontakt byl odblokován"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Nemáte k dispozici žádné další pozvánky"
 
-#: ../../mod/contacts.php:288
-msgid "Contact has been ignored"
-msgstr "Kontakt bude ignorován"
+#: ../../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/contacts.php:288
-msgid "Contact has been unignored"
-msgstr "Kontakt přestal být ignorován"
+#: ../../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/contacts.php:299
-msgid "Contact has been archived"
-msgstr "Kontakt byl archivován"
+#: ../../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."
 
-#: ../../mod/contacts.php:299
-msgid "Contact has been unarchived"
-msgstr "Kontakt byl vrácen z archívu."
+#: ../../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/contacts.php:324 ../../mod/contacts.php:697
-msgid "Do you really want to delete this contact?"
-msgstr "Opravdu chcete smazat tento kontakt?"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Poslat pozvánky"
 
-#: ../../mod/contacts.php:341
-msgid "Contact has been removed."
-msgstr "Kontakt byl odstraněn."
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Zadejte e-mailové adresy, jednu na řádek:"
 
-#: ../../mod/contacts.php:379
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Jste vzájemní přátelé s uživatelem %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 "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/contacts.php:383
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Sdílíte s uživatelem %s"
+#: ../../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/contacts.php:388
-#, php-format
-msgid "%s is sharing with you"
-msgstr "uživatel %s sdílí s vámi"
+#: ../../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:"
 
-#: ../../mod/contacts.php:405
-msgid "Private communications are not available for this contact."
-msgstr "Soukromá komunikace není dostupná pro 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/contacts.php:412
-msgid "(Update was successful)"
-msgstr "(Aktualizace byla úspěšná)"
+#: ../../mod/settings.php:41
+msgid "Additional features"
+msgstr "Další funkčnosti"
 
-#: ../../mod/contacts.php:412
-msgid "(Update was not successful)"
-msgstr "(Aktualizace nebyla úspěšná)"
+#: ../../mod/settings.php:46
+msgid "Display"
+msgstr "Zobrazení"
 
-#: ../../mod/contacts.php:414
-msgid "Suggest friends"
-msgstr "Navrhněte přátelé"
+#: ../../mod/settings.php:52 ../../mod/settings.php:775
+msgid "Social Networks"
+msgstr "Sociální sítě"
 
-#: ../../mod/contacts.php:418
-#, php-format
-msgid "Network type: %s"
-msgstr "Typ sítě: %s"
+#: ../../mod/settings.php:62 ../../include/nav.php:167
+msgid "Delegations"
+msgstr "Delegace"
 
-#: ../../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 sdílený kontakt"
-msgstr[1] "%d sdílených kontaktů"
-msgstr[2] "%d sdílených kontaktů"
+#: ../../mod/settings.php:67
+msgid "Connected apps"
+msgstr "Propojené aplikace"
 
-#: ../../mod/contacts.php:426
-msgid "View all contacts"
-msgstr "Zobrazit všechny kontakty"
+#: ../../mod/settings.php:72 ../../mod/uexport.php:85
+msgid "Export personal data"
+msgstr "Export osobních údajů"
 
-#: ../../mod/contacts.php:434
-msgid "Toggle Blocked status"
-msgstr "Přepnout stav Blokováno"
+#: ../../mod/settings.php:77
+msgid "Remove account"
+msgstr "Odstranit účet"
 
-#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
-#: ../../mod/contacts.php:701
-msgid "Unignore"
-msgstr "Přestat ignorovat"
+#: ../../mod/settings.php:129
+msgid "Missing some important data!"
+msgstr "Chybí některé důležité údaje!"
 
-#: ../../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 "Ignorovat"
+#: ../../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/contacts.php:440
-msgid "Toggle Ignored status"
-msgstr "Přepnout stav Ignorováno"
+#: ../../mod/settings.php:243
+msgid "Email settings updated."
+msgstr "Nastavení e-mailu aktualizována."
 
-#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
-msgid "Unarchive"
-msgstr "Vrátit z archívu"
+#: ../../mod/settings.php:258
+msgid "Features updated"
+msgstr "Aktualizované funkčnosti"
 
-#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
-msgid "Archive"
-msgstr "Archivovat"
+#: ../../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/contacts.php:447
-msgid "Toggle Archive status"
-msgstr "Přepnout stav Archivováno"
+#: ../../mod/settings.php:333
+msgid "Passwords do not match. Password unchanged."
+msgstr "Hesla se neshodují. Heslo nebylo změněno."
 
-#: ../../mod/contacts.php:450
-msgid "Repair"
-msgstr "Opravit"
+#: ../../mod/settings.php:338
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno."
 
-#: ../../mod/contacts.php:453
-msgid "Advanced Contact Settings"
-msgstr "Pokročilé nastavení kontaktu"
+#: ../../mod/settings.php:346
+msgid "Wrong password."
+msgstr "Špatné heslo."
 
-#: ../../mod/contacts.php:459
-msgid "Communications lost with this contact!"
-msgstr "Komunikace s tímto kontaktem byla ztracena!"
+#: ../../mod/settings.php:357
+msgid "Password changed."
+msgstr "Heslo bylo změněno."
 
-#: ../../mod/contacts.php:462
-msgid "Contact Editor"
-msgstr "Editor kontaktu"
+#: ../../mod/settings.php:359
+msgid "Password update failed. Please try again."
+msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu."
 
-#: ../../mod/contacts.php:465
-msgid "Profile Visibility"
-msgstr "Viditelnost profilu"
+#: ../../mod/settings.php:424
+msgid " Please use a shorter name."
+msgstr "Prosím použijte kratší jméno."
 
-#: ../../mod/contacts.php:466
-#, 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:426
+msgid " Name too short."
+msgstr "Jméno je příliš krátké."
 
-#: ../../mod/contacts.php:467
-msgid "Contact Information / Notes"
-msgstr "Kontaktní informace / poznámky"
+#: ../../mod/settings.php:435
+msgid "Wrong Password"
+msgstr "Špatné heslo"
 
-#: ../../mod/contacts.php:468
-msgid "Edit contact notes"
-msgstr "Editovat poznámky kontaktu"
+#: ../../mod/settings.php:440
+msgid " Not valid email."
+msgstr "Neplatný e-mail."
 
-#: ../../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 "Navštivte profil uživatele %s [%s]"
-
-#: ../../mod/contacts.php:474
-msgid "Block/Unblock contact"
-msgstr "Blokovat / Odblokovat kontakt"
-
-#: ../../mod/contacts.php:475
-msgid "Ignore contact"
-msgstr "Ignorovat kontakt"
-
-#: ../../mod/contacts.php:476
-msgid "Repair URL settings"
-msgstr "Opravit nastavení adresy URL "
-
-#: ../../mod/contacts.php:477
-msgid "View conversations"
-msgstr "Zobrazit konverzace"
-
-#: ../../mod/contacts.php:479
-msgid "Delete contact"
-msgstr "Odstranit kontakt"
-
-#: ../../mod/contacts.php:483
-msgid "Last update:"
-msgstr "Poslední aktualizace:"
-
-#: ../../mod/contacts.php:485
-msgid "Update public posts"
-msgstr "Aktualizovat veřejné příspěvky"
-
-#: ../../mod/contacts.php:494
-msgid "Currently blocked"
-msgstr "V současnosti zablokováno"
-
-#: ../../mod/contacts.php:495
-msgid "Currently ignored"
-msgstr "V současnosti ignorováno"
-
-#: ../../mod/contacts.php:496
-msgid "Currently archived"
-msgstr "Aktuálně archivován"
-
-#: ../../mod/contacts.php:497 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Skrýt tento kontakt před ostatními"
-
-#: ../../mod/contacts.php:497
-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/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:666 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Editovat kontakt"
-
-#: ../../mod/contacts.php:692
-msgid "Search your contacts"
-msgstr "Prohledat Vaše kontakty"
-
-#: ../../mod/contacts.php:699 ../../mod/settings.php:131
-#: ../../mod/settings.php:634
-msgid "Update"
-msgstr "Aktualizace"
-
-#: ../../mod/settings.php:28 ../../mod/photos.php:80
-msgid "everybody"
-msgstr "Žádost o připojení selhala nebo byla zrušena."
-
-#: ../../mod/settings.php:40
-msgid "Additional features"
-msgstr "Další funkčnosti"
-
-#: ../../mod/settings.php:45
-msgid "Display"
-msgstr "Zobrazení"
-
-#: ../../mod/settings.php:51 ../../mod/settings.php:774
-msgid "Social Networks"
-msgstr "Sociální sítě"
-
-#: ../../mod/settings.php:61 ../../include/nav.php:167
-msgid "Delegations"
-msgstr "Delegace"
-
-#: ../../mod/settings.php:66
-msgid "Connected apps"
-msgstr "Propojené aplikace"
-
-#: ../../mod/settings.php:71 ../../mod/uexport.php:85
-msgid "Export personal data"
-msgstr "Export osobních údajů"
-
-#: ../../mod/settings.php:76
-msgid "Remove account"
-msgstr "Odstranit účet"
-
-#: ../../mod/settings.php:128
-msgid "Missing some important data!"
-msgstr "Chybí některé důležité údaje!"
-
-#: ../../mod/settings.php:237
-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:242
-msgid "Email settings updated."
-msgstr "Nastavení e-mailu aktualizována."
-
-#: ../../mod/settings.php:257
-msgid "Features updated"
-msgstr "Aktualizované funkčnosti"
-
-#: ../../mod/settings.php:318
-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:332
-msgid "Passwords do not match. Password unchanged."
-msgstr "Hesla se neshodují. Heslo nebylo změněno."
-
-#: ../../mod/settings.php:337
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno."
-
-#: ../../mod/settings.php:345
-msgid "Wrong password."
-msgstr "Špatné heslo."
-
-#: ../../mod/settings.php:356
-msgid "Password changed."
-msgstr "Heslo bylo změněno."
-
-#: ../../mod/settings.php:358
-msgid "Password update failed. Please try again."
-msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu."
-
-#: ../../mod/settings.php:423
-msgid " Please use a shorter name."
-msgstr "Prosím použijte kratší jméno."
-
-#: ../../mod/settings.php:425
-msgid " Name too short."
-msgstr "Jméno je příliš krátké."
-
-#: ../../mod/settings.php:434
-msgid "Wrong Password"
-msgstr "Špatné heslo"
-
-#: ../../mod/settings.php:439
-msgid " Not valid email."
-msgstr "Neplatný e-mail."
-
-#: ../../mod/settings.php:445
+#: ../../mod/settings.php:446
 msgid " Cannot change to that email."
 msgstr "Nelze provést změnu na tento e-mail."
 
-#: ../../mod/settings.php:500
+#: ../../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/settings.php:504
+#: ../../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/settings.php:534
+#: ../../mod/settings.php:535
 msgid "Settings updated."
 msgstr "Nastavení aktualizováno."
 
-#: ../../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 "Přidat aplikaci"
 
-#: ../../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 "Přesměrování"
 
-#: ../../mod/settings.php:614 ../../mod/settings.php:640
+#: ../../mod/settings.php:615 ../../mod/settings.php:641
 msgid "Icon url"
 msgstr "URL ikony"
 
-#: ../../mod/settings.php:625
+#: ../../mod/settings.php:626
 msgid "You can't edit this application."
 msgstr "Nemůžete editovat tuto aplikaci."
 
-#: ../../mod/settings.php:668
+#: ../../mod/settings.php:669
 msgid "Connected Apps"
 msgstr "Připojené aplikace"
 
-#: ../../mod/settings.php:672
+#: ../../mod/settings.php:673
 msgid "Client key starts with"
 msgstr "Klienský klíč začíná"
 
-#: ../../mod/settings.php:673
+#: ../../mod/settings.php:674
 msgid "No name"
 msgstr "Bez názvu"
 
-#: ../../mod/settings.php:674
+#: ../../mod/settings.php:675
 msgid "Remove authorization"
 msgstr "Odstranit oprávnění"
 
-#: ../../mod/settings.php:686
+#: ../../mod/settings.php:687
 msgid "No Plugin settings configured"
 msgstr "Žádný doplněk není nastaven"
 
-#: ../../mod/settings.php:694
+#: ../../mod/settings.php:695
 msgid "Plugin Settings"
 msgstr "Nastavení doplňku"
 
-#: ../../mod/settings.php:708
+#: ../../mod/settings.php:709
 msgid "Off"
 msgstr "Vypnuto"
 
-#: ../../mod/settings.php:708
+#: ../../mod/settings.php:709
 msgid "On"
 msgstr "Zapnuto"
 
-#: ../../mod/settings.php:716
+#: ../../mod/settings.php:717
 msgid "Additional Features"
 msgstr "Další Funkčnosti"
 
-#: ../../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 "Vestavěná podpora pro připojení s %s je %s"
 
-#: ../../mod/settings.php:730 ../../mod/settings.php:731
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 msgid "enabled"
 msgstr "povoleno"
 
-#: ../../mod/settings.php:730 ../../mod/settings.php:731
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 msgid "disabled"
 msgstr "zakázáno"
 
-#: ../../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 "Přístup k elektronické poště je na tomto serveru zakázán."
 
-#: ../../mod/settings.php:779
+#: ../../mod/settings.php:780
 msgid "Email/Mailbox Setup"
 msgstr "Nastavení e-mailu"
 
-#: ../../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 "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/settings.php:781
+#: ../../mod/settings.php:782
 msgid "Last successful email check:"
 msgstr "Poslední úspěšná kontrola e-mailu:"
 
-#: ../../mod/settings.php:783
+#: ../../mod/settings.php:784
 msgid "IMAP server name:"
 msgstr "jméno IMAP serveru:"
 
-#: ../../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 "Zabezpečení:"
 
-#: ../../mod/settings.php:785 ../../mod/settings.php:790
+#: ../../mod/settings.php:786 ../../mod/settings.php:791
 msgid "None"
 msgstr "Žádný"
 
-#: ../../mod/settings.php:786
+#: ../../mod/settings.php:787
 msgid "Email login name:"
 msgstr "přihlašovací jméno k e-mailu:"
 
-#: ../../mod/settings.php:787
+#: ../../mod/settings.php:788
 msgid "Email password:"
 msgstr "heslo k Vašemu e-mailu:"
 
-#: ../../mod/settings.php:788
+#: ../../mod/settings.php:789
 msgid "Reply-to address:"
 msgstr "Odpovědět na adresu:"
 
-#: ../../mod/settings.php:789
+#: ../../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/settings.php:790
+#: ../../mod/settings.php:791
 msgid "Action after import:"
 msgstr "Akce po importu:"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:791
 msgid "Mark as seen"
 msgstr "Označit jako přečtené"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:791
 msgid "Move to folder"
 msgstr "Přesunout do složky"
 
-#: ../../mod/settings.php:791
+#: ../../mod/settings.php:792
 msgid "Move to folder:"
 msgstr "Přesunout do složky:"
 
-#: ../../mod/settings.php:869
+#: ../../mod/settings.php:870
 msgid "Display Settings"
 msgstr "Nastavení Zobrazení"
 
-#: ../../mod/settings.php:875 ../../mod/settings.php:889
+#: ../../mod/settings.php:876 ../../mod/settings.php:890
 msgid "Display Theme:"
 msgstr "Vybrat grafickou šablonu:"
 
-#: ../../mod/settings.php:876
+#: ../../mod/settings.php:877
 msgid "Mobile Theme:"
 msgstr "Téma pro mobilní zařízení:"
 
-#: ../../mod/settings.php:877
+#: ../../mod/settings.php:878
 msgid "Update browser every xx seconds"
 msgstr "Aktualizovat prohlížeč každých xx sekund"
 
-#: ../../mod/settings.php:877
+#: ../../mod/settings.php:878
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Minimum 10 sekund, žádné maximum."
 
-#: ../../mod/settings.php:878
+#: ../../mod/settings.php:879
 msgid "Number of items to display per page:"
 msgstr "Počet položek zobrazených na stránce:"
 
-#: ../../mod/settings.php:878 ../../mod/settings.php:879
+#: ../../mod/settings.php:879 ../../mod/settings.php:880
 msgid "Maximum of 100 items"
 msgstr "Maximum 100 položek"
 
-#: ../../mod/settings.php:879
+#: ../../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/settings.php:880
+#: ../../mod/settings.php:881
 msgid "Don't show emoticons"
 msgstr "Nezobrazovat emotikony"
 
-#: ../../mod/settings.php:881
+#: ../../mod/settings.php:882
 msgid "Don't show notices"
 msgstr "Nezobrazovat oznámění"
 
-#: ../../mod/settings.php:882
+#: ../../mod/settings.php:883
 msgid "Infinite scroll"
 msgstr "Nekonečné posouvání"
 
-#: ../../mod/settings.php:959
+#: ../../mod/settings.php:960
+msgid "User Types"
+msgstr "Uživatelské typy"
+
+#: ../../mod/settings.php:961
+msgid "Community Types"
+msgstr "Komunitní typy"
+
+#: ../../mod/settings.php:962
 msgid "Normal Account Page"
 msgstr "Normální stránka účtu"
 
-#: ../../mod/settings.php:960
+#: ../../mod/settings.php:963
 msgid "This account is a normal personal profile"
 msgstr "Tento účet je běžný osobní profil"
 
-#: ../../mod/settings.php:963
+#: ../../mod/settings.php:966
 msgid "Soapbox Page"
 msgstr "Stránka \"Soapbox\""
 
-#: ../../mod/settings.php:964
+#: ../../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/settings.php:967
+#: ../../mod/settings.php:970
 msgid "Community Forum/Celebrity Account"
 msgstr "Komunitní fórum/ účet celebrity"
 
-#: ../../mod/settings.php:968
+#: ../../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/settings.php:971
+#: ../../mod/settings.php:974
 msgid "Automatic Friend Page"
 msgstr "Automatická stránka přítele"
 
-#: ../../mod/settings.php:972
+#: ../../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/settings.php:975
+#: ../../mod/settings.php:978
 msgid "Private Forum [Experimental]"
 msgstr "Soukromé fórum [Experimentální]"
 
-#: ../../mod/settings.php:976
+#: ../../mod/settings.php:979
 msgid "Private forum - approved members only"
 msgstr "Soukromé fórum - pouze pro schválené členy"
 
-#: ../../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 "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu."
 
-#: ../../mod/settings.php:998
+#: ../../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/settings.php:1004
+#: ../../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/settings.php:1012
+#: ../../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/settings.php:1016
+#: ../../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/settings.php:1021
+#: ../../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/settings.php:1027
+#: ../../mod/settings.php:1030
 msgid "Allow friends to tag your posts?"
 msgstr "Povolit přátelům označovat Vaše příspěvky?"
 
-#: ../../mod/settings.php:1033
+#: ../../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/settings.php:1039
+#: ../../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/settings.php:1047
+#: ../../mod/settings.php:1050
 msgid "Profile is <strong>not published</strong>."
 msgstr "Profil <strong>není zveřejněn</strong>."
 
-#: ../../mod/settings.php:1050 ../../mod/profile_photo.php:248
+#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248
 msgid "or"
 msgstr "nebo"
 
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1058
 msgid "Your Identity Address is"
 msgstr "Vaše adresa identity je"
 
-#: ../../mod/settings.php:1066
+#: ../../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:1066
+#: ../../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:1067
+#: ../../mod/settings.php:1070
 msgid "Advanced expiration settings"
 msgstr "Pokročilé nastavení expirací"
 
-#: ../../mod/settings.php:1068
+#: ../../mod/settings.php:1071
 msgid "Advanced Expiration"
 msgstr "Nastavení expirací"
 
-#: ../../mod/settings.php:1069
+#: ../../mod/settings.php:1072
 msgid "Expire posts:"
 msgstr "Expirovat příspěvky:"
 
-#: ../../mod/settings.php:1070
+#: ../../mod/settings.php:1073
 msgid "Expire personal notes:"
 msgstr "Expirovat osobní poznámky:"
 
-#: ../../mod/settings.php:1071
+#: ../../mod/settings.php:1074
 msgid "Expire starred posts:"
 msgstr "Expirovat příspěvky s hvězdou:"
 
-#: ../../mod/settings.php:1072
+#: ../../mod/settings.php:1075
 msgid "Expire photos:"
 msgstr "Expirovat fotografie:"
 
-#: ../../mod/settings.php:1073
+#: ../../mod/settings.php:1076
 msgid "Only expire posts by others:"
 msgstr "Přízpěvky expirovat pouze ostatními:"
 
-#: ../../mod/settings.php:1099
+#: ../../mod/settings.php:1102
 msgid "Account Settings"
 msgstr "Nastavení účtu"
 
-#: ../../mod/settings.php:1107
+#: ../../mod/settings.php:1110
 msgid "Password Settings"
 msgstr "Nastavení hesla"
 
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1111
 msgid "New Password:"
 msgstr "Nové heslo:"
 
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1112
 msgid "Confirm:"
 msgstr "Potvrďte:"
 
-#: ../../mod/settings.php:1109
+#: ../../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:1110
+#: ../../mod/settings.php:1113
 msgid "Current Password:"
 msgstr "Stávající heslo:"
 
-#: ../../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 "Vaše stávající heslo k potvrzení změn"
 
-#: ../../mod/settings.php:1111
+#: ../../mod/settings.php:1114
 msgid "Password:"
 msgstr "Heslo: "
 
-#: ../../mod/settings.php:1115
+#: ../../mod/settings.php:1118
 msgid "Basic Settings"
 msgstr "Základní nastavení"
 
-#: ../../mod/settings.php:1116 ../../include/profile_advanced.php:15
+#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15
 msgid "Full Name:"
 msgstr "Celé jméno:"
 
-#: ../../mod/settings.php:1117
+#: ../../mod/settings.php:1120
 msgid "Email Address:"
 msgstr "E-mailová adresa:"
 
-#: ../../mod/settings.php:1118
+#: ../../mod/settings.php:1121
 msgid "Your Timezone:"
 msgstr "Vaše časové pásmo:"
 
-#: ../../mod/settings.php:1119
+#: ../../mod/settings.php:1122
 msgid "Default Post Location:"
 msgstr "Výchozí umístění příspěvků:"
 
-#: ../../mod/settings.php:1120
+#: ../../mod/settings.php:1123
 msgid "Use Browser Location:"
 msgstr "Používat umístění dle prohlížeče:"
 
-#: ../../mod/settings.php:1123
+#: ../../mod/settings.php:1126
 msgid "Security and Privacy Settings"
 msgstr "Nastavení zabezpečení a soukromí"
 
-#: ../../mod/settings.php:1125
+#: ../../mod/settings.php:1128
 msgid "Maximum Friend Requests/Day:"
 msgstr "Maximální počet žádostí o přátelství za den:"
 
-#: ../../mod/settings.php:1125 ../../mod/settings.php:1155
+#: ../../mod/settings.php:1128 ../../mod/settings.php:1158
 msgid "(to prevent spam abuse)"
 msgstr "(Aby se zabránilo spamu)"
 
-#: ../../mod/settings.php:1126
+#: ../../mod/settings.php:1129
 msgid "Default Post Permissions"
 msgstr "Výchozí oprávnění pro příspěvek"
 
-#: ../../mod/settings.php:1127
+#: ../../mod/settings.php:1130
 msgid "(click to open/close)"
 msgstr "(Klikněte pro otevření/zavření)"
 
-#: ../../mod/settings.php:1136 ../../mod/photos.php:1144
-#: ../../mod/photos.php:1515
-msgid "Show to Groups"
-msgstr "Zobrazit ve Skupinách"
-
-#: ../../mod/settings.php:1137 ../../mod/photos.php:1145
-#: ../../mod/photos.php:1516
-msgid "Show to Contacts"
-msgstr "Zobrazit v Kontaktech"
-
-#: ../../mod/settings.php:1138
+#: ../../mod/settings.php:1141
 msgid "Default Private Post"
 msgstr "Výchozí Soukromý příspěvek"
 
-#: ../../mod/settings.php:1139
+#: ../../mod/settings.php:1142
 msgid "Default Public Post"
 msgstr "Výchozí Veřejný příspěvek"
 
-#: ../../mod/settings.php:1143
+#: ../../mod/settings.php:1146
 msgid "Default Permissions for New Posts"
 msgstr "Výchozí oprávnění pro nové příspěvky"
 
-#: ../../mod/settings.php:1155
+#: ../../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:1158
+#: ../../mod/settings.php:1161
 msgid "Notification Settings"
 msgstr "Nastavení notifikací"
 
-#: ../../mod/settings.php:1159
+#: ../../mod/settings.php:1162
 msgid "By default post a status message when:"
 msgstr "Defaultně posílat statusové zprávy když:"
 
-#: ../../mod/settings.php:1160
+#: ../../mod/settings.php:1163
 msgid "accepting a friend request"
 msgstr "akceptuji požadavek na přátelství"
 
-#: ../../mod/settings.php:1161
+#: ../../mod/settings.php:1164
 msgid "joining a forum/community"
 msgstr "připojující se k fóru/komunitě"
 
-#: ../../mod/settings.php:1162
+#: ../../mod/settings.php:1165
 msgid "making an <em>interesting</em> profile change"
 msgstr "provedení <em>zajímavé</em> profilové změny"
 
-#: ../../mod/settings.php:1163
+#: ../../mod/settings.php:1166
 msgid "Send a notification email when:"
 msgstr "Poslat notifikaci e-mailem, když"
 
-#: ../../mod/settings.php:1164
+#: ../../mod/settings.php:1167
 msgid "You receive an introduction"
 msgstr "obdržíte žádost o propojení"
 
-#: ../../mod/settings.php:1165
+#: ../../mod/settings.php:1168
 msgid "Your introductions are confirmed"
 msgstr "Vaše žádosti jsou potvrzeny"
 
-#: ../../mod/settings.php:1166
+#: ../../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:1167
+#: ../../mod/settings.php:1170
 msgid "Someone writes a followup comment"
 msgstr "někdo Vám napíše následný komentář"
 
-#: ../../mod/settings.php:1168
+#: ../../mod/settings.php:1171
 msgid "You receive a private message"
 msgstr "obdržíte soukromou zprávu"
 
-#: ../../mod/settings.php:1169
+#: ../../mod/settings.php:1172
 msgid "You receive a friend suggestion"
 msgstr "Obdržel jste návrh přátelství"
 
-#: ../../mod/settings.php:1170
+#: ../../mod/settings.php:1173
 msgid "You are tagged in a post"
 msgstr "Jste označen v příspěvku"
 
-#: ../../mod/settings.php:1171
+#: ../../mod/settings.php:1174
 msgid "You are poked/prodded/etc. in a post"
 msgstr "Byl Jste šťouchnout v příspěvku"
 
-#: ../../mod/settings.php:1174
+#: ../../mod/settings.php:1177
 msgid "Advanced Account/Page Type Settings"
 msgstr "Pokročilé nastavení účtu/stránky"
 
-#: ../../mod/settings.php:1175
+#: ../../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:1178
+#: ../../mod/settings.php:1181
 msgid "Relocate"
 msgstr "Změna umístění"
 
-#: ../../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 "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:1180
+#: ../../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/display.php:263
+msgid "Item has been removed."
+msgstr "Položka byla odstraněna."
+
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Vyhledávání lidí"
+
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Žádné shody"
+
 #: ../../mod/profiles.php:37
 msgid "Profile deleted."
 msgstr "Profil smazán."
@@ -4476,208 +4269,323 @@ msgid ""
 "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/profiles.php:690 ../../mod/directory.php:111
+msgid "Age: "
+msgstr "Věk: "
+
 #: ../../mod/profiles.php:729
 msgid "Edit/Manage Profiles"
 msgstr "Upravit / Spravovat profily"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Skupina vytvořena."
-
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Nelze vytvořit skupinu."
-
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Skupina nenalezena."
+#: ../../mod/profiles.php:730 ../../boot.php:1473 ../../boot.php:1499
+msgid "Change profile photo"
+msgstr "Změnit profilovou fotografii"
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Název skupiny byl změněn."
+#: ../../mod/profiles.php:731 ../../boot.php:1474
+msgid "Create New Profile"
+msgstr "Vytvořit nový profil"
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr "Uložit Skupinu"
+#: ../../mod/profiles.php:742 ../../boot.php:1484
+msgid "Profile Image"
+msgstr "Profilový obrázek"
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Vytvořit skupinu kontaktů / přátel."
+#: ../../mod/profiles.php:744 ../../boot.php:1487
+msgid "visible to everybody"
+msgstr "viditelné pro všechny"
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Název skupiny: "
+#: ../../mod/profiles.php:745 ../../boot.php:1488
+msgid "Edit visibility"
+msgstr "Upravit viditelnost"
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Skupina odstraněna. "
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "odkaz"
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Nelze odstranit skupinu."
+#: ../../mod/uexport.php:77
+msgid "Export account"
+msgstr "Exportovat účet"
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Editor skupin"
+#: ../../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/group.php:192
-msgid "Members"
-msgstr "Členové"
+#: ../../mod/uexport.php:78
+msgid "Export all"
+msgstr "Exportovat vše"
 
-#: ../../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/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/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Zdrojový text (bbcode):"
+#: ../../mod/ping.php:238
+msgid "{0} wants to be your friend"
+msgstr "{0} chce být Vaším přítelem"
 
-#: ../../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/ping.php:243
+msgid "{0} sent you a message"
+msgstr "{0} vám poslal zprávu"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Zdrojový vstup: "
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr "{0} požaduje registraci"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (raw HTML): "
+#: ../../mod/ping.php:254
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} komentoval příspěvek uživatele %s"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+#: ../../mod/ping.php:259
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} má rád příspěvek uživatele %s"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: ../../mod/ping.php:264
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} nemá rád příspěvek uživatele %s"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} se skamarádil s %s"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: ../../mod/ping.php:274
+msgid "{0} posted"
+msgstr "{0} zasláno"
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: ../../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/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
+msgstr "{0} vás zmínil v příspěvku"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Vstupní data (ve formátu Diaspora): "
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Zde není nic nového"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Smazat notifikace"
 
 #: ../../mod/community.php:23
 msgid "Not available."
 msgstr "Není k dispozici."
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Kontakt přidán"
+#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129
+#: ../../include/nav.php:128
+msgid "Community"
+msgstr "Komunita"
 
-#: ../../mod/notify.php:61 ../../mod/notifications.php:332
-msgid "No more system notifications."
-msgstr "Žádné další systémová upozornění."
+#: ../../mod/filer.php:30 ../../include/conversation.php:1004
+#: ../../include/conversation.php:1022
+msgid "Save to Folder:"
+msgstr "Uložit do složky:"
 
-#: ../../mod/notify.php:65 ../../mod/notifications.php:336
-msgid "System Notifications"
-msgstr "Systémová upozornění"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- vyber -"
 
-#: ../../mod/message.php:9 ../../include/nav.php:161
-msgid "New Message"
-msgstr "Nová zpráva"
+#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954
+msgid "Save"
+msgstr "Uložit"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Nepodařilo se najít kontaktní informace."
+#: ../../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/message.php:182 ../../mod/notifications.php:103
-#: ../../include/nav.php:158
-msgid "Messages"
-msgstr "Zprávy"
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "Nebo - nenahrával jste prázdný soubor?"
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Opravdu chcete smazat tuto zprávu?"
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Velikost souboru přesáhla limit %d"
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Zpráva odstraněna."
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Nahrání souboru se nezdařilo."
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Konverzace odstraněna."
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Neplatný identifikátor profilu."
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Žádné zprávy."
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Editor viditelnosti profilu "
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Neznámý odesilatel - %s"
+#: ../../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/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Vy a %s"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Viditelný pro"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s a Vy"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )"
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Odstranit konverzaci"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Opravdu chcete smazat tento návrh?"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D M R - g:i A"
+#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527
+#: ../../include/contact_widgets.php:34
+msgid "Friend Suggestions"
+msgstr "Návrhy přátel"
 
-#: ../../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 "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin."
+
+#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1445
+#: ../../include/contact_widgets.php:9
+msgid "Connect"
+msgstr "Spojit"
+
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "Ignorovat / skrýt"
+
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Přístup odmítnut"
+
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
 #, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d zpráva"
-msgstr[1] "%d zprávy"
-msgstr[2] "%d zpráv"
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s vítá %2$s"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Zpráva není k dispozici."
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Správa identit a / nebo stránek"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Smazat zprávu"
+#: ../../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/message.php:548
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Vyberte identitu pro správu: "
+
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Žádní potenciální delegáti stránky nenalezeni."
+
+#: ../../mod/delegate.php:124 ../../include/nav.php:167
+msgid "Delegate Page Management"
+msgstr "Správa delegátů stránky"
+
+#: ../../mod/delegate.php:126
 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."
+"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/message.php:552
-msgid "Send Reply"
-msgstr "Poslat odpověď"
+#: ../../mod/delegate.php:127
+msgid "Existing Page Managers"
+msgstr "Stávající správci stránky"
 
-#: ../../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"
+#: ../../mod/delegate.php:129
+msgid "Existing Page Delegates"
+msgstr "Stávající delegáti stránky "
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Příspěvek úspěšně odeslán"
+#: ../../mod/delegate.php:131
+msgid "Potential Delegates"
+msgstr "Potenciální delegáti"
+
+#: ../../mod/delegate.php:134
+msgid "Add"
+msgstr "Přidat"
+
+#: ../../mod/delegate.php:135
+msgid "No entries."
+msgstr "Žádné záznamy."
+
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "Žádné kontakty."
+
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:874
+msgid "View Contacts"
+msgstr "Zobrazit kontakty"
+
+#: ../../mod/notes.php:44 ../../boot.php:2010
+msgid "Personal Notes"
+msgstr "Osobní poznámky"
+
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Šťouchanec"
+
+#: ../../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/poke.php:194
+msgid "Recipient"
+msgstr "Příjemce"
+
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Vyberte, co si přejete příjemci udělat"
+
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Změnit tento příspěvek na soukromý"
+
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:525
+msgid "Global Directory"
+msgstr "Globální adresář"
+
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "Nalézt na tomto webu"
+
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "Adresář serveru"
+
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "Pohlaví: "
+
+#: ../../mod/directory.php:136 ../../boot.php:1515
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Pohlaví:"
+
+#: ../../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 "Domácí stránka:"
+
+#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "O mě:"
+
+#: ../../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/localtime.php:12 ../../include/event.php:11
 #: ../../include/bb2diaspora.php:133
@@ -4713,406 +4621,433 @@ msgstr "Převedený lokální čas : %s"
 msgid "Please select your timezone:"
 msgstr "Prosím, vyberte své časové pásmo:"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1004
-#: ../../include/conversation.php:1022
-msgid "Save to Folder:"
-msgstr "Uložit do složky:"
-
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- vyber -"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Příspěvek úspěšně odeslán"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Neplatný identifikátor profilu."
+#: ../../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/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Editor viditelnosti profilu "
+#: ../../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/profperm.php:114
-msgid "Visible To"
-msgstr "Viditelný pro"
+#: ../../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/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Obrázek nelze zpracovat "
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Žádné kontakty."
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Nahrát soubor:"
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:861
-msgid "View Contacts"
-msgstr "Zobrazit kontakty"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Vybrat profil:"
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Vyhledávání lidí"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Nahrát"
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Žádné shody"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "přeskočit tento krok "
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1810
-msgid "Upload New Photos"
-msgstr "Nahrát nové fotografie"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "Vybrat fotografii z Vašich fotoalb"
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
-msgstr "Kontakt byl zablokován"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Oříznout obrázek"
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
-msgstr "Album nenalezeno."
+#: ../../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/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
-msgid "Delete Album"
-msgstr "Smazat album"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Editace dokončena"
 
-#: ../../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/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Obrázek byl úspěšně nahrán."
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511
-msgid "Delete Photo"
-msgstr "Smazat fotografii"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica Komunikační server - Nastavení"
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
-msgstr "Opravdu chcete smazat tuto fotografii?"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Nelze se připojit k databázi."
 
-#: ../../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/install.php:127
+msgid "Could not create table."
+msgstr "Nelze vytvořit tabulku."
 
-#: ../../mod/photos.php:660
-msgid "a photo"
-msgstr "fotografie"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "Vaše databáze Friendica  byla nainstalována."
 
-#: ../../mod/photos.php:765
-msgid "Image exceeds size limit of "
-msgstr "Velikost obrázku překračuje limit velikosti"
+#: ../../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/photos.php:773
-msgid "Image file is empty."
-msgstr "Soubor obrázku je prázdný."
+#: ../../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/photos.php:805 ../../mod/wall_upload.php:112
-#: ../../mod/profile_photo.php:153
-msgid "Unable to process image."
-msgstr "Obrázek není možné zprocesovat"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Testování systému"
 
-#: ../../mod/photos.php:832 ../../mod/wall_upload.php:138
-#: ../../mod/profile_photo.php:301
-msgid "Image upload failed."
-msgstr "Nahrání obrázku selhalo."
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Otestovat znovu"
 
-#: ../../mod/photos.php:928
-msgid "No photos selected"
-msgstr "Není vybrána žádná fotografie"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Databázové spojení"
 
-#: ../../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/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/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/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/photos.php:1127
-msgid "Upload Photos"
-msgstr "Nahrání fotografií "
+#: ../../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/photos.php:1131 ../../mod/photos.php:1199
-msgid "New album name: "
-msgstr "Název nového alba: "
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Jméno databázového serveru"
 
-#: ../../mod/photos.php:1132
-msgid "or existing album name: "
-msgstr "nebo stávající název alba: "
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Přihlašovací jméno k databázi"
 
-#: ../../mod/photos.php:1133
-msgid "Do not show a status post for this upload"
-msgstr "Nezobrazovat stav pro tento upload"
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Heslo k databázovému účtu "
 
-#: ../../mod/photos.php:1135 ../../mod/photos.php:1506
-msgid "Permissions"
-msgstr "Oprávnění:"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Jméno databáze"
 
-#: ../../mod/photos.php:1146
-msgid "Private Photo"
-msgstr "Soukromé Fotografie"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Emailová adresa administrátora webu"
 
-#: ../../mod/photos.php:1147
-msgid "Public Photo"
-msgstr "Veřejné Fotografie"
+#: ../../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/photos.php:1214
-msgid "Edit Album"
-msgstr "Edituj album"
+#: ../../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/photos.php:1220
-msgid "Show Newest First"
-msgstr "Zobrazit nejprve nejnovější:"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Nastavení webu"
 
-#: ../../mod/photos.php:1222
-msgid "Show Oldest First"
-msgstr "Zobrazit nejprve nejstarší:"
+#: ../../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/photos.php:1255 ../../mod/photos.php:1793
-msgid "View Photo"
-msgstr "Zobraz fotografii"
+#: ../../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/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/install.php:326
+msgid "PHP executable path"
+msgstr "Cesta k \"PHP executable\""
 
-#: ../../mod/photos.php:1292
-msgid "Photo not available"
-msgstr "Fotografie není k dispozici"
+#: ../../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/photos.php:1348
-msgid "View photo"
-msgstr "Zobrazit obrázek"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "Příkazový řádek PHP"
 
-#: ../../mod/photos.php:1348
-msgid "Edit photo"
-msgstr "Editovat fotografii"
+#: ../../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/photos.php:1349
-msgid "Use as profile photo"
-msgstr "Použít jako profilovou fotografii"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Nalezena PHP verze:"
 
-#: ../../mod/photos.php:1374
-msgid "View Full Size"
-msgstr "Zobrazit v plné velikosti"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "PHP cli binary"
 
-#: ../../mod/photos.php:1453
-msgid "Tags: "
-msgstr "Štítky: "
+#: ../../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/photos.php:1456
-msgid "[Remove any tag]"
-msgstr "[Odstranit všechny štítky]"
+#: ../../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/photos.php:1496
-msgid "Rotate CW (right)"
-msgstr "Rotovat po směru hodinových ručiček (doprava)"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/photos.php:1497
-msgid "Rotate CCW (left)"
-msgstr "Rotovat proti směru hodinových ručiček (doleva)"
-
-#: ../../mod/photos.php:1499
-msgid "New album name"
-msgstr "Nové jméno alba"
-
-#: ../../mod/photos.php:1502
-msgid "Caption"
-msgstr "Titulek"
-
-#: ../../mod/photos.php:1504
-msgid "Add a Tag"
-msgstr "Přidat štítek"
-
-#: ../../mod/photos.php:1508
+#: ../../mod/install.php:378
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Příklad: @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 "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče"
 
-#: ../../mod/photos.php:1517
-msgid "Private photo"
-msgstr "Soukromé fotografie"
+#: ../../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/photos.php:1518
-msgid "Public photo"
-msgstr "Veřejné fotografie"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Generovat kriptovací klíče"
 
-#: ../../mod/photos.php:1540 ../../include/conversation.php:1083
-msgid "Share"
-msgstr "Sdílet"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "libCurl PHP modul"
 
-#: ../../mod/photos.php:1799 ../../mod/videos.php:308
-msgid "View Album"
-msgstr "Zobrazit album"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "GD graphics PHP modul"
 
-#: ../../mod/photos.php:1808
-msgid "Recent Photos"
-msgstr "Aktuální fotografie"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP modul"
 
-#: ../../mod/wall_attach.php:75 ../../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/install.php:391
+msgid "mysqli PHP module"
+msgstr "mysqli PHP modul"
 
-#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75
-msgid "Or - did you try to upload an empty file?"
-msgstr "Nebo - nenahrával jste prázdný soubor?"
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "mb_string PHP modul"
 
-#: ../../mod/wall_attach.php:81 ../../wall_attach.php:81
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Velikost souboru přesáhla limit %d"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite modul"
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-#: ../../wall_attach.php:122 ../../wall_attach.php:133
-msgid "File upload failed."
-msgstr "Nahrání souboru se nezdařilo."
+#: ../../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/videos.php:125
-msgid "No videos selected"
-msgstr "Není vybráno žádné video"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován."
 
-#: ../../mod/videos.php:301 ../../include/text.php:1387
-msgid "View Video"
-msgstr "Zobrazit video"
+#: ../../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/videos.php:317
-msgid "Recent Videos"
-msgstr "Aktuální Videa"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Chyba: požadovaný openssl PHP modul není nainstalován."
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Nahrát nová videa"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován."
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Šťouchanec"
+#: ../../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/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "někoho šťouchnout nebo mu provést  jinou věc"
+#: ../../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/poke.php:194
-msgid "Recipient"
-msgstr "Příjemce"
+#: ../../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/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Vyberte, co si přejete příjemci udělat"
+#: ../../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/poke.php:198
-msgid "Make this post private"
-msgstr "Změnit tento příspěvek na soukromý"
+#: ../../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/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/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php je editovatelné"
 
-#: ../../mod/uexport.php:77
-msgid "Export account"
-msgstr "Exportovat účet"
+#: ../../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/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 "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."
+"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/uexport.php:78
-msgid "Export all"
-msgstr "Exportovat vše"
+#: ../../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/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 "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í)"
+"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/common.php:42
-msgid "Common Friends"
-msgstr "Společní přátelé"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 je nastaven pro zápis"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Žádné společné kontakty."
+#: ../../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/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/install.php:474
+msgid "Url rewrite is working"
+msgstr "Url rewrite je funkční."
 
-#: ../../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/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/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/install.php:508
+msgid "Errors encountered creating database tables."
+msgstr "Při vytváření databázových tabulek došlo k chybám."
 
-#: ../../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/install.php:519
+msgid "<h1>What next</h1>"
+msgstr "<h1>Co dál<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 "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě."
+"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/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Obrázek nelze zpracovat "
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Skupina vytvořena."
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Nahrát soubor:"
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Nelze vytvořit skupinu."
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Vybrat profil:"
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Skupina nenalezena."
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Nahrát"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Název skupiny byl změněn."
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "přeskočit tento krok "
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr "Uložit Skupinu"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "Vybrat fotografii z Vašich fotoalb"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Vytvořit skupinu kontaktů / přátel."
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Oříznout obrázek"
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Název skupiny: "
 
-#: ../../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/group.php:113
+msgid "Group removed."
+msgstr "Skupina odstraněna. "
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Editace dokončena"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Nelze odstranit skupinu."
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Obrázek byl úspěšně nahrán."
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Editor skupin"
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Aplikace"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Členové"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Žádné nainstalované aplikace."
+#: ../../mod/content.php:119 ../../mod/network.php:514
+msgid "No such group"
+msgstr "Žádná taková skupina"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "Zde není nic nového"
+#: ../../mod/content.php:130 ../../mod/network.php:531
+msgid "Group is empty"
+msgstr "Skupina je prázdná"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr "Smazat notifikace"
+#: ../../mod/content.php:134 ../../mod/network.php:538
+msgid "Group: "
+msgstr "Skupina: "
+
+#: ../../mod/content.php:496 ../../include/conversation.php:688
+msgid "View in context"
+msgstr "Pohled v kontextu"
+
+#: ../../mod/regmod.php:63
+msgid "Account approved."
+msgstr "Účet schválen."
+
+#: ../../mod/regmod.php:100
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrace zrušena pro %s"
+
+#: ../../mod/regmod.php:112
+msgid "Please login."
+msgstr "Přihlaste se, prosím."
 
 #: ../../mod/match.php:12
 msgid "Profile Match"
@@ -5126,1456 +5061,1686 @@ msgstr "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová s
 msgid "is interested in:"
 msgstr "zajímá se o:"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Štítek odstraněn"
+#: ../../mod/item.php:110
+msgid "Unable to locate original post."
+msgstr "Nelze nalézt původní příspěvek."
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Odebrat štítek položky"
+#: ../../mod/item.php:319
+msgid "Empty post discarded."
+msgstr "Prázdný příspěvek odstraněn."
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Vyberte štítek k odebrání: "
+#: ../../mod/item.php:891
+msgid "System error. Post not saved."
+msgstr "Chyba systému. Příspěvek nebyl uložen."
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133
-msgid "Remove"
-msgstr "Odstranit"
+#: ../../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/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/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/item.php:924
+#, php-format
+msgid "%s posted an update."
+msgstr "%s poslal aktualizaci."
+
+#: ../../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/mood.php:133
+msgid "Mood"
+msgstr "Nálada"
+
+#: ../../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/network.php:136
+msgid "Search Results For:"
+msgstr "Výsledky hledání pro:"
+
+#: ../../mod/network.php:189 ../../include/group.php:275
+msgid "add"
+msgstr "přidat"
+
+#: ../../mod/network.php:350
+msgid "Commented Order"
+msgstr "Dle komentářů"
+
+#: ../../mod/network.php:353
+msgid "Sort by Comment Date"
+msgstr "Řadit podle data komentáře"
+
+#: ../../mod/network.php:356
+msgid "Posted Order"
+msgstr "Dle data"
+
+#: ../../mod/network.php:359
+msgid "Sort by Post Date"
+msgstr "Řadit podle data příspěvku"
+
+#: ../../mod/network.php:368
+msgid "Posts that mention or involve you"
+msgstr "Příspěvky, které Vás zmiňují nebo zahrnují"
+
+#: ../../mod/network.php:374
+msgid "New"
+msgstr "Nové"
+
+#: ../../mod/network.php:377
+msgid "Activity Stream - by date"
+msgstr "Proud aktivit - dle data"
+
+#: ../../mod/network.php:383
+msgid "Shared Links"
+msgstr "Sdílené odkazy"
+
+#: ../../mod/network.php:386
+msgid "Interesting Links"
+msgstr "Zajímavé odkazy"
+
+#: ../../mod/network.php:392
+msgid "Starred"
+msgstr "S hvězdičkou"
+
+#: ../../mod/network.php:395
+msgid "Favourite Posts"
+msgstr "Oblíbené přízpěvky"
+
+#: ../../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/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/network.php:548
+msgid "Contact: "
+msgstr "Kontakt: "
+
+#: ../../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/network.php:555
+msgid "Invalid contact."
+msgstr "Neplatný kontakt."
+
+#: ../../mod/crepair.php:104
+msgid "Contact settings applied."
+msgstr "Nastavení kontaktu změněno"
+
+#: ../../mod/crepair.php:106
+msgid "Contact update failed."
+msgstr "Aktualizace kontaktu selhala."
+
+#: ../../mod/crepair.php:137
+msgid "Repair Contact Settings"
+msgstr "Opravit nastavení kontaktu"
+
+#: ../../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/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/crepair.php:146
+msgid "Return to contact editor"
+msgstr "Návrat k editoru kontaktu"
+
+#: ../../mod/crepair.php:151
+msgid "Account Nickname"
+msgstr "Přezdívka účtu"
+
+#: ../../mod/crepair.php:152
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou"
+
+#: ../../mod/crepair.php:153
+msgid "Account URL"
+msgstr "URL adresa účtu"
+
+#: ../../mod/crepair.php:154
+msgid "Friend Request URL"
+msgstr "Žádost o přátelství URL"
+
+#: ../../mod/crepair.php:155
+msgid "Friend Confirm URL"
+msgstr "URL adresa potvrzení přátelství"
+
+#: ../../mod/crepair.php:156
+msgid "Notification Endpoint URL"
+msgstr "Notifikační URL adresa"
+
+#: ../../mod/crepair.php:157
+msgid "Poll/Feed URL"
+msgstr "Poll/Feed URL adresa"
+
+#: ../../mod/crepair.php:158
+msgid "New photo from this URL"
+msgstr "Nové foto z této URL adresy"
+
+#: ../../mod/crepair.php:159
+msgid "Remote Self"
+msgstr "Remote Self"
+
+#: ../../mod/crepair.php:161
+msgid "Mirror postings from this contact"
+msgstr "Zrcadlení správ od tohoto kontaktu"
+
+#: ../../mod/crepair.php:161
+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."
+
+#: ../../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"
+
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Vaše profilová stránka"
+
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Vaše 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"
+
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Personal notes"
+msgstr "Osobní poznámky"
+
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Your personal photos"
+msgstr "Vaše osobní fotky"
+
+#: ../../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"
+
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+#: ../../view/theme/diabook/config.php:160
+msgid "Community Profiles"
+msgstr "Komunitní profily"
+
+#: ../../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é"
+
+#: ../../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í"
+
+#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1953
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+msgid "event"
+msgstr "událost"
+
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+#: ../../view/theme/diabook/config.php:165
+msgid "Last photos"
+msgstr "Poslední fotografie"
+
+#: ../../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"
+
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Lokální Adresář"
+
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
+msgid "Similar Interests"
+msgstr "Podobné zájmy"
+
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
+msgid "Invite Friends"
+msgstr "Pozvat přátele"
+
+#: ../../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"
+
+#: ../../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"
+
+#: ../../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"
+
+#: ../../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 ?"
+
+#: ../../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"
+
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328
+msgid "don't show"
+msgstr "nikdy nezobrazit"
+
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
+msgid "show"
+msgstr "zobrazit"
+
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Zobrazit/skrýt boxy na pravém sloupci:"
 
-#: ../../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: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/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 "Nastav velikost písma pro přízpěvky a komentáře."
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Editovat událost"
+#: ../../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/events.php:335 ../../include/text.php:1620
-#: ../../include/text.php:1631
-msgid "link to source"
-msgstr "odkaz na zdroj"
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Nastav rozlišení pro prostřední sloupec"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Vytvořit novou událost"
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Nastavení barevného schematu"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Předchozí"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Nastavit přiblížení pro Earth Layer"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "hodina:minuta"
+#: ../../view/theme/vier/config.php:50
+msgid "Set style"
+msgstr "Nastavit styl"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Detaily události"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Nastavit barevné schéma"
 
-#: ../../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:67
+msgid "Alignment"
+msgstr "Zarovnání"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Událost začíná:"
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Vlevo"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Vyžadováno"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Uprostřed"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Datum/čas konce není zadán nebo není relevantní"
+#: ../../view/theme/quattro/config.php:68
+#: ../../view/theme/cleanzero/config.php:86
+msgid "Color scheme"
+msgstr "Barevné schéma"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Akce končí:"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Velikost písma u příspěvků"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Velikost písma textů"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Popis:"
+#: ../../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:473
-msgid "Title:"
-msgstr "Název:"
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Nastavení šířku grafické šablony"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Sdílet tuto událost"
+#: ../../boot.php:692
+msgid "Delete this item?"
+msgstr "Odstranit tuto položku?"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Žádní potenciální delegáti stránky nenalezeni."
+#: ../../boot.php:695
+msgid "show fewer"
+msgstr "zobrazit méně"
 
-#: ../../mod/delegate.php:124 ../../include/nav.php:167
-msgid "Delegate Page Management"
-msgstr "Správa delegátů stránky"
+#: ../../boot.php:1023
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb."
 
-#: ../../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.."
+#: ../../boot.php:1025
+#, php-format
+msgid "Update Error at %s"
+msgstr "Chyba aktualizace na %s"
 
-#: ../../mod/delegate.php:127
-msgid "Existing Page Managers"
-msgstr "Stávající správci stránky"
+#: ../../boot.php:1135
+msgid "Create a New Account"
+msgstr "Vytvořit nový účet"
 
-#: ../../mod/delegate.php:129
-msgid "Existing Page Delegates"
-msgstr "Stávající delegáti stránky "
+#: ../../boot.php:1160 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Odhlásit se"
 
-#: ../../mod/delegate.php:131
-msgid "Potential Delegates"
-msgstr "Potenciální delegáti"
+#: ../../boot.php:1161 ../../include/nav.php:91
+msgid "Login"
+msgstr "Přihlásit se"
 
-#: ../../mod/delegate.php:134
-msgid "Add"
-msgstr "Přidat"
+#: ../../boot.php:1163
+msgid "Nickname or Email address: "
+msgstr "Přezdívka nebo e-mailová adresa:"
 
-#: ../../mod/delegate.php:135
-msgid "No entries."
-msgstr "Žádné záznamy."
+#: ../../boot.php:1164
+msgid "Password: "
+msgstr "Heslo: "
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Kontakty, které nejsou členy skupiny"
+#: ../../boot.php:1165
+msgid "Remember me"
+msgstr "Pamatuj si mne"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Soubory"
+#: ../../boot.php:1168
+msgid "Or login using OpenID: "
+msgstr "Nebo přihlášení pomocí OpenID: "
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "Systém vypnut z důvodů údržby"
+#: ../../boot.php:1174
+msgid "Forgot your password?"
+msgstr "Zapomněli jste své heslo?"
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
-msgstr "Odstranit můj účet"
+#: ../../boot.php:1177
+msgid "Website Terms of Service"
+msgstr "Podmínky použití serveru"
 
-#: ../../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:1178
+msgid "terms of service"
+msgstr "podmínky použití"
 
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
-msgstr "Prosím, zadejte své heslo pro ověření:"
+#: ../../boot.php:1180
+msgid "Website Privacy Policy"
+msgstr "Pravidla ochrany soukromí serveru"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Návrhy přátelství odeslány "
+#: ../../boot.php:1181
+msgid "privacy policy"
+msgstr "Ochrana soukromí"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Navrhněte přátelé"
+#: ../../boot.php:1314
+msgid "Requested account is not available."
+msgstr "Požadovaný účet není dostupný."
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Navrhněte přátelé pro uživatele %s"
+#: ../../boot.php:1393 ../../boot.php:1497
+msgid "Edit profile"
+msgstr "Upravit profil"
 
-#: ../../mod/item.php:110
-msgid "Unable to locate original post."
-msgstr "Nelze nalézt původní příspěvek."
+#: ../../boot.php:1459
+msgid "Message"
+msgstr "Zpráva"
 
-#: ../../mod/item.php:319
-msgid "Empty post discarded."
-msgstr "Prázdný příspěvek odstraněn."
+#: ../../boot.php:1467 ../../include/nav.php:171
+msgid "Profiles"
+msgstr "Profily"
 
-#: ../../mod/item.php:891
-msgid "System error. Post not saved."
-msgstr "Chyba systému. Příspěvek nebyl uložen."
+#: ../../boot.php:1467
+msgid "Manage/edit profiles"
+msgstr "Spravovat/upravit profily"
 
-#: ../../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."
+#: ../../boot.php:1596 ../../boot.php:1682
+msgid "g A l F d"
+msgstr "g A l F d"
 
-#: ../../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"
+#: ../../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 "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam."
+#: ../../boot.php:1642 ../../boot.php:1723
+msgid "[today]"
+msgstr "[Dnes]"
 
-#: ../../mod/item.php:924
-#, php-format
-msgid "%s posted an update."
-msgstr "%s poslal aktualizaci."
+#: ../../boot.php:1654
+msgid "Birthday Reminders"
+msgstr "Připomínka narozenin"
 
-#: ../../mod/ping.php:238
-msgid "{0} wants to be your friend"
-msgstr "{0} chce být Vaším přítelem"
+#: ../../boot.php:1655
+msgid "Birthdays this week:"
+msgstr "Narozeniny tento týden:"
 
-#: ../../mod/ping.php:243
-msgid "{0} sent you a message"
-msgstr "{0} vám poslal zprávu"
+#: ../../boot.php:1716
+msgid "[No description]"
+msgstr "[Žádný popis]"
 
-#: ../../mod/ping.php:248
-msgid "{0} requested registration"
-msgstr "{0} požaduje registraci"
+#: ../../boot.php:1734
+msgid "Event Reminders"
+msgstr "Připomenutí událostí"
 
-#: ../../mod/ping.php:254
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} komentoval příspěvek uživatele %s"
+#: ../../boot.php:1735
+msgid "Events this week:"
+msgstr "Události tohoto týdne:"
 
-#: ../../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:1972 ../../include/nav.php:76
+msgid "Status"
+msgstr "Stav"
 
-#: ../../mod/ping.php:264
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} nemá rád příspěvek uživatele %s"
+#: ../../boot.php:1975
+msgid "Status Messages and Posts"
+msgstr "Statusové zprávy a příspěvky "
 
-#: ../../mod/ping.php:269
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} se skamarádil s %s"
+#: ../../boot.php:1982
+msgid "Profile Details"
+msgstr "Detaily profilu"
 
-#: ../../mod/ping.php:274
-msgid "{0} posted"
-msgstr "{0} zasláno"
+#: ../../boot.php:1993 ../../boot.php:1996
+msgid "Videos"
+msgstr "Videa"
 
-#: ../../mod/ping.php:279
-#, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} označen %s' příspěvek s #%s"
+#: ../../boot.php:2006
+msgid "Events and Calendar"
+msgstr "Události a kalendář"
 
-#: ../../mod/ping.php:285
-msgid "{0} mentioned you in a post"
-msgstr "{0} vás zmínil v příspěvku"
+#: ../../boot.php:2013
+msgid "Only You Can See This"
+msgstr "Toto můžete vidět jen Vy"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID."
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Obecné funkčnosti"
 
-#: ../../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:25
+msgid "Multiple Profiles"
+msgstr "Vícenásobné profily"
 
-#: ../../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:25
+msgid "Ability to create multiple profiles"
+msgstr "Schopnost vytvořit vícenásobné profily"
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Neplatný identifikátor požadavku."
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Nastavení vytváření příspěvků"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Odstranit"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Richtext Editor"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Systém"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Povolit richtext editor"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:142
-msgid "Network"
-msgstr "Síť"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Náhled příspěvku"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:151
-msgid "Introductions"
-msgstr "Představení"
+#: ../../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:122
-msgid "Show Ignored Requests"
-msgstr "Zobrazit ignorované žádosti"
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "Automaticky zmíněná Fóra"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Skrýt ignorované žádosti"
+#: ../../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:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Typ oznámení: "
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Síťové postranní widgety"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Návrh přátelství"
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Vyhledávat dle Data"
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "navrhl %s"
+#: ../../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:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Zveřejnit aktivitu nového přítele."
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Skupinový Filtr"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "je-li použitelné"
+#: ../../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:181
-msgid "Claims to be known to you: "
-msgstr "Vaši údajní známí: "
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Síťový Filtr"
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "ano"
+#: ../../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:181
-msgid "no"
-msgstr "ne"
+#: ../../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:188
-msgid "Approve as: "
-msgstr "Schválit jako: "
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Síťové záložky"
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Přítel"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Osobní síťový záložka "
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Sdílené"
+#: ../../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:190
-msgid "Fan/Admirer"
-msgstr "Fanoušek / obdivovatel"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Nová záložka síť"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Přítel / žádost o připojení"
+#: ../../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:196
-msgid "New Follower"
-msgstr "Nový následovník"
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "záložka Síťové sdílené odkazy "
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Žádné představení."
+#: ../../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:220 ../../include/nav.php:152
-msgid "Notifications"
-msgstr "Upozornění"
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Nástroje Příspěvků/Komentářů"
 
-#: ../../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:56
+msgid "Multiple Deletion"
+msgstr "Násobné mazání"
 
-#: ../../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:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Označit a smazat více "
 
-#: ../../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:57
+msgid "Edit Sent Posts"
+msgstr "Editovat Odeslané příspěvky"
 
-#: ../../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: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: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:58
+msgid "Tagging"
+msgstr "Štítkování"
 
-#: ../../mod/notifications.php:302
-msgid "No more network notifications."
-msgstr "Žádné další síťové upozornění."
+#: ../../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:306
-msgid "Network Notifications"
-msgstr "Upozornění Sítě"
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Kategorie příspěvků"
 
-#: ../../mod/notifications.php:427
-msgid "No more personal notifications."
-msgstr "Žádné další osobní upozornění."
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Přidat kategorie k Vašim příspěvkům"
 
-#: ../../mod/notifications.php:431
-msgid "Personal Notifications"
-msgstr "Osobní upozornění"
+#: ../../include/features.php:60 ../../include/contact_widgets.php:103
+msgid "Saved Folders"
+msgstr "Uložené složky"
 
-#: ../../mod/notifications.php:508
-msgid "No more home notifications."
-msgstr "Žádné další domácí upozornění."
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Možnost řadit příspěvky do složek"
 
-#: ../../mod/notifications.php:512
-msgid "Home Notifications"
-msgstr "Domácí upozornění"
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Označit příspěvky jako neoblíbené"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Celkový limit pozvánek byl překročen"
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Možnost označit příspěvky/komentáře jako neoblíbené"
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : není platná e-mailová adresa."
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Příspěvky s hvězdou"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Prosím přidejte se k nám na Friendice"
+#: ../../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/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/auth.php:38
+msgid "Logged out."
+msgstr "Odhlášen."
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Doručení zprávy se nezdařilo."
+#: ../../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: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/auth.php:128 ../../include/user.php:66
+msgid "The error message was:"
+msgstr "Chybová zpráva byla:"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Nemáte k dispozici žádné další pozvánky"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
+msgid "Starts:"
+msgstr "Začíná:"
 
-#: ../../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í."
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
+msgid "Finishes:"
+msgstr "Končí:"
 
-#: ../../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: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 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: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 "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:30
+msgid "Birthday:"
+msgstr "Narozeniny:"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Poslat pozvánky"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Věk:"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Zadejte e-mailové adresy, jednu na řádek:"
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "pro %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 "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:52
+msgid "Tags:"
+msgstr "Štítky:"
 
-#: ../../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:56
+msgid "Religion:"
+msgstr "Náboženství:"
 
-#: ../../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:60
+msgid "Hobbies/Interests:"
+msgstr "Koníčky/zájmy:"
 
-#: ../../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:67
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktní informace a sociální sítě:"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Správa identit a / nebo stránek"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Hudební vkus:"
 
-#: ../../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/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Knihy, literatura:"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Vyberte identitu pro správu: "
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Televize:"
 
-#: ../../mod/home.php:34
-#, php-format
-msgid "Welcome to %s"
-msgstr "Vítá Vás %s"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/tanec/kultura/zábava:"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Přátelé uživatele %s"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Láska/romance"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Žádní přátelé k zobrazení"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Práce/zaměstnání:"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Přidat nový kontakt"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Škola/vzdělávání:"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Zadejte adresu nebo umístění webu"
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[bez předmětu]"
 
-#: ../../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/Scrape.php:584
+msgid " on Last.fm"
+msgstr " na Last.fm"
 
-#: ../../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/text.php:296
+msgid "newer"
+msgstr "novější"
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
-msgstr "Nalézt lidi"
+#: ../../include/text.php:298
+msgid "older"
+msgstr "starší"
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
-msgstr "Zadejte jméno nebo zájmy"
+#: ../../include/text.php:303
+msgid "prev"
+msgstr "předchozí"
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
-msgstr "Připojit / Následovat"
+#: ../../include/text.php:305
+msgid "first"
+msgstr "první"
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Příklady: Robert Morgenstein, rybaření"
+#: ../../include/text.php:337
+msgid "last"
+msgstr "poslední"
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
-msgstr "Náhodný Profil"
+#: ../../include/text.php:340
+msgid "next"
+msgstr "další"
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
-msgstr "Sítě"
+#: ../../include/text.php:853
+msgid "No contacts"
+msgstr "Žádné kontakty"
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
-msgstr "Všechny sítě"
+#: ../../include/text.php:862
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d kontakt"
+msgstr[1] "%d kontaktů"
+msgstr[2] "%d kontaktů"
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:60
-msgid "Saved Folders"
-msgstr "Uložené složky"
+#: ../../include/text.php:1003
+msgid "poke"
+msgstr "šťouchnout"
 
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
-msgstr "Všechno"
+#: ../../include/text.php:1003 ../../include/conversation.php:211
+msgid "poked"
+msgstr "šťouchnut"
 
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
-msgstr "Kategorie"
+#: ../../include/text.php:1004
+msgid "ping"
+msgstr "cinknout"
 
-#: ../../include/plugin.php:454 ../../include/plugin.php:456
-msgid "Click here to upgrade."
-msgstr "Klikněte zde pro aktualizaci."
+#: ../../include/text.php:1004
+msgid "pinged"
+msgstr "cinkut"
 
-#: ../../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:1005
+msgid "prod"
+msgstr "pobídnout"
 
-#: ../../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:1005
+msgid "prodded"
+msgstr "pobídnut"
 
-#: ../../include/api.php:263 ../../include/api.php:274
-#: ../../include/api.php:375
-msgid "User not found."
-msgstr "Uživatel nenalezen"
+#: ../../include/text.php:1006
+msgid "slap"
+msgstr "dát facku"
 
-#: ../../include/api.php:1123
-msgid "There is no status with this id."
-msgstr "Není tu žádný status s tímto id."
+#: ../../include/text.php:1006
+msgid "slapped"
+msgstr "být uhozen"
 
-#: ../../include/api.php:1193
-msgid "There is no conversation with this id."
-msgstr "Nemáme žádnou konverzaci s tímto id."
+#: ../../include/text.php:1007
+msgid "finger"
+msgstr "osahávat"
 
-#: ../../include/network.php:886
-msgid "view full size"
-msgstr "zobrazit v plné velikosti"
+#: ../../include/text.php:1007
+msgid "fingered"
+msgstr "osaháván"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
-msgid "Starts:"
-msgstr "Začíná:"
+#: ../../include/text.php:1008
+msgid "rebuff"
+msgstr "odmítnout"
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
-msgid "Finishes:"
-msgstr "Končí:"
+#: ../../include/text.php:1008
+msgid "rebuffed"
+msgstr "odmítnut"
 
-#: ../../include/notifier.php:774 ../../include/delivery.php:456
-msgid "(no subject)"
-msgstr "(Bez předmětu)"
+#: ../../include/text.php:1022
+msgid "happy"
+msgstr "šťasný"
 
-#: ../../include/notifier.php:784 ../../include/enotify.php:28
-#: ../../include/delivery.php:467
-msgid "noreply"
-msgstr "neodpovídat"
+#: ../../include/text.php:1023
+msgid "sad"
+msgstr "smutný"
 
-#: ../../include/user.php:39
-msgid "An invitation is required."
-msgstr "Pozvánka je vyžadována."
+#: ../../include/text.php:1024
+msgid "mellow"
+msgstr "jemný"
 
-#: ../../include/user.php:44
-msgid "Invitation could not be verified."
-msgstr "Pozvánka nemohla být ověřena."
+#: ../../include/text.php:1025
+msgid "tired"
+msgstr "unavený"
 
-#: ../../include/user.php:52
-msgid "Invalid OpenID url"
-msgstr "Neplatný odkaz OpenID"
+#: ../../include/text.php:1026
+msgid "perky"
+msgstr "emergický"
 
-#: ../../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:1027
+msgid "angry"
+msgstr "nazlobený"
 
-#: ../../include/user.php:66 ../../include/auth.php:128
-msgid "The error message was:"
-msgstr "Chybová zpráva byla:"
+#: ../../include/text.php:1028
+msgid "stupified"
+msgstr "otupen"
 
-#: ../../include/user.php:73
-msgid "Please enter the required information."
-msgstr "Zadejte prosím požadované informace."
+#: ../../include/text.php:1029
+msgid "puzzled"
+msgstr "popletený"
 
-#: ../../include/user.php:87
-msgid "Please use a shorter name."
-msgstr "Použijte prosím kratší jméno."
+#: ../../include/text.php:1030
+msgid "interested"
+msgstr "zajímavý"
 
-#: ../../include/user.php:89
-msgid "Name too short."
-msgstr "Jméno je příliš krátké."
+#: ../../include/text.php:1031
+msgid "bitter"
+msgstr "hořký"
 
-#: ../../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:1032
+msgid "cheerful"
+msgstr "radnostný"
 
-#: ../../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:1033
+msgid "alive"
+msgstr "naživu"
 
-#: ../../include/user.php:112
-msgid "Not a valid email address."
-msgstr "Neplatná e-mailová adresa."
+#: ../../include/text.php:1034
+msgid "annoyed"
+msgstr "otráven"
 
-#: ../../include/user.php:125
-msgid "Cannot use that email."
-msgstr "Tento e-mail nelze použít."
+#: ../../include/text.php:1035
+msgid "anxious"
+msgstr "znepokojený"
 
-#: ../../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:1036
+msgid "cranky"
+msgstr "mrzutý"
 
-#: ../../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:1037
+msgid "disturbed"
+msgstr "vyrušen"
 
-#: ../../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:1038
+msgid "frustrated"
+msgstr "frustrovaný"
 
-#: ../../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:1039
+msgid "motivated"
+msgstr "motivovaný"
 
-#: ../../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:1040
+msgid "relaxed"
+msgstr "uvolněný"
 
-#: ../../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:1041
+msgid "surprised"
+msgstr "překvapený"
 
-#: ../../include/user.php:288 ../../include/user.php:292
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Přátelé"
+#: ../../include/text.php:1209
+msgid "Monday"
+msgstr "Pondělí"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s šťouchnul %2$s"
+#: ../../include/text.php:1209
+msgid "Tuesday"
+msgstr "Úterý"
 
-#: ../../include/conversation.php:211 ../../include/text.php:990
-msgid "poked"
-msgstr "šťouchnut"
+#: ../../include/text.php:1209
+msgid "Wednesday"
+msgstr "Středa"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "příspěvek/položka"
+#: ../../include/text.php:1209
+msgid "Thursday"
+msgstr "Čtvrtek"
 
-#: ../../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:1209
+msgid "Friday"
+msgstr "Pátek"
 
-#: ../../include/conversation.php:770
-msgid "remove"
-msgstr "odstranit"
+#: ../../include/text.php:1209
+msgid "Saturday"
+msgstr "Sobota"
 
-#: ../../include/conversation.php:774
-msgid "Delete Selected Items"
-msgstr "Smazat vybrané položky"
+#: ../../include/text.php:1209
+msgid "Sunday"
+msgstr "Neděle"
 
-#: ../../include/conversation.php:873
-msgid "Follow Thread"
-msgstr "Následovat vlákno"
+#: ../../include/text.php:1213
+msgid "January"
+msgstr "Ledna"
 
-#: ../../include/conversation.php:874 ../../include/Contact.php:229
-msgid "View Status"
-msgstr "Zobrazit Status"
+#: ../../include/text.php:1213
+msgid "February"
+msgstr "Února"
 
-#: ../../include/conversation.php:875 ../../include/Contact.php:230
-msgid "View Profile"
-msgstr "Zobrazit Profil"
+#: ../../include/text.php:1213
+msgid "March"
+msgstr "Března"
 
-#: ../../include/conversation.php:876 ../../include/Contact.php:231
-msgid "View Photos"
-msgstr "Zobrazit Fotky"
+#: ../../include/text.php:1213
+msgid "April"
+msgstr "Dubna"
 
-#: ../../include/conversation.php:877 ../../include/Contact.php:232
-#: ../../include/Contact.php:255
-msgid "Network Posts"
-msgstr "Zobrazit Příspěvky sítě"
+#: ../../include/text.php:1213
+msgid "May"
+msgstr "Května"
 
-#: ../../include/conversation.php:878 ../../include/Contact.php:233
-#: ../../include/Contact.php:255
-msgid "Edit Contact"
-msgstr "Editovat Kontakty"
+#: ../../include/text.php:1213
+msgid "June"
+msgstr "Června"
 
-#: ../../include/conversation.php:879 ../../include/Contact.php:235
-#: ../../include/Contact.php:255
-msgid "Send PM"
-msgstr "Poslat soukromou zprávu"
+#: ../../include/text.php:1213
+msgid "July"
+msgstr "Července"
 
-#: ../../include/conversation.php:880 ../../include/Contact.php:228
-msgid "Poke"
-msgstr "Šťouchnout"
+#: ../../include/text.php:1213
+msgid "August"
+msgstr "Srpna"
 
-#: ../../include/conversation.php:942
-#, php-format
-msgid "%s likes this."
-msgstr "%s se to líbí."
+#: ../../include/text.php:1213
+msgid "September"
+msgstr "Září"
 
-#: ../../include/conversation.php:942
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s se to nelíbí."
+#: ../../include/text.php:1213
+msgid "October"
+msgstr "Října"
 
-#: ../../include/conversation.php:947
-#, 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/text.php:1213
+msgid "November"
+msgstr "Listopadu"
 
-#: ../../include/conversation.php:950
-#, 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/text.php:1213
+msgid "December"
+msgstr "Prosinec"
 
-#: ../../include/conversation.php:964
-msgid "and"
-msgstr "a"
+#: ../../include/text.php:1432
+msgid "bytes"
+msgstr "bytů"
 
-#: ../../include/conversation.php:970
-#, php-format
-msgid ", and %d other people"
-msgstr ", a %d dalších lidí"
+#: ../../include/text.php:1456 ../../include/text.php:1468
+msgid "Click to open/close"
+msgstr "Klikněte pro otevření/zavření"
 
-#: ../../include/conversation.php:972
-#, php-format
-msgid "%s like this."
-msgstr "%s se to líbí."
+#: ../../include/text.php:1689 ../../include/user.php:246
+msgid "default"
+msgstr "standardní"
 
-#: ../../include/conversation.php:972
-#, php-format
-msgid "%s don't like this."
-msgstr "%s se to nelíbí."
+#: ../../include/text.php:1701
+msgid "Select an alternate language"
+msgstr "Vyběr alternativního jazyka"
 
-#: ../../include/conversation.php:999 ../../include/conversation.php:1017
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Viditelné pro <strong>všechny</strong>"
+#: ../../include/text.php:1957
+msgid "activity"
+msgstr "aktivita"
 
-#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
-msgid "Please enter a video link/URL:"
-msgstr "Prosím zadejte URL adresu videa:"
+#: ../../include/text.php:1960
+msgid "post"
+msgstr "příspěvek"
 
-#: ../../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/text.php:2128
+msgid "Item filed"
+msgstr "Položka vyplněna"
 
-#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
-msgid "Tag term:"
-msgstr "Štítek:"
+#: ../../include/api.php:263 ../../include/api.php:274
+#: ../../include/api.php:375
+msgid "User not found."
+msgstr "Uživatel nenalezen"
 
-#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
-msgid "Where are you right now?"
-msgstr "Kde právě jste?"
+#: ../../include/api.php:1123
+msgid "There is no status with this id."
+msgstr "Není tu žádný status s tímto id."
 
-#: ../../include/conversation.php:1006
-msgid "Delete item(s)?"
-msgstr "Smazat položku(y)?"
+#: ../../include/api.php:1193
+msgid "There is no conversation with this id."
+msgstr "Nemáme žádnou konverzaci s tímto id."
 
-#: ../../include/conversation.php:1048
-msgid "Post to Email"
-msgstr "Poslat příspěvek na e-mail"
+#: ../../include/dba.php:51 ../../include/dba_pdo.php:72
+#, php-format
+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:1104
-msgid "permissions"
-msgstr "oprávnění"
+#: ../../include/items.php:1981 ../../include/datetime.php:472
+#, php-format
+msgid "%s's birthday"
+msgstr "%s má narozeniny"
 
-#: ../../include/conversation.php:1128
-msgid "Post to Groups"
-msgstr "Zveřejnit na Groups"
+#: ../../include/items.php:1982 ../../include/datetime.php:473
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Veselé narozeniny %s"
 
-#: ../../include/conversation.php:1129
-msgid "Post to Contacts"
-msgstr "Zveřejnit na Groups"
+#: ../../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:1130
-msgid "Private post"
-msgstr "Soukromý příspěvek"
+#: ../../include/items.php:3710
+msgid "You have a new follower at "
+msgstr "Máte nového následovníka na"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Odhlášen."
+#: ../../include/items.php:4233
+msgid "Do you really want to delete this item?"
+msgstr "Opravdu chcete smazat tuto položku?"
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Chyba dekódování uživatelského účtu"
+#: ../../include/items.php:4460
+msgid "Archives"
+msgstr "Archív"
 
-#: ../../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/delivery.php:456 ../../include/notifier.php:774
+msgid "(no subject)"
+msgstr "(Bez předmětu)"
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Chyba! Nelze ověřit přezdívku"
+#: ../../include/delivery.php:467 ../../include/notifier.php:784
+#: ../../include/enotify.php:28
+msgid "noreply"
+msgstr "neodpovídat"
 
-#: ../../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/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
+msgstr "Sdílení oznámení ze sítě Diaspora"
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Chyba vytváření uživatele"
+#: ../../include/diaspora.php:2299
+msgid "Attachments:"
+msgstr "Přílohy:"
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Chyba vytváření uživatelského účtu"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "Chybí URL adresa."
 
-#: ../../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: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: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: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/text.php:304
-msgid "newer"
-msgstr "novější"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "Uvedená adresa profilu neposkytuje dostatečné informace."
 
-#: ../../include/text.php:306
-msgid "older"
-msgstr "starší"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Autor nebo jméno nenalezeno"
 
-#: ../../include/text.php:311
-msgid "prev"
-msgstr "předchozí"
+#: ../../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/text.php:313
-msgid "first"
-msgstr "první"
+#: ../../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/text.php:345
-msgid "last"
-msgstr "poslední"
+#: ../../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:348
-msgid "next"
-msgstr "další"
+#: ../../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:840
-msgid "No contacts"
-msgstr "Žádné kontakty"
+#: ../../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:849
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d kontakt"
-msgstr[1] "%d kontaktů"
-msgstr[2] "%d kontaktů"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Nepodařilo se získat kontaktní informace."
 
-#: ../../include/text.php:990
-msgid "poke"
-msgstr "šťouchnout"
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "následující"
 
-#: ../../include/text.php:991
-msgid "ping"
-msgstr "cinknout"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Vítejte "
 
-#: ../../include/text.php:991
-msgid "pinged"
-msgstr "cinkut"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Prosím nahrejte profilovou fotografii"
 
-#: ../../include/text.php:992
-msgid "prod"
-msgstr "pobídnout"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Vítejte zpět "
 
-#: ../../include/text.php:992
-msgid "prodded"
-msgstr "pobídnut"
+#: ../../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:993
-msgid "slap"
-msgstr "dát facku"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Muž"
 
-#: ../../include/text.php:993
-msgid "slapped"
-msgstr "být uhozen"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Žena"
 
-#: ../../include/text.php:994
-msgid "finger"
-msgstr "osahávat"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "V současné době muž"
 
-#: ../../include/text.php:994
-msgid "fingered"
-msgstr "osaháván"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "V současné době žena"
 
-#: ../../include/text.php:995
-msgid "rebuff"
-msgstr "odmítnout"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Většinou muž"
 
-#: ../../include/text.php:995
-msgid "rebuffed"
-msgstr "odmítnut"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Většinou žena"
 
-#: ../../include/text.php:1009
-msgid "happy"
-msgstr "šťasný"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: ../../include/text.php:1010
-msgid "sad"
-msgstr "smutný"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersex"
 
-#: ../../include/text.php:1011
-msgid "mellow"
-msgstr "jemný"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transexuál"
 
-#: ../../include/text.php:1012
-msgid "tired"
-msgstr "unavený"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermafrodit"
 
-#: ../../include/text.php:1013
-msgid "perky"
-msgstr "emergický"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutrál"
 
-#: ../../include/text.php:1014
-msgid "angry"
-msgstr "nazlobený"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Nespecifikováno"
 
-#: ../../include/text.php:1015
-msgid "stupified"
-msgstr "otupen"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Jiné"
 
-#: ../../include/text.php:1016
-msgid "puzzled"
-msgstr "popletený"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Nerozhodnuto"
 
-#: ../../include/text.php:1017
-msgid "interested"
-msgstr "zajímavý"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Muži"
 
-#: ../../include/text.php:1018
-msgid "bitter"
-msgstr "hořký"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Ženy"
 
-#: ../../include/text.php:1019
-msgid "cheerful"
-msgstr "radnostný"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gay"
 
-#: ../../include/text.php:1020
-msgid "alive"
-msgstr "naživu"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbička"
 
-#: ../../include/text.php:1021
-msgid "annoyed"
-msgstr "otráven"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Bez preferencí"
 
-#: ../../include/text.php:1022
-msgid "anxious"
-msgstr "znepokojený"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuál"
 
-#: ../../include/text.php:1023
-msgid "cranky"
-msgstr "mrzutý"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexuál"
 
-#: ../../include/text.php:1024
-msgid "disturbed"
-msgstr "vyrušen"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: ../../include/text.php:1025
-msgid "frustrated"
-msgstr "frustrovaný"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "panic/panna"
 
-#: ../../include/text.php:1026
-msgid "motivated"
-msgstr "motivovaný"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviant"
 
-#: ../../include/text.php:1027
-msgid "relaxed"
-msgstr "uvolněný"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetišista"
 
-#: ../../include/text.php:1028
-msgid "surprised"
-msgstr "překvapený"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Hodně"
 
-#: ../../include/text.php:1196
-msgid "Monday"
-msgstr "Pondělí"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Nesexuální"
 
-#: ../../include/text.php:1196
-msgid "Tuesday"
-msgstr "Úterý"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Svobodný"
 
-#: ../../include/text.php:1196
-msgid "Wednesday"
-msgstr "Středa"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Osamnělý"
 
-#: ../../include/text.php:1196
-msgid "Thursday"
-msgstr "Čtvrtek"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Dostupný"
 
-#: ../../include/text.php:1196
-msgid "Friday"
-msgstr "Pátek"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Nedostupný"
 
-#: ../../include/text.php:1196
-msgid "Saturday"
-msgstr "Sobota"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Zamilovaný"
 
-#: ../../include/text.php:1196
-msgid "Sunday"
-msgstr "Neděle"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Zabouchnutý"
 
-#: ../../include/text.php:1200
-msgid "January"
-msgstr "Ledna"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Seznamující se"
 
-#: ../../include/text.php:1200
-msgid "February"
-msgstr "Února"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Nevěrný"
 
-#: ../../include/text.php:1200
-msgid "March"
-msgstr "Března"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Závislý na sexu"
 
-#: ../../include/text.php:1200
-msgid "April"
-msgstr "Dubna"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:288
+#: ../../include/user.php:292
+msgid "Friends"
+msgstr "Přátelé"
 
-#: ../../include/text.php:1200
-msgid "May"
-msgstr "Května"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Přátelé / výhody"
 
-#: ../../include/text.php:1200
-msgid "June"
-msgstr "Června"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Ležérní"
 
-#: ../../include/text.php:1200
-msgid "July"
-msgstr "Července"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Zadaný"
 
-#: ../../include/text.php:1200
-msgid "August"
-msgstr "Srpna"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Ženatý/vdaná"
 
-#: ../../include/text.php:1200
-msgid "September"
-msgstr "Září"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Pomyslně ženatý/vdaná"
 
-#: ../../include/text.php:1200
-msgid "October"
-msgstr "Října"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partneři"
 
-#: ../../include/text.php:1200
-msgid "November"
-msgstr "Listopadu"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Žijící ve společné domácnosti"
 
-#: ../../include/text.php:1200
-msgid "December"
-msgstr "Prosinec"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Zvykové právo"
 
-#: ../../include/text.php:1419
-msgid "bytes"
-msgstr "bytů"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Šťastný"
 
-#: ../../include/text.php:1443 ../../include/text.php:1455
-msgid "Click to open/close"
-msgstr "Klikněte pro otevření/zavření"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Nehledající"
 
-#: ../../include/text.php:1688
-msgid "Select an alternate language"
-msgstr "Vyběr alternativního jazyka"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../include/text.php:1944
-msgid "activity"
-msgstr "aktivita"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Zrazen"
 
-#: ../../include/text.php:1947
-msgid "post"
-msgstr "příspěvek"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Odloučený"
 
-#: ../../include/text.php:2115
-msgid "Item filed"
-msgstr "Položka vyplněna"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Nestálý"
 
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
-msgstr "Friendica Notifikace"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Rozvedený(á)"
 
-#: ../../include/enotify.php:19
-msgid "Thank You,"
-msgstr "Děkujeme, "
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Pomyslně rozvedený"
 
-#: ../../include/enotify.php:21
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrátor"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Ovdovělý(á)"
 
-#: ../../include/enotify.php:40
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Nejistý"
 
-#: ../../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/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Je to složité"
 
-#: ../../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/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Nezajímá"
 
-#: ../../include/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s Vám poslal %2$s."
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Zeptej se mě"
 
-#: ../../include/enotify.php:47
-msgid "a private message"
-msgstr "soukromá zpráva"
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Chyba dekódování uživatelského účtu"
 
-#: ../../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/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: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/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Chyba! Nelze ověřit přezdívku"
 
-#: ../../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 okomentoval na [url=%2$s]%3$s's %4$s[/url]"
+msgid "User '%s' already exists on this server!"
+msgstr "Uživatel '%s' již na tomto serveru existuje!"
 
-#: ../../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/uimport.php:153
+msgid "User creation error"
+msgstr "Chyba vytváření uživatele"
 
-#: ../../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/uimport.php:171
+msgid "User profile creation error"
+msgstr "Chyba vytváření uživatelského účtu"
 
-#: ../../include/enotify.php:117
+#: ../../include/uimport.php:220
 #, 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 "%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: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/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: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/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Klikněte zde pro aktualizaci."
 
-#: ../../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/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: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/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:142
+#: ../../include/conversation.php:207
 #, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Upozornění] %s Vás označil"
+msgid "%1$s poked %2$s"
+msgstr "%1$s šťouchnul %2$s"
 
-#: ../../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/conversation.php:291
+msgid "post/item"
+msgstr "příspěvek/položka"
 
-#: ../../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]Vás označil[/url]."
+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:155
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notify] %s nasdílel nový příspěvek"
+#: ../../include/conversation.php:770
+msgid "remove"
+msgstr "odstranit"
 
-#: ../../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/conversation.php:774
+msgid "Delete Selected Items"
+msgstr "Smazat vybrané položky"
 
-#: ../../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/conversation.php:873
+msgid "Follow Thread"
+msgstr "Následovat vlákno"
 
-#: ../../include/enotify.php:169
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul"
+#: ../../include/conversation.php:874 ../../include/Contact.php:229
+msgid "View Status"
+msgstr "Zobrazit Status"
 
-#: ../../include/enotify.php:170
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s Vás šťouchnul na %2$s"
+#: ../../include/conversation.php:875 ../../include/Contact.php:230
+msgid "View Profile"
+msgstr "Zobrazit Profil"
 
-#: ../../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/conversation.php:876 ../../include/Contact.php:231
+msgid "View Photos"
+msgstr "Zobrazit Fotky"
 
-#: ../../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/conversation.php:877 ../../include/Contact.php:232
+#: ../../include/Contact.php:255
+msgid "Network Posts"
+msgstr "Zobrazit Příspěvky sítě"
 
-#: ../../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/conversation.php:878 ../../include/Contact.php:233
+#: ../../include/Contact.php:255
+msgid "Edit Contact"
+msgstr "Editovat Kontakty"
 
-#: ../../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/conversation.php:879 ../../include/Contact.php:235
+#: ../../include/Contact.php:255
+msgid "Send PM"
+msgstr "Poslat soukromou zprávu"
 
-#: ../../include/enotify.php:199
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Upozornění] Obdrženo přestavení"
+#: ../../include/conversation.php:880 ../../include/Contact.php:228
+msgid "Poke"
+msgstr "Šťouchnout"
 
-#: ../../include/enotify.php:200
+#: ../../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 likes this."
+msgstr "%s se to líbí."
 
-#: ../../include/enotify.php:201
+#: ../../include/conversation.php:942
 #, 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 "%s doesn't like this."
+msgstr "%s se to nelíbí."
 
-#: ../../include/enotify.php:204 ../../include/enotify.php:222
+#: ../../include/conversation.php:947
 #, 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> like this"
+msgstr "<span  %1$s>%2$d lidem</span> se to líbí"
 
-#: ../../include/enotify.php:206
+#: ../../include/conversation.php:950
 #, 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í."
+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:213
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství"
+#: ../../include/conversation.php:964
+msgid "and"
+msgstr "a"
 
-#: ../../include/enotify.php:214
+#: ../../include/conversation.php:970
+#, php-format
+msgid ", and %d other people"
+msgstr ", a %d dalších lidí"
+
+#: ../../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: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 "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:220
-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:221
-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: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/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:584
-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"
@@ -6681,110 +6846,21 @@ msgstr "Nastavení účtu"
 msgid "Manage/Edit Profiles"
 msgstr "Spravovat/Editovat Profily"
 
-#: ../../include/nav.php:173
-msgid "Manage/edit friends and contacts"
-msgstr "Spravovat/upravit přátelé a kontakty"
-
-#: ../../include/nav.php:180
-msgid "Site setup and configuration"
-msgstr "Nastavení webu a konfigurace"
-
-#: ../../include/nav.php:184
-msgid "Navigation"
-msgstr "Navigace"
-
-#: ../../include/nav.php:184
-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/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ě:"
-
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Hudební vkus:"
-
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Knihy, literatura:"
-
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Televize:"
-
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/tanec/kultura/zábava:"
-
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Láska/romance"
-
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Práce/zaměstnání:"
-
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Škola/vzdělávání:"
-
-#: ../../include/bbcode.php:284 ../../include/bbcode.php:917
-#: ../../include/bbcode.php:918
-msgid "Image/photo"
-msgstr "Obrázek/fotografie"
-
-#: ../../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> napsal následující <a href=\"%s\" target=\"_blank\">příspěvek</a>"
+#: ../../include/nav.php:173
+msgid "Manage/edit friends and contacts"
+msgstr "Spravovat/upravit přátelé a kontakty"
 
-#: ../../include/bbcode.php:453
-msgid "<span><b>"
-msgstr "<span><b>"
+#: ../../include/nav.php:180
+msgid "Site setup and configuration"
+msgstr "Nastavení webu a konfigurace"
 
-#: ../../include/bbcode.php:881 ../../include/bbcode.php:901
-msgid "$1 wrote:"
-msgstr "$1 napsal:"
+#: ../../include/nav.php:184
+msgid "Navigation"
+msgstr "Navigace"
 
-#: ../../include/bbcode.php:932 ../../include/bbcode.php:933
-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"
@@ -6862,537 +6938,424 @@ msgstr "Diaspora konektor"
 msgid "Statusnet"
 msgstr "Statusnet"
 
-#: ../../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/datetime.php:290
-msgid "minutes"
-msgstr "minut"
-
-#: ../../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:1964
+#: ../../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:1965
+#: ../../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:33
-msgid "Auto-mention Forums"
-msgstr "Automaticky zmíněná Fóra"
-
-#: ../../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ě"
-
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
-msgstr "Síťové postranní widgety"
-
-#: ../../include/features.php:39
-msgid "Search by Date"
-msgstr "Vyhledávat dle Data"
-
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr "Možnost označit příspěvky dle časového intervalu"
-
-#: ../../include/features.php:40
-msgid "Group Filter"
-msgstr "Skupinový Filtr"
-
-#: ../../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"
-
-#: ../../include/features.php:41
-msgid "Network Filter"
-msgstr "Síťový Filtr"
-
-#: ../../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ě"
-
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
-msgstr "Uložit kritéria vyhledávání pro znovupoužití"
-
-#: ../../include/features.php:47
-msgid "Network Tabs"
-msgstr "Síťové záložky"
-
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
-msgstr "Osobní síťový záložka "
-
-#: ../../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 "
-
-#: ../../include/features.php:49
-msgid "Network New Tab"
-msgstr "Nová záložka síť"
-
-#: ../../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)"
-
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
-msgstr "záložka Síťové sdílené odkazy "
-
-#: ../../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ě"
-
-#: ../../include/features.php:55
-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:56
-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:56
-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:57
-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:57
-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:58
-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:58
-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:59
-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:59
-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:60
-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:61
-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:61
-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:62
-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:62
-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:703
-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:2299
-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:326
-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:3693
-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:3693
-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:4216
-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:4443
-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:174
-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:183
-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/user.php:125
+msgid "Cannot use that email."
+msgstr "Tento e-mail nelze použít."
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuá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 "Autosexual"
-msgstr "Autosexuál"
+#: ../../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 "Abstinent"
-msgstr "Abstinent"
+#: ../../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 "Virgin"
-msgstr "panic/panna"
+#: ../../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 "Deviant"
-msgstr "Deviant"
+#: ../../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 "Fetish"
-msgstr "Fetišista"
+#: ../../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 "Oodles"
-msgstr "Hodně"
+#: ../../include/acl_selectors.php:326
+msgid "Visible to everybody"
+msgstr "Viditelné pro všechny"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Nesexuální"
+#: ../../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 "Single"
-msgstr "Svobodný"
+#: ../../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 "Lonely"
-msgstr "Osamnělý"
+#: ../../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 "Dostupný"
+#: ../../include/bbcode.php:884 ../../include/bbcode.php:904
+msgid "$1 wrote:"
+msgstr "$1 napsal:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Nedostupný"
+#: ../../include/bbcode.php:935 ../../include/bbcode.php:936
+msgid "Encrypted content"
+msgstr "Šifrovaný obsah"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Zamilovaný"
+#: ../../include/oembed.php:174
+msgid "Embedded content"
+msgstr "vložený obsah"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Zabouchnutý"
+#: ../../include/oembed.php:183
+msgid "Embedding disabled"
+msgstr "Vkládání zakázáno"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Seznamující se"
+#: ../../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 "Unfaithful"
-msgstr "Nevěrný"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Defaultní soukromá skrupina pro nové kontakty."
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Závislý na sexu"
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Všichni"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Přátelé / výhody"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "editovat"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Ležérní"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Editovat skupinu"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Zadaný"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Vytvořit novou skupinu"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Ž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 "Imaginarily married"
-msgstr "Pomyslně ženatý/vdaná"
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "následování zastaveno"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partneři"
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
+msgstr "Odstranit kontakt"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Žijící ve společné domácnosti"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Různé"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Zvykové právo"
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "rok"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Šťastný"
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr "měsíc"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Nehledající"
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr "den"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nikdy"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Zrazen"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "méně než před sekundou"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Odloučený"
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr "let"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Nestálý"
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr "měsíců"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Rozvedený(á)"
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "týdnem"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Pomyslně rozvedený"
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "týdny"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Ovdovělý(á)"
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr "dnů"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Nejistý"
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "hodina"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Je to složité"
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "hodin"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Nezajímá"
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "minuta"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Zeptej se mě"
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "minut"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "následování zastaveno"
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr "sekunda"
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr "Odstranit kontakt"
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "sekund"
 
-#: ../../include/dba.php:45
+#: ../../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 8236a6646ff5e35825aeaceb22c43d00ee8080d0..65e95dd1f3e93d401da5c8c69cb55ce04a11e95d 100644 (file)
@@ -60,351 +60,137 @@ $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["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovení stránky pro zobrazení]";
+$a->strings["Contact not found."] = "Kontakt nenalezen.";
+$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["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["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["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["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["Set style"] = "Nastavit styl";
-$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["%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é";
+$a->strings["Plugins"] = "Pluginy";
+$a->strings["Themes"] = "Témata";
+$a->strings["DB updates"] = "Aktualizace databáze";
+$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["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["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["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["Theme settings updated."] = "Nastavení téma zobrazení bylo aktualizováno.";
-$a->strings["Site"] = "Web";
-$a->strings["Users"] = "Uživatelé";
-$a->strings["Plugins"] = "Pluginy";
-$a->strings["Themes"] = "Témata";
-$a->strings["DB updates"] = "Aktualizace databáze";
-$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["Normal Account"] = "Normální účet";
 $a->strings["Soapbox Account"] = "Soapbox účet";
 $a->strings["Community/Celebrity Account"] = "Komunitní účet / Účet celebrity";
@@ -435,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é";
@@ -543,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",
@@ -565,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";
@@ -588,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.";
@@ -606,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";
@@ -631,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["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["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["Save"] = "Uložit";
+$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["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",
@@ -753,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";
@@ -766,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 ";
@@ -777,7 +662,6 @@ $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";
@@ -799,23 +683,104 @@ $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["Additional features"] = "Další funkčnosti";
-$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";
-$a->strings["Missing some important data!"] = "Chybí některé důležité údaje!";
-$a->strings["Failed to connect with email account using the settings provided."] = "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení.";
-$a->strings["Email settings updated."] = "Nastavení e-mailu aktualizována.";
-$a->strings["Features updated"] = "Aktualizované funkčnosti";
-$a->strings["Relocate message has been send to your contacts"] = "Správa o změně umístění byla odeslána vašim kontaktům";
-$a->strings["Passwords do not match. Password unchanged."] = "Hesla se neshodují. Heslo nebylo změněno.";
+$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"] = "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";
+$a->strings["Missing some important data!"] = "Chybí některé důležité údaje!";
+$a->strings["Failed to connect with email account using the settings provided."] = "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení.";
+$a->strings["Email settings updated."] = "Nastavení e-mailu aktualizována.";
+$a->strings["Features updated"] = "Aktualizované funkčnosti";
+$a->strings["Relocate message has been send to your contacts"] = "Správa o změně umístění byla odeslána vašim kontaktům";
+$a->strings["Passwords do not match. Password unchanged."] = "Hesla se neshodují. Heslo nebylo změněno.";
 $a->strings["Empty passwords are not allowed. Password unchanged."] = "Prázdné hesla nejsou povolena. Heslo nebylo změněno.";
 $a->strings["Wrong password."] = "Špatné heslo.";
 $a->strings["Password changed."] = "Heslo bylo změněno.";
@@ -874,6 +839,8 @@ $a->strings["Number of items to display per page when viewed from mobile device:
 $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\"";
@@ -925,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";
@@ -950,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.";
@@ -1018,7 +986,162 @@ $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["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["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["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["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ě.";
+$a->strings["Unable to process image"] = "Obrázek nelze zpracovat ";
+$a->strings["Upload File:"] = "Nahrát soubor:";
+$a->strings["Select a profile:"] = "Vybrat profil:";
+$a->strings["Upload"] = "Nahrát";
+$a->strings["skip this step"] = "přeskočit tento krok ";
+$a->strings["select a photo from your photo albums"] = "Vybrat fotografii z Vašich fotoalb";
+$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["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.";
@@ -1030,189 +1153,16 @@ $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["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["Save to Folder:"] = "Uložit do složky:";
-$a->strings["- select -"] = "- vyber -";
-$a->strings["Invalid profile identifier."] = "Neplatný identifikátor profilu.";
-$a->strings["Profile Visibility Editor"] = "Editor viditelnosti profilu ";
-$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["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["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["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["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["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ě.";
-$a->strings["Unable to process image"] = "Obrázek nelze zpracovat ";
-$a->strings["Upload File:"] = "Nahrát soubor:";
-$a->strings["Select a profile:"] = "Vybrat profil:";
-$a->strings["Upload"] = "Nahrát";
-$a->strings["skip this step"] = "přeskočit tento krok ";
-$a->strings["select a photo from your photo albums"] = "Vybrat fotografii z Vašich fotoalb";
-$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["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["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["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.";
@@ -1220,174 +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["There is no conversation with this id."] = "Nemáme žádnou konverzaci 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["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["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["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["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["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í";
@@ -1401,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";
@@ -1430,232 +1395,59 @@ $a->strings["disturbed"] = "vyrušen";
 $a->strings["frustrated"] = "frustrovaný";
 $a->strings["motivated"] = "motivovaný";
 $a->strings["relaxed"] = "uvolněný";
-$a->strings["surprised"] = "překvapený";
-$a->strings["Monday"] = "Pondělí";
-$a->strings["Tuesday"] = "Úterý";
-$a->strings["Wednesday"] = "Středa";
-$a->strings["Thursday"] = "Čtvrtek";
-$a->strings["Friday"] = "Pátek";
-$a->strings["Saturday"] = "Sobota";
-$a->strings["Sunday"] = "Neděle";
-$a->strings["January"] = "Ledna";
-$a->strings["February"] = "Února";
-$a->strings["March"] = "Března";
-$a->strings["April"] = "Dubna";
-$a->strings["May"] = "Května";
-$a->strings["June"] = "Června";
-$a->strings["July"] = "Července";
-$a->strings["August"] = "Srpna";
-$a->strings["September"] = "Září";
-$a->strings["October"] = "Října";
-$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["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] %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[" 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["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["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=\"_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["<span><b>"] = "<span><b>";
-$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["Diaspora Connector"] = "Diaspora konektor";
-$a->strings["Statusnet"] = "Statusnet";
-$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["%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["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["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["surprised"] = "překvapený";
+$a->strings["Monday"] = "Pondělí";
+$a->strings["Tuesday"] = "Úterý";
+$a->strings["Wednesday"] = "Středa";
+$a->strings["Thursday"] = "Čtvrtek";
+$a->strings["Friday"] = "Pátek";
+$a->strings["Saturday"] = "Sobota";
+$a->strings["Sunday"] = "Neděle";
+$a->strings["January"] = "Ledna";
+$a->strings["February"] = "Února";
+$a->strings["March"] = "Března";
+$a->strings["April"] = "Dubna";
+$a->strings["May"] = "Května";
+$a->strings["June"] = "Června";
+$a->strings["July"] = "Července";
+$a->strings["August"] = "Srpna";
+$a->strings["September"] = "Září";
+$a->strings["October"] = "Října";
+$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["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["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 ";
@@ -1696,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ý";
@@ -1717,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 ef6b662d75f063a660c8537017283ea353ea54e2..22d339fab8f822a4e6a4c67e1f60c23e9f4a470b 100644 (file)
@@ -13,9 +13,9 @@ 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-05-10 01:56+0000\n"
-"Last-Translator: tomamplius <thomas@lgy.fr>\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"
@@ -33,19 +33,20 @@ msgid "Private Message"
 msgstr "Message privé"
 
 #: ../../object/Item.php:117 ../../mod/editpost.php:109
-#: ../../mod/content.php:727 ../../mod/settings.php:670
+#: ../../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:612
+#: ../../mod/content.php:739 ../../mod/photos.php:1649
+#: ../../include/conversation.php:612
 msgid "Select"
 msgstr "Sélectionner"
 
-#: ../../object/Item.php:127 ../../mod/admin.php:908 ../../mod/content.php:438
+#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../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
+#: ../../mod/settings.php:672 ../../mod/group.php:171
+#: ../../mod/photos.php:1650 ../../include/conversation.php:613
 msgid "Delete"
 msgstr "Supprimer"
 
@@ -138,7 +139,7 @@ msgstr "%s de %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
+#: ../../mod/photos.php:1604 ../../mod/photos.php:1692
 msgid "Comment"
 msgstr "Commenter"
 
@@ -146,7 +147,7 @@ msgstr "Commenter"
 #: ../../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
+#: ../../include/conversation.php:690 ../../include/conversation.php:1107
 msgid "Please wait"
 msgstr "Patientez"
 
@@ -158,7 +159,7 @@ msgstr[0] "%d commentaire"
 msgstr[1] "%d commentaires"
 
 #: ../../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] ""
@@ -171,7 +172,7 @@ msgstr "montrer plus"
 
 #: ../../object/Item.php:655 ../../mod/content.php:706
 #: ../../mod/photos.php:1558 ../../mod/photos.php:1602
-#: ../../mod/photos.php:1685
+#: ../../mod/photos.php:1690
 msgid "This is you"
 msgstr "C'est vous"
 
@@ -189,7 +190,7 @@ msgstr "C'est vous"
 #: ../../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/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"
@@ -229,8 +230,8 @@ msgstr "Vidéo"
 
 #: ../../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:1606 ../../mod/photos.php:1694
+#: ../../include/conversation.php:1124
 msgid "Preview"
 msgstr "Aperçu"
 
@@ -258,8 +259,8 @@ msgstr "Permission refusée"
 #: ../../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/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:134
@@ -271,7 +272,7 @@ msgstr "Permission refusée"
 #: ../../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
+#: ../../include/items.php:4390
 msgid "Permission denied."
 msgstr "Permission refusée."
 
@@ -416,7 +417,7 @@ msgid "Last likes"
 msgstr "Dernièrement aimé"
 
 #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
-#: ../../include/conversation.php:246 ../../include/text.php:1940
+#: ../../include/conversation.php:246 ../../include/text.php:1953
 msgid "event"
 msgstr "évènement"
 
@@ -432,7 +433,7 @@ msgstr "le statut"
 #: ../../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
+#: ../../include/text.php:1955 ../../include/diaspora.php:1908
 msgid "photo"
 msgstr "photo"
 
@@ -451,7 +452,7 @@ msgstr "Dernières photos"
 #: ../../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
+#: ../../mod/photos.php:1756 ../../mod/photos.php:1768
 msgid "Contact Photos"
 msgstr "Photos du contact"
 
@@ -494,7 +495,7 @@ msgstr "Inviter des amis"
 
 #: ../../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
+#: ../../mod/admin.php:1007 ../../mod/admin.php:1226 ../../mod/settings.php:85
 #: ../../include/nav.php:169
 msgid "Settings"
 msgstr "Réglages"
@@ -573,7 +574,7 @@ msgid "Set colour scheme"
 msgstr "Choisir le schéma de couleurs"
 
 #: ../../view/theme/clean/config.php:54 ../../include/user.php:246
-#: ../../include/text.php:1676
+#: ../../include/text.php:1689
 msgid "default"
 msgstr "défaut"
 
@@ -844,9 +845,9 @@ msgid "Public access denied."
 msgstr "Accès public refusé."
 
 #: ../../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/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166
 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15
-#: ../../include/items.php:4177
+#: ../../include/items.php:4194
 msgid "Item not found."
 msgstr "Élément introuvable."
 
@@ -899,7 +900,7 @@ msgstr "Aucune extension/greffon/application installée"
 msgid "%1$s welcomes %2$s"
 msgstr "%1$s accueille %2$s"
 
-#: ../../mod/register.php:92 ../../mod/admin.php:735 ../../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"
@@ -954,25 +955,25 @@ msgstr "Inclure votre profil dans l'annuaire des membres?"
 
 #: ../../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
+#: ../../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: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/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"
@@ -985,7 +986,7 @@ msgstr "L'inscription à ce site se fait uniquement sur invitation."
 msgid "Your invitation ID: "
 msgstr "Votre ID d'invitation: "
 
-#: ../../mod/register.php:265 ../../mod/admin.php:573
+#: ../../mod/register.php:265 ../../mod/admin.php:575
 msgid "Registration"
 msgstr "Inscription"
 
@@ -1260,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:1084
+#: ../../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:1088
+#: ../../include/conversation.php:1093
 msgid "Insert web link"
 msgstr "Insérer lien web"
 
@@ -1466,11 +1467,11 @@ msgstr "Voulez-vous vraiment supprimer cette suggestion ?"
 
 #: ../../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/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:1122
-#: ../../include/items.php:4221
+#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1127
+#: ../../include/items.php:4238
 msgid "Cancel"
 msgstr "Annuler"
 
@@ -1888,419 +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:571
+#: ../../mod/admin.php:102 ../../mod/admin.php:573
 msgid "Site"
 msgstr "Site"
 
-#: ../../mod/admin.php:102 ../../mod/admin.php:899 ../../mod/admin.php:914
+#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916
 msgid "Users"
 msgstr "Utilisateurs"
 
-#: ../../mod/admin.php:103 ../../mod/admin.php:1003 ../../mod/admin.php:1045
-#: ../../mod/settings.php:56
+#: ../../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:1211 ../../mod/admin.php:1245
+#: ../../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:1332
+#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345
 msgid "Logs"
 msgstr "Journaux"
 
-#: ../../mod/admin.php:125 ../../include/nav.php:180
+#: ../../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:853
+#: ../../mod/admin.php:188 ../../mod/admin.php:855
 msgid "Normal Account"
 msgstr "Compte normal"
 
-#: ../../mod/admin.php:188 ../../mod/admin.php:854
+#: ../../mod/admin.php:189 ../../mod/admin.php:856
 msgid "Soapbox Account"
 msgstr "Compte \"boîte à savon\""
 
-#: ../../mod/admin.php:189 ../../mod/admin.php:855
+#: ../../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:856
+#: ../../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: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
+#: ../../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:822
+#: ../../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:408
+#: ../../mod/admin.php:531 ../../mod/contacts.php:408
 msgid "Never"
 msgstr "Jamais"
 
-#: ../../mod/admin.php:530
+#: ../../mod/admin.php:532
 msgid "At post arrival"
 msgstr "A l'arrivé d'une publication"
 
-#: ../../mod/admin.php:531 ../../include/contact_selectors.php:56
+#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56
 msgid "Frequently"
 msgstr "Fréquemment"
 
-#: ../../mod/admin.php:532 ../../include/contact_selectors.php:57
+#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57
 msgid "Hourly"
 msgstr "Toutes les heures"
 
-#: ../../mod/admin.php:533 ../../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:534 ../../include/contact_selectors.php:59
+#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59
 msgid "Daily"
 msgstr "Chaque jour"
 
-#: ../../mod/admin.php:539
+#: ../../mod/admin.php:541
 msgid "Multi user instance"
 msgstr "Instance multi-utilisateurs"
 
-#: ../../mod/admin.php:557
+#: ../../mod/admin.php:559
 msgid "Closed"
 msgstr "Fermé"
 
-#: ../../mod/admin.php:558
+#: ../../mod/admin.php:560
 msgid "Requires approval"
 msgstr "Demande une apptrobation"
 
-#: ../../mod/admin.php:559
+#: ../../mod/admin.php:561
 msgid "Open"
 msgstr "Ouvert"
 
-#: ../../mod/admin.php:563
+#: ../../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:564
+#: ../../mod/admin.php:566
 msgid "Force all links to use SSL"
 msgstr "Forcer tous les liens à utiliser SSL"
 
-#: ../../mod/admin.php:565
+#: ../../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: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
+#: ../../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 "Sauvegarder les paramétres"
 
-#: ../../mod/admin.php:574
+#: ../../mod/admin.php:576
 msgid "File upload"
 msgstr "Téléversement de fichier"
 
-#: ../../mod/admin.php:575
+#: ../../mod/admin.php:577
 msgid "Policies"
 msgstr "Politiques"
 
-#: ../../mod/admin.php:576
+#: ../../mod/admin.php:578
 msgid "Advanced"
 msgstr "Avancé"
 
-#: ../../mod/admin.php:577
+#: ../../mod/admin.php:579
 msgid "Performance"
 msgstr "Performance"
 
-#: ../../mod/admin.php:578
+#: ../../mod/admin.php:580
 msgid ""
 "Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: ../../mod/admin.php:581
+#: ../../mod/admin.php:583
 msgid "Site name"
 msgstr "Nom du site"
 
-#: ../../mod/admin.php:582
+#: ../../mod/admin.php:584
 msgid "Banner/Logo"
 msgstr "Bannière/Logo"
 
-#: ../../mod/admin.php:583
+#: ../../mod/admin.php:585
 msgid "Additional Info"
 msgstr "Informations supplémentaires"
 
-#: ../../mod/admin.php:583
+#: ../../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:584
+#: ../../mod/admin.php:586
 msgid "System language"
 msgstr "Langue du système"
 
-#: ../../mod/admin.php:585
+#: ../../mod/admin.php:587
 msgid "System theme"
 msgstr "Thème du système"
 
-#: ../../mod/admin.php:585
+#: ../../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é au niveau du profile utilisateur - <a href='#' id='cnftheme'>changer les réglages du thème</a>"
 
-#: ../../mod/admin.php:586
+#: ../../mod/admin.php:588
 msgid "Mobile system theme"
 msgstr "Thème mobile"
 
-#: ../../mod/admin.php:586
+#: ../../mod/admin.php:588
 msgid "Theme for mobile devices"
 msgstr "Thème pour les terminaux mobiles"
 
-#: ../../mod/admin.php:587
+#: ../../mod/admin.php:589
 msgid "SSL link policy"
 msgstr "Politique SSL pour les liens"
 
-#: ../../mod/admin.php:587
+#: ../../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'utilisation de SSL"
 
-#: ../../mod/admin.php:588
+#: ../../mod/admin.php:590
 msgid "Old style 'Share'"
 msgstr ""
 
-#: ../../mod/admin.php:588
+#: ../../mod/admin.php:590
 msgid "Deactivates the bbcode element 'share' for repeating items."
 msgstr ""
 
-#: ../../mod/admin.php:589
+#: ../../mod/admin.php:591
 msgid "Hide help entry from navigation menu"
 msgstr "Cacher l'aide du menu de navigation"
 
-#: ../../mod/admin.php:589
+#: ../../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 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:590
+#: ../../mod/admin.php:592
 msgid "Single user instance"
 msgstr "Instance mono-utilisateur"
 
-#: ../../mod/admin.php:590
+#: ../../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:591
+#: ../../mod/admin.php:593
 msgid "Maximum image size"
 msgstr "Taille maximale des images"
 
-#: ../../mod/admin.php:591
+#: ../../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:592
+#: ../../mod/admin.php:594
 msgid "Maximum image length"
 msgstr "Longueur maximale des images"
 
-#: ../../mod/admin.php:592
+#: ../../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:593
+#: ../../mod/admin.php:595
 msgid "JPEG image quality"
 msgstr "Qualité JPEG des images"
 
-#: ../../mod/admin.php:593
+#: ../../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:595
+#: ../../mod/admin.php:597
 msgid "Register policy"
 msgstr "Politique d'inscription"
 
-#: ../../mod/admin.php:596
+#: ../../mod/admin.php:598
 msgid "Maximum Daily Registrations"
 msgstr "Inscriptions maximum par jour"
 
-#: ../../mod/admin.php:596
+#: ../../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:597
+#: ../../mod/admin.php:599
 msgid "Register text"
 msgstr "Texte d'inscription"
 
-#: ../../mod/admin.php:597
+#: ../../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:598
+#: ../../mod/admin.php:600
 msgid "Accounts abandoned after x days"
 msgstr "Les comptes sont abandonnés après x jours"
 
-#: ../../mod/admin.php:598
+#: ../../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:599
+#: ../../mod/admin.php:601
 msgid "Allowed friend domains"
 msgstr "Domaines autorisés"
 
-#: ../../mod/admin.php:599
+#: ../../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:600
+#: ../../mod/admin.php:602
 msgid "Allowed email domains"
 msgstr "Domaines courriel autorisés"
 
-#: ../../mod/admin.php:600
+#: ../../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:601
+#: ../../mod/admin.php:603
 msgid "Block public"
 msgstr "Interdire la publication globale"
 
-#: ../../mod/admin.php:601
+#: ../../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:602
+#: ../../mod/admin.php:604
 msgid "Force publish"
 msgstr "Forcer la publication globale"
 
-#: ../../mod/admin.php:602
+#: ../../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:603
+#: ../../mod/admin.php:605
 msgid "Global directory update URL"
 msgstr "URL de mise-à-jour de l'annuaire global"
 
-#: ../../mod/admin.php:603
+#: ../../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:604
+#: ../../mod/admin.php:606
 msgid "Allow threaded items"
 msgstr "autoriser le suivi des éléments par fil conducteur"
 
-#: ../../mod/admin.php:604
+#: ../../mod/admin.php:606
 msgid "Allow infinite level threading for items on this site."
 msgstr "Permettre une imbrication infinie des commentaires."
 
-#: ../../mod/admin.php:605
+#: ../../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:605
+#: ../../mod/admin.php:607
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
 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:606
+#: ../../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:606
+#: ../../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 billet/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité."
 
-#: ../../mod/admin.php:607
+#: ../../mod/admin.php:609
 msgid "Disallow public access to addons listed in the apps menu."
 msgstr "Interdire l'acces public pour les extentions listées dans le menu apps."
 
-#: ../../mod/admin.php:607
+#: ../../mod/admin.php:609
 msgid ""
 "Checking this box will restrict addons listed in the apps menu to members "
 "only."
 msgstr ""
 
-#: ../../mod/admin.php:608
+#: ../../mod/admin.php:610
 msgid "Don't embed private images in posts"
 msgstr ""
 
-#: ../../mod/admin.php:608
+#: ../../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 "
@@ -2308,495 +2309,495 @@ msgid ""
 "while."
 msgstr ""
 
-#: ../../mod/admin.php:609
+#: ../../mod/admin.php:611
 msgid "Allow Users to set remote_self"
 msgstr "Autoriser les utilisateurs à définir remote_self"
 
-#: ../../mod/admin.php:609
+#: ../../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:610
+#: ../../mod/admin.php:612
 msgid "Block multiple registrations"
 msgstr "Interdire les inscriptions multiples"
 
-#: ../../mod/admin.php:610
+#: ../../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:611
+#: ../../mod/admin.php:613
 msgid "OpenID support"
 msgstr "Support OpenID"
 
-#: ../../mod/admin.php:611
+#: ../../mod/admin.php:613
 msgid "OpenID support for registration and logins."
 msgstr "Supporter OpenID pour les inscriptions et connexions."
 
-#: ../../mod/admin.php:612
+#: ../../mod/admin.php:614
 msgid "Fullname check"
 msgstr "Vérification du \"Prénom Nom\""
 
-#: ../../mod/admin.php:612
+#: ../../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:613
+#: ../../mod/admin.php:615
 msgid "UTF-8 Regular expressions"
 msgstr "Regex UTF-8"
 
-#: ../../mod/admin.php:613
+#: ../../mod/admin.php:615
 msgid "Use PHP UTF8 regular expressions"
 msgstr "Utiliser les expressions rationnelles de PHP en UTF8"
 
-#: ../../mod/admin.php:614
+#: ../../mod/admin.php:616
 msgid "Show Community Page"
 msgstr "Montrer la \"Place publique\""
 
-#: ../../mod/admin.php:614
+#: ../../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:615
+#: ../../mod/admin.php:617
 msgid "Enable OStatus support"
 msgstr "Activer le support d'OStatus"
 
-#: ../../mod/admin.php:615
+#: ../../mod/admin.php:617
 msgid ""
 "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
 "communications in OStatus are public, so privacy warnings will be "
 "occasionally displayed."
 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:616
+#: ../../mod/admin.php:618
 msgid "OStatus conversation completion interval"
 msgstr ""
 
-#: ../../mod/admin.php:616
+#: ../../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:617
+#: ../../mod/admin.php:619
 msgid "Enable Diaspora support"
 msgstr "Activer le support de Diaspora"
 
-#: ../../mod/admin.php:617
+#: ../../mod/admin.php:619
 msgid "Provide built-in Diaspora network compatibility."
 msgstr "Fournir une compatibilité Diaspora intégrée."
 
-#: ../../mod/admin.php:618
+#: ../../mod/admin.php:620
 msgid "Only allow Friendica contacts"
 msgstr "N'autoriser que les contacts Friendica"
 
-#: ../../mod/admin.php:618
+#: ../../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:619
+#: ../../mod/admin.php:621
 msgid "Verify SSL"
 msgstr "Vérifier SSL"
 
-#: ../../mod/admin.php:619
+#: ../../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:620
+#: ../../mod/admin.php:622
 msgid "Proxy user"
 msgstr "Utilisateur du proxy"
 
-#: ../../mod/admin.php:621
+#: ../../mod/admin.php:623
 msgid "Proxy URL"
 msgstr "URL du proxy"
 
-#: ../../mod/admin.php:622
+#: ../../mod/admin.php:624
 msgid "Network timeout"
 msgstr "Dépassement du délai d'attente du réseau"
 
-#: ../../mod/admin.php:622
+#: ../../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:623
+#: ../../mod/admin.php:625
 msgid "Delivery interval"
 msgstr "Intervalle de transmission"
 
-#: ../../mod/admin.php:623
+#: ../../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:624
+#: ../../mod/admin.php:626
 msgid "Poll interval"
 msgstr "Intervalle de réception"
 
-#: ../../mod/admin.php:624
+#: ../../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:625
+#: ../../mod/admin.php:627
 msgid "Maximum Load Average"
 msgstr "Plafond de la charge moyenne"
 
-#: ../../mod/admin.php:625
+#: ../../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:627
+#: ../../mod/admin.php:629
 msgid "Use MySQL full text engine"
 msgstr "Utiliser le moteur de recherche plein texte de MySQL"
 
-#: ../../mod/admin.php:627
+#: ../../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:628
+#: ../../mod/admin.php:630
 msgid "Suppress Language"
 msgstr "Supprimer un langage"
 
-#: ../../mod/admin.php:628
+#: ../../mod/admin.php:630
 msgid "Suppress language information in meta information about a posting."
 msgstr ""
 
-#: ../../mod/admin.php:629
+#: ../../mod/admin.php:631
 msgid "Path to item cache"
 msgstr "Chemin vers le cache des objets."
 
-#: ../../mod/admin.php:630
+#: ../../mod/admin.php:632
 msgid "Cache duration in seconds"
 msgstr "Durée du cache en secondes"
 
-#: ../../mod/admin.php:630
+#: ../../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:631
+#: ../../mod/admin.php:633
 msgid "Path for lock file"
 msgstr "Chemin vers le ficher de verrouillage"
 
-#: ../../mod/admin.php:632
+#: ../../mod/admin.php:634
 msgid "Temp path"
 msgstr "Chemin des fichiers temporaires"
 
-#: ../../mod/admin.php:633
+#: ../../mod/admin.php:635
 msgid "Base path to installation"
 msgstr "Chemin de base de l'installation"
 
-#: ../../mod/admin.php:635
+#: ../../mod/admin.php:637
 msgid "New base url"
 msgstr ""
 
-#: ../../mod/admin.php:653
+#: ../../mod/admin.php:655
 msgid "Update has been marked successful"
 msgstr "Mise-à-jour validée comme 'réussie'"
 
-#: ../../mod/admin.php:663
+#: ../../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:666
+#: ../../mod/admin.php:668
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr "Mise-à-jour %s appliquée avec succès."
 
-#: ../../mod/admin.php:670
+#: ../../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:673
+#: ../../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:688
+#: ../../mod/admin.php:690
 msgid "No failed updates."
 msgstr "Pas de mises-à-jour échouées."
 
-#: ../../mod/admin.php:692
+#: ../../mod/admin.php:694
 msgid "Failed Updates"
 msgstr "Mises-à-jour échouées"
 
-#: ../../mod/admin.php:693
+#: ../../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:694
+#: ../../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:695
+#: ../../mod/admin.php:697
 msgid "Attempt to execute this update step automatically"
 msgstr "Tenter d'éxecuter cette étape automatiquement"
 
-#: ../../mod/admin.php:741
+#: ../../mod/admin.php:743
 msgid "Registration successful. Email send to user"
 msgstr "Souscription réussi. Mail envoyé à l'utilisateur"
 
-#: ../../mod/admin.php:751
+#: ../../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:758
+#: ../../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:797
+#: ../../mod/admin.php:799
 #, php-format
 msgid "User '%s' deleted"
 msgstr "Utilisateur '%s' supprimé"
 
-#: ../../mod/admin.php:805
+#: ../../mod/admin.php:807
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "Utilisateur '%s' débloqué"
 
-#: ../../mod/admin.php:805
+#: ../../mod/admin.php:807
 #, php-format
 msgid "User '%s' blocked"
 msgstr "Utilisateur '%s' bloqué"
 
-#: ../../mod/admin.php:900
+#: ../../mod/admin.php:902
 msgid "Add User"
 msgstr "Ajouter l'utilisateur"
 
-#: ../../mod/admin.php:901
+#: ../../mod/admin.php:903
 msgid "select all"
 msgstr "tout sélectionner"
 
-#: ../../mod/admin.php:902
+#: ../../mod/admin.php:904
 msgid "User registrations waiting for confirm"
 msgstr "Inscriptions d'utilisateurs en attente de confirmation"
 
-#: ../../mod/admin.php:903
+#: ../../mod/admin.php:905
 msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: ../../mod/admin.php:904
+#: ../../mod/admin.php:906
 msgid "Request date"
 msgstr "Date de la demande"
 
-#: ../../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
+#: ../../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:904 ../../mod/admin.php:916 ../../mod/admin.php:917
-#: ../../mod/admin.php:932 ../../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:905
+#: ../../mod/admin.php:907
 msgid "No registrations."
 msgstr "Pas d'inscriptions."
 
-#: ../../mod/admin.php:906 ../../mod/notifications.php:161
+#: ../../mod/admin.php:908 ../../mod/notifications.php:161
 #: ../../mod/notifications.php:208
 msgid "Approve"
 msgstr "Approuver"
 
-#: ../../mod/admin.php:907
+#: ../../mod/admin.php:909
 msgid "Deny"
 msgstr "Rejetter"
 
-#: ../../mod/admin.php:909 ../../mod/contacts.php:431
+#: ../../mod/admin.php:911 ../../mod/contacts.php:431
 #: ../../mod/contacts.php:490 ../../mod/contacts.php:700
 msgid "Block"
 msgstr "Bloquer"
 
-#: ../../mod/admin.php:910 ../../mod/contacts.php:431
+#: ../../mod/admin.php:912 ../../mod/contacts.php:431
 #: ../../mod/contacts.php:490 ../../mod/contacts.php:700
 msgid "Unblock"
 msgstr "Débloquer"
 
-#: ../../mod/admin.php:911
+#: ../../mod/admin.php:913
 msgid "Site admin"
 msgstr "Administration du Site"
 
-#: ../../mod/admin.php:912
+#: ../../mod/admin.php:914
 msgid "Account expired"
 msgstr "Compte expiré"
 
-#: ../../mod/admin.php:915
+#: ../../mod/admin.php:917
 msgid "New User"
 msgstr "Nouvel utilisateur"
 
-#: ../../mod/admin.php:916 ../../mod/admin.php:917
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
 msgid "Register date"
 msgstr "Date d'inscription"
 
-#: ../../mod/admin.php:916 ../../mod/admin.php:917
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
 msgid "Last login"
 msgstr "Dernière connexion"
 
-#: ../../mod/admin.php:916 ../../mod/admin.php:917
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
 msgid "Last item"
 msgstr "Dernier élément"
 
-#: ../../mod/admin.php:916
+#: ../../mod/admin.php:918
 msgid "Deleted since"
 msgstr ""
 
-#: ../../mod/admin.php:917 ../../mod/settings.php:35
+#: ../../mod/admin.php:919 ../../mod/settings.php:36
 msgid "Account"
 msgstr "Compte"
 
-#: ../../mod/admin.php:919
+#: ../../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:920
+#: ../../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:930
+#: ../../mod/admin.php:932
 msgid "Name of the new user."
 msgstr "Nom du nouvel utilisateur."
 
-#: ../../mod/admin.php:931
+#: ../../mod/admin.php:933
 msgid "Nickname"
 msgstr "Pseudo"
 
-#: ../../mod/admin.php:931
+#: ../../mod/admin.php:933
 msgid "Nickname of the new user."
 msgstr "Pseudo du nouvel utilisateur."
 
-#: ../../mod/admin.php:932
+#: ../../mod/admin.php:934
 msgid "Email address of the new user."
 msgstr "Adresse mail du nouvel utilisateur."
 
-#: ../../mod/admin.php:965
+#: ../../mod/admin.php:967
 #, php-format
 msgid "Plugin %s disabled."
 msgstr "Extension %s désactivée."
 
-#: ../../mod/admin.php:969
+#: ../../mod/admin.php:971
 #, php-format
 msgid "Plugin %s enabled."
 msgstr "Extension %s activée."
 
-#: ../../mod/admin.php:979 ../../mod/admin.php:1182
+#: ../../mod/admin.php:981 ../../mod/admin.php:1195
 msgid "Disable"
 msgstr "Désactiver"
 
-#: ../../mod/admin.php:981 ../../mod/admin.php:1184
+#: ../../mod/admin.php:983 ../../mod/admin.php:1197
 msgid "Enable"
 msgstr "Activer"
 
-#: ../../mod/admin.php:1004 ../../mod/admin.php:1212
+#: ../../mod/admin.php:1006 ../../mod/admin.php:1225
 msgid "Toggle"
 msgstr "Activer/Désactiver"
 
-#: ../../mod/admin.php:1012 ../../mod/admin.php:1222
+#: ../../mod/admin.php:1014 ../../mod/admin.php:1235
 msgid "Author: "
 msgstr "Auteur: "
 
-#: ../../mod/admin.php:1013 ../../mod/admin.php:1223
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1236
 msgid "Maintainer: "
 msgstr "Mainteneur: "
 
-#: ../../mod/admin.php:1142
+#: ../../mod/admin.php:1155
 msgid "No themes found."
 msgstr "Aucun thème trouvé."
 
-#: ../../mod/admin.php:1204
+#: ../../mod/admin.php:1217
 msgid "Screenshot"
 msgstr "Capture d'écran"
 
-#: ../../mod/admin.php:1250
+#: ../../mod/admin.php:1263
 msgid "[Experimental]"
 msgstr "[Expérimental]"
 
-#: ../../mod/admin.php:1251
+#: ../../mod/admin.php:1264
 msgid "[Unsupported]"
 msgstr "[Non supporté]"
 
-#: ../../mod/admin.php:1278
+#: ../../mod/admin.php:1291
 msgid "Log settings updated."
 msgstr "Réglages des journaux mis-à-jour."
 
-#: ../../mod/admin.php:1334
+#: ../../mod/admin.php:1347
 msgid "Clear"
 msgstr "Effacer"
 
-#: ../../mod/admin.php:1340
+#: ../../mod/admin.php:1353
 msgid "Enable Debugging"
 msgstr "Activer le déboggage"
 
-#: ../../mod/admin.php:1341
+#: ../../mod/admin.php:1354
 msgid "Log file"
 msgstr "Fichier de journaux"
 
-#: ../../mod/admin.php:1341
+#: ../../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:1342
+#: ../../mod/admin.php:1355
 msgid "Log level"
 msgstr "Niveau de journalisaton"
 
-#: ../../mod/admin.php:1391 ../../mod/contacts.php:487
+#: ../../mod/admin.php:1404 ../../mod/contacts.php:487
 msgid "Update now"
 msgstr "Mettre à jour"
 
-#: ../../mod/admin.php:1392
+#: ../../mod/admin.php:1405
 msgid "Close"
 msgstr "Fermer"
 
-#: ../../mod/admin.php:1398
+#: ../../mod/admin.php:1411
 msgid "FTP Host"
 msgstr "Hôte FTP"
 
-#: ../../mod/admin.php:1399
+#: ../../mod/admin.php:1412
 msgid "FTP Path"
 msgstr "Chemin FTP"
 
-#: ../../mod/admin.php:1400
+#: ../../mod/admin.php:1413
 msgid "FTP User"
 msgstr "Utilisateur FTP"
 
-#: ../../mod/admin.php:1401
+#: ../../mod/admin.php:1414
 msgid "FTP Password"
 msgstr "Mot de passe FTP"
 
-#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:938
-#: ../../include/text.php:939 ../../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"
 
@@ -2827,75 +2828,75 @@ msgstr "Élément introuvable"
 msgid "Edit post"
 msgstr "Éditer le billet"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1085
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1090
 msgid "upload photo"
 msgstr "envoi image"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1086
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1091
 msgid "Attach file"
 msgstr "Joindre fichier"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1087
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1092
 msgid "attach file"
 msgstr "ajout fichier"
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1089
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1094
 msgid "web link"
 msgstr "lien web"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1090
+#: ../../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:1091
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1096
 msgid "video link"
 msgstr "lien vidéo"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1092
+#: ../../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:1093
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1098
 msgid "audio link"
 msgstr "lien audio"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1094
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1099
 msgid "Set your location"
 msgstr "Définir votre localisation"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1095
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1100
 msgid "set location"
 msgstr "spéc. localisation"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1096
+#: ../../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:1097
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1102
 msgid "clear location"
 msgstr "supp. localisation"
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1103
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1108
 msgid "Permission settings"
 msgstr "Réglages des permissions"
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1112
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1117
 msgid "CC: email addresses"
 msgstr "CC: adresses de courriel"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1113
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1118
 msgid "Public post"
 msgstr "Billet publique"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1099
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1104
 msgid "Set title"
 msgstr "Définir un titre"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1101
+#: ../../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:1115
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1120
 msgid "Example: bob@example.com, mary@example.com"
 msgstr "Exemple: bob@exemple.com, mary@exemple.com"
 
@@ -3066,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:941
+#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:954
 msgid "Save"
 msgstr "Sauver"
 
@@ -3199,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:3686
+#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703
 msgid "[Name Withheld]"
 msgstr "[Nom non-publié]"
 
@@ -3251,7 +3252,7 @@ msgstr "Friendica"
 msgid "StatusNet/Federated Social Web"
 msgstr "StatusNet/Federated Social Web"
 
-#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:730
+#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731
 #: ../../include/contact_selectors.php:80
 msgid "Diaspora"
 msgstr "Diaspora"
@@ -3589,609 +3590,617 @@ msgstr "Éditer le contact"
 msgid "Search your contacts"
 msgstr "Rechercher dans vos contacts"
 
-#: ../../mod/contacts.php:699 ../../mod/settings.php:131
-#: ../../mod/settings.php:634
+#: ../../mod/contacts.php:699 ../../mod/settings.php:132
+#: ../../mod/settings.php:635
 msgid "Update"
 msgstr "Mises-à-jour"
 
-#: ../../mod/settings.php:28 ../../mod/photos.php:80
+#: ../../mod/settings.php:29 ../../mod/photos.php:80
 msgid "everybody"
 msgstr "tout le monde"
 
-#: ../../mod/settings.php:40
+#: ../../mod/settings.php:41
 msgid "Additional features"
 msgstr "Fonctions supplémentaires"
 
-#: ../../mod/settings.php:45
+#: ../../mod/settings.php:46
 msgid "Display"
 msgstr "Afficher"
 
-#: ../../mod/settings.php:51 ../../mod/settings.php:774
+#: ../../mod/settings.php:52 ../../mod/settings.php:775
 msgid "Social Networks"
 msgstr "Réseaux sociaux"
 
-#: ../../mod/settings.php:61 ../../include/nav.php:167
+#: ../../mod/settings.php:62 ../../include/nav.php:167
 msgid "Delegations"
 msgstr "Délégations"
 
-#: ../../mod/settings.php:66
+#: ../../mod/settings.php:67
 msgid "Connected apps"
 msgstr "Applications connectées"
 
-#: ../../mod/settings.php:71 ../../mod/uexport.php:85
+#: ../../mod/settings.php:72 ../../mod/uexport.php:85
 msgid "Export personal data"
 msgstr "Exporter"
 
-#: ../../mod/settings.php:76
+#: ../../mod/settings.php:77
 msgid "Remove account"
 msgstr "Supprimer le compte"
 
-#: ../../mod/settings.php:128
+#: ../../mod/settings.php:129
 msgid "Missing some important data!"
 msgstr "Il manque certaines informations importantes!"
 
-#: ../../mod/settings.php:237
+#: ../../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:242
+#: ../../mod/settings.php:243
 msgid "Email settings updated."
 msgstr "Réglages de courriel mis-à-jour."
 
-#: ../../mod/settings.php:257
+#: ../../mod/settings.php:258
 msgid "Features updated"
 msgstr "Fonctionnalités mises à jour"
 
-#: ../../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 "Les mots de passe ne correspondent pas. Aucun changement appliqué."
 
-#: ../../mod/settings.php:337
+#: ../../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:345
+#: ../../mod/settings.php:346
 msgid "Wrong password."
 msgstr "Mauvais mot de passe."
 
-#: ../../mod/settings.php:356
+#: ../../mod/settings.php:357
 msgid "Password changed."
 msgstr "Mots de passe changés."
 
-#: ../../mod/settings.php:358
+#: ../../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:423
+#: ../../mod/settings.php:424
 msgid " Please use a shorter name."
 msgstr " Merci d'utiliser un nom plus court."
 
-#: ../../mod/settings.php:425
+#: ../../mod/settings.php:426
 msgid " Name too short."
 msgstr " Nom trop court."
 
-#: ../../mod/settings.php:434
+#: ../../mod/settings.php:435
 msgid "Wrong Password"
 msgstr "Mauvais mot de passe"
 
-#: ../../mod/settings.php:439
+#: ../../mod/settings.php:440
 msgid " Not valid email."
 msgstr " Email invalide."
 
-#: ../../mod/settings.php:445
+#: ../../mod/settings.php:446
 msgid " Cannot change to that email."
 msgstr " Impossible de changer pour cet email."
 
-#: ../../mod/settings.php:500
+#: ../../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:504
+#: ../../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:534
+#: ../../mod/settings.php:535
 msgid "Settings updated."
 msgstr "Réglages mis à jour."
 
-#: ../../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 "Ajouter une application"
 
-#: ../../mod/settings.php:611 ../../mod/settings.php:637
+#: ../../mod/settings.php:612 ../../mod/settings.php:638
 msgid "Consumer Key"
 msgstr "Clé utilisateur"
 
-#: ../../mod/settings.php:612 ../../mod/settings.php:638
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
 msgid "Consumer Secret"
 msgstr "Secret utilisateur"
 
-#: ../../mod/settings.php:613 ../../mod/settings.php:639
+#: ../../mod/settings.php:614 ../../mod/settings.php:640
 msgid "Redirect"
 msgstr "Rediriger"
 
-#: ../../mod/settings.php:614 ../../mod/settings.php:640
+#: ../../mod/settings.php:615 ../../mod/settings.php:641
 msgid "Icon url"
 msgstr "URL de l'icône"
 
-#: ../../mod/settings.php:625
+#: ../../mod/settings.php:626
 msgid "You can't edit this application."
 msgstr "Vous ne pouvez pas éditer cette application."
 
-#: ../../mod/settings.php:668
+#: ../../mod/settings.php:669
 msgid "Connected Apps"
 msgstr "Applications connectées"
 
-#: ../../mod/settings.php:672
+#: ../../mod/settings.php:673
 msgid "Client key starts with"
 msgstr "La clé cliente commence par"
 
-#: ../../mod/settings.php:673
+#: ../../mod/settings.php:674
 msgid "No name"
 msgstr "Sans nom"
 
-#: ../../mod/settings.php:674
+#: ../../mod/settings.php:675
 msgid "Remove authorization"
 msgstr "Révoquer l'autorisation"
 
-#: ../../mod/settings.php:686
+#: ../../mod/settings.php:687
 msgid "No Plugin settings configured"
 msgstr "Pas de réglages d'extensions configurés"
 
-#: ../../mod/settings.php:694
+#: ../../mod/settings.php:695
 msgid "Plugin Settings"
 msgstr "Extensions"
 
-#: ../../mod/settings.php:708
+#: ../../mod/settings.php:709
 msgid "Off"
 msgstr "Éteint"
 
-#: ../../mod/settings.php:708
+#: ../../mod/settings.php:709
 msgid "On"
 msgstr "Allumé"
 
-#: ../../mod/settings.php:716
+#: ../../mod/settings.php:717
 msgid "Additional Features"
 msgstr "Fonctions supplémentaires"
 
-#: ../../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 "Le support natif pour la connectivité %s est %s"
 
-#: ../../mod/settings.php:730 ../../mod/settings.php:731
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 msgid "enabled"
 msgstr "activé"
 
-#: ../../mod/settings.php:730 ../../mod/settings.php:731
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 msgid "disabled"
 msgstr "désactivé"
 
-#: ../../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 "L'accès courriel est désactivé sur ce site."
 
-#: ../../mod/settings.php:779
+#: ../../mod/settings.php:780
 msgid "Email/Mailbox Setup"
 msgstr "Réglages de courriel/boîte à lettre"
 
-#: ../../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 "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte."
 
-#: ../../mod/settings.php:781
+#: ../../mod/settings.php:782
 msgid "Last successful email check:"
 msgstr "Dernière vérification réussie des courriels:"
 
-#: ../../mod/settings.php:783
+#: ../../mod/settings.php:784
 msgid "IMAP server name:"
 msgstr "Nom du serveur IMAP:"
 
-#: ../../mod/settings.php:784
+#: ../../mod/settings.php:785
 msgid "IMAP port:"
 msgstr "Port IMAP:"
 
-#: ../../mod/settings.php:785
+#: ../../mod/settings.php:786
 msgid "Security:"
 msgstr "Sécurité:"
 
-#: ../../mod/settings.php:785 ../../mod/settings.php:790
+#: ../../mod/settings.php:786 ../../mod/settings.php:791
 msgid "None"
 msgstr "Aucun(e)"
 
-#: ../../mod/settings.php:786
+#: ../../mod/settings.php:787
 msgid "Email login name:"
 msgstr "Nom de connexion:"
 
-#: ../../mod/settings.php:787
+#: ../../mod/settings.php:788
 msgid "Email password:"
 msgstr "Mot de passe:"
 
-#: ../../mod/settings.php:788
+#: ../../mod/settings.php:789
 msgid "Reply-to address:"
 msgstr "Adresse de réponse:"
 
-#: ../../mod/settings.php:789
+#: ../../mod/settings.php:790
 msgid "Send public posts to all email contacts:"
 msgstr "Les notices publiques vont à tous les contacts courriel:"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:791
 msgid "Action after import:"
 msgstr "Action après import:"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:791
 msgid "Mark as seen"
 msgstr "Marquer comme vu"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:791
 msgid "Move to folder"
 msgstr "Déplacer vers"
 
-#: ../../mod/settings.php:791
+#: ../../mod/settings.php:792
 msgid "Move to folder:"
 msgstr "Déplacer vers:"
 
-#: ../../mod/settings.php:869
+#: ../../mod/settings.php:870
 msgid "Display Settings"
 msgstr "Affichage"
 
-#: ../../mod/settings.php:875 ../../mod/settings.php:889
+#: ../../mod/settings.php:876 ../../mod/settings.php:890
 msgid "Display Theme:"
 msgstr "Thème d'affichage:"
 
-#: ../../mod/settings.php:876
+#: ../../mod/settings.php:877
 msgid "Mobile Theme:"
 msgstr "Thème mobile:"
 
-#: ../../mod/settings.php:877
+#: ../../mod/settings.php:878
 msgid "Update browser every xx seconds"
 msgstr "Mettre-à-jour l'affichage toutes les xx secondes"
 
-#: ../../mod/settings.php:877
+#: ../../mod/settings.php:878
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Délai minimum de 10 secondes, pas de maximum"
 
-#: ../../mod/settings.php:878
+#: ../../mod/settings.php:879
 msgid "Number of items to display per page:"
 msgstr "Nombre d’éléments par page:"
 
-#: ../../mod/settings.php:878 ../../mod/settings.php:879
+#: ../../mod/settings.php:879 ../../mod/settings.php:880
 msgid "Maximum of 100 items"
 msgstr "Maximum de 100 éléments"
 
-#: ../../mod/settings.php:879
+#: ../../mod/settings.php:880
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "Nombre d'éléments a afficher par page pour un appareil mobile"
 
-#: ../../mod/settings.php:880
+#: ../../mod/settings.php:881
 msgid "Don't show emoticons"
 msgstr "Ne pas afficher les émoticônes (smileys grahiques)"
 
-#: ../../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 "Compte normal"
 
-#: ../../mod/settings.php:960
+#: ../../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:963
+#: ../../mod/settings.php:966
 msgid "Soapbox Page"
 msgstr "Compte \"boîte à savon\""
 
-#: ../../mod/settings.php:964
+#: ../../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:967
+#: ../../mod/settings.php:970
 msgid "Community Forum/Celebrity Account"
 msgstr "Compte de communauté/célébrité"
 
-#: ../../mod/settings.php:968
+#: ../../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:971
+#: ../../mod/settings.php:974
 msgid "Automatic Friend Page"
 msgstr "Compte d'\"amitié automatique\""
 
-#: ../../mod/settings.php:972
+#: ../../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:975
+#: ../../mod/settings.php:978
 msgid "Private Forum [Experimental]"
 msgstr "Forum privé [expérimental]"
 
-#: ../../mod/settings.php:976
+#: ../../mod/settings.php:979
 msgid "Private forum - approved members only"
 msgstr "Forum privé - modéré en inscription"
 
-#: ../../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 "&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte."
 
-#: ../../mod/settings.php:998
+#: ../../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:1004
+#: ../../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:1012
+#: ../../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:1016
+#: ../../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:1021
+#: ../../mod/settings.php:1024
 msgid "Allow friends to post to your profile page?"
 msgstr "Autoriser vos amis à publier sur votre profil?"
 
-#: ../../mod/settings.php:1027
+#: ../../mod/settings.php:1030
 msgid "Allow friends to tag your posts?"
 msgstr "Autoriser vos amis à tagguer vos notices?"
 
-#: ../../mod/settings.php:1033
+#: ../../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:1039
+#: ../../mod/settings.php:1042
 msgid "Permit unknown people to send you private mail?"
 msgstr "Autoriser les messages privés d'inconnus?"
 
-#: ../../mod/settings.php:1047
+#: ../../mod/settings.php:1050
 msgid "Profile is <strong>not published</strong>."
 msgstr "Ce profil n'est <strong>pas publié</strong>."
 
-#: ../../mod/settings.php:1050 ../../mod/profile_photo.php:248
+#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248
 msgid "or"
 msgstr "ou"
 
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1058
 msgid "Your Identity Address is"
 msgstr "L'adresse de votre identité est"
 
-#: ../../mod/settings.php:1066
+#: ../../mod/settings.php:1069
 msgid "Automatically expire posts after this many days:"
 msgstr "Les publications expirent automatiquement après (en jours) :"
 
-#: ../../mod/settings.php:1066
+#: ../../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:1067
+#: ../../mod/settings.php:1070
 msgid "Advanced expiration settings"
 msgstr "Réglages avancés de l'expiration"
 
-#: ../../mod/settings.php:1068
+#: ../../mod/settings.php:1071
 msgid "Advanced Expiration"
 msgstr "Expiration (avancé)"
 
-#: ../../mod/settings.php:1069
+#: ../../mod/settings.php:1072
 msgid "Expire posts:"
 msgstr "Faire expirer les contenus:"
 
-#: ../../mod/settings.php:1070
+#: ../../mod/settings.php:1073
 msgid "Expire personal notes:"
 msgstr "Faire expirer les notes personnelles:"
 
-#: ../../mod/settings.php:1071
+#: ../../mod/settings.php:1074
 msgid "Expire starred posts:"
 msgstr "Faire expirer les contenus marqués:"
 
-#: ../../mod/settings.php:1072
+#: ../../mod/settings.php:1075
 msgid "Expire photos:"
 msgstr "Faire expirer les photos:"
 
-#: ../../mod/settings.php:1073
+#: ../../mod/settings.php:1076
 msgid "Only expire posts by others:"
 msgstr "Faire expirer seulement les messages des autres :"
 
-#: ../../mod/settings.php:1099
+#: ../../mod/settings.php:1102
 msgid "Account Settings"
 msgstr "Compte"
 
-#: ../../mod/settings.php:1107
+#: ../../mod/settings.php:1110
 msgid "Password Settings"
 msgstr "Réglages de mot de passe"
 
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1111
 msgid "New Password:"
 msgstr "Nouveau mot de passe:"
 
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1112
 msgid "Confirm:"
 msgstr "Confirmer:"
 
-#: ../../mod/settings.php:1109
+#: ../../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:1110
+#: ../../mod/settings.php:1113
 msgid "Current Password:"
 msgstr "Mot de passe actuel:"
 
-#: ../../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 "Votre mot de passe actuel pour confirmer les modifications"
 
-#: ../../mod/settings.php:1111
+#: ../../mod/settings.php:1114
 msgid "Password:"
 msgstr "Mot de passe:"
 
-#: ../../mod/settings.php:1115
+#: ../../mod/settings.php:1118
 msgid "Basic Settings"
 msgstr "Réglages basiques"
 
-#: ../../mod/settings.php:1116 ../../include/profile_advanced.php:15
+#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15
 msgid "Full Name:"
 msgstr "Nom complet:"
 
-#: ../../mod/settings.php:1117
+#: ../../mod/settings.php:1120
 msgid "Email Address:"
 msgstr "Adresse courriel:"
 
-#: ../../mod/settings.php:1118
+#: ../../mod/settings.php:1121
 msgid "Your Timezone:"
 msgstr "Votre fuseau horaire:"
 
-#: ../../mod/settings.php:1119
+#: ../../mod/settings.php:1122
 msgid "Default Post Location:"
 msgstr "Publication par défaut depuis :"
 
-#: ../../mod/settings.php:1120
+#: ../../mod/settings.php:1123
 msgid "Use Browser Location:"
 msgstr "Utiliser la localisation géographique du navigateur:"
 
-#: ../../mod/settings.php:1123
+#: ../../mod/settings.php:1126
 msgid "Security and Privacy Settings"
 msgstr "Réglages de sécurité et vie privée"
 
-#: ../../mod/settings.php:1125
+#: ../../mod/settings.php:1128
 msgid "Maximum Friend Requests/Day:"
 msgstr "Nombre maximal de requêtes d'amitié/jour:"
 
-#: ../../mod/settings.php:1125 ../../mod/settings.php:1155
+#: ../../mod/settings.php:1128 ../../mod/settings.php:1158
 msgid "(to prevent spam abuse)"
 msgstr "(pour limiter l'impact du spam)"
 
-#: ../../mod/settings.php:1126
+#: ../../mod/settings.php:1129
 msgid "Default Post Permissions"
 msgstr "Permissions par défaut sur les articles"
 
-#: ../../mod/settings.php:1127
+#: ../../mod/settings.php:1130
 msgid "(click to open/close)"
 msgstr "(cliquer pour ouvrir/fermer)"
 
-#: ../../mod/settings.php:1136 ../../mod/photos.php:1144
+#: ../../mod/settings.php:1139 ../../mod/photos.php:1144
 #: ../../mod/photos.php:1515
 msgid "Show to Groups"
 msgstr "Montrer aux groupes"
 
-#: ../../mod/settings.php:1137 ../../mod/photos.php:1145
+#: ../../mod/settings.php:1140 ../../mod/photos.php:1145
 #: ../../mod/photos.php:1516
 msgid "Show to Contacts"
 msgstr "Montrer aux Contacts"
 
-#: ../../mod/settings.php:1138
+#: ../../mod/settings.php:1141
 msgid "Default Private Post"
 msgstr "Message privé par défaut"
 
-#: ../../mod/settings.php:1139
+#: ../../mod/settings.php:1142
 msgid "Default Public Post"
 msgstr "Message publique par défaut"
 
-#: ../../mod/settings.php:1143
+#: ../../mod/settings.php:1146
 msgid "Default Permissions for New Posts"
 msgstr "Permissions par défaut sur les nouveaux articles"
 
-#: ../../mod/settings.php:1155
+#: ../../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:1158
+#: ../../mod/settings.php:1161
 msgid "Notification Settings"
 msgstr "Réglages de notification"
 
-#: ../../mod/settings.php:1159
+#: ../../mod/settings.php:1162
 msgid "By default post a status message when:"
 msgstr "Par défaut, poster un statut quand:"
 
-#: ../../mod/settings.php:1160
+#: ../../mod/settings.php:1163
 msgid "accepting a friend request"
 msgstr "j'accepte un ami"
 
-#: ../../mod/settings.php:1161
+#: ../../mod/settings.php:1164
 msgid "joining a forum/community"
 msgstr "joignant un forum/une communauté"
 
-#: ../../mod/settings.php:1162
+#: ../../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:1163
+#: ../../mod/settings.php:1166
 msgid "Send a notification email when:"
 msgstr "Envoyer un courriel de notification quand:"
 
-#: ../../mod/settings.php:1164
+#: ../../mod/settings.php:1167
 msgid "You receive an introduction"
 msgstr "Vous recevez une introduction"
 
-#: ../../mod/settings.php:1165
+#: ../../mod/settings.php:1168
 msgid "Your introductions are confirmed"
 msgstr "Vos introductions sont confirmées"
 
-#: ../../mod/settings.php:1166
+#: ../../mod/settings.php:1169
 msgid "Someone writes on your profile wall"
 msgstr "Quelqu'un écrit sur votre mur"
 
-#: ../../mod/settings.php:1167
+#: ../../mod/settings.php:1170
 msgid "Someone writes a followup comment"
 msgstr "Quelqu'un vous commente"
 
-#: ../../mod/settings.php:1168
+#: ../../mod/settings.php:1171
 msgid "You receive a private message"
 msgstr "Vous recevez un message privé"
 
-#: ../../mod/settings.php:1169
+#: ../../mod/settings.php:1172
 msgid "You receive a friend suggestion"
 msgstr "Vous avez reçu une suggestion d'ami"
 
-#: ../../mod/settings.php:1170
+#: ../../mod/settings.php:1173
 msgid "You are tagged in a post"
 msgstr "Vous avez été repéré dans une publication"
 
-#: ../../mod/settings.php:1171
+#: ../../mod/settings.php:1174
 msgid "You are poked/prodded/etc. in a post"
 msgstr "Vous avez été sollicité dans une publication"
 
-#: ../../mod/settings.php:1174
+#: ../../mod/settings.php:1177
 msgid "Advanced Account/Page Type Settings"
 msgstr "Paramètres avancés de compte/page"
 
-#: ../../mod/settings.php:1175
+#: ../../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: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 ""
 
@@ -4738,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:861
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:874
 msgid "View Contacts"
 msgstr "Voir les contacts"
 
@@ -4750,7 +4759,7 @@ msgstr "Recherche de personnes"
 msgid "No matches"
 msgstr "Aucune correspondance"
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1810
+#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815
 msgid "Upload New Photos"
 msgstr "Téléverser de nouvelles photos"
 
@@ -4858,7 +4867,7 @@ msgstr "Plus récent d'abord"
 msgid "Show Oldest First"
 msgstr "Plus ancien d'abord"
 
-#: ../../mod/photos.php:1255 ../../mod/photos.php:1793
+#: ../../mod/photos.php:1255 ../../mod/photos.php:1798
 msgid "View Photo"
 msgstr "Voir la photo"
 
@@ -4927,33 +4936,32 @@ msgstr "Photo privée"
 msgid "Public photo"
 msgstr "Photo publique"
 
-#: ../../mod/photos.php:1540 ../../include/conversation.php:1083
+#: ../../mod/photos.php:1540 ../../include/conversation.php:1088
 msgid "Share"
 msgstr "Partager"
 
-#: ../../mod/photos.php:1799 ../../mod/videos.php:308
+#: ../../mod/photos.php:1804 ../../mod/videos.php:308
 msgid "View Album"
 msgstr "Voir l'album"
 
-#: ../../mod/photos.php:1808
+#: ../../mod/photos.php:1813
 msgid "Recent Photos"
 msgstr "Photos récentes"
 
-#: ../../mod/wall_attach.php:75 ../../wall_attach.php:75
+#: ../../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 ../../wall_attach.php:75
+#: ../../mod/wall_attach.php:75
 msgid "Or - did you try to upload an empty file?"
 msgstr ""
 
-#: ../../mod/wall_attach.php:81 ../../wall_attach.php:81
+#: ../../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:122 ../../mod/wall_attach.php:133
-#: ../../wall_attach.php:122 ../../wall_attach.php:133
 msgid "File upload failed."
 msgstr "Le téléversement a échoué."
 
@@ -4961,7 +4969,7 @@ msgstr "Le téléversement a échoué."
 msgid "No videos selected"
 msgstr "Pas de vidéo sélectionné"
 
-#: ../../mod/videos.php:301 ../../include/text.php:1387
+#: ../../mod/videos.php:301 ../../include/text.php:1400
 msgid "View Video"
 msgstr "Regarder la vidéo"
 
@@ -5150,8 +5158,8 @@ msgstr "l, F j"
 msgid "Edit event"
 msgstr "Editer l'événement"
 
-#: ../../mod/events.php:335 ../../include/text.php:1620
-#: ../../include/text.php:1631
+#: ../../mod/events.php:335 ../../include/text.php:1633
+#: ../../include/text.php:1644
 msgid "link to source"
 msgstr "lien original"
 
@@ -5255,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:"
 
@@ -5702,15 +5710,15 @@ 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."
 
@@ -5739,6 +5747,11 @@ msgstr "Débute:"
 msgid "Finishes:"
 msgstr "Finit:"
 
+#: ../../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)"
@@ -5836,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:990
+#: ../../include/conversation.php:211 ../../include/text.php:1003
 msgid "poked"
 msgstr "a titillé"
 
@@ -5955,23 +5968,28 @@ msgstr "Où êtes-vous présentemment?"
 msgid "Delete item(s)?"
 msgstr "Supprimer les élément(s) ?"
 
-#: ../../include/conversation.php:1048
+#: ../../include/conversation.php:1049
 msgid "Post to Email"
 msgstr "Publier aussi par courriel"
 
-#: ../../include/conversation.php:1104
+#: ../../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:1128
+#: ../../include/conversation.php:1133
 msgid "Post to Groups"
 msgstr ""
 
-#: ../../include/conversation.php:1129
+#: ../../include/conversation.php:1134
 msgid "Post to Contacts"
 msgstr ""
 
-#: ../../include/conversation.php:1130
+#: ../../include/conversation.php:1135
 msgid "Private post"
 msgstr "Message privé"
 
@@ -6015,262 +6033,262 @@ msgstr[1] "%d contacts non importés"
 msgid "Done. You can now login with your username and password"
 msgstr "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"
 
-#: ../../include/text.php:304
+#: ../../include/text.php:296
 msgid "newer"
 msgstr "Plus récent"
 
-#: ../../include/text.php:306
+#: ../../include/text.php:298
 msgid "older"
 msgstr "Plus ancien"
 
-#: ../../include/text.php:311
+#: ../../include/text.php:303
 msgid "prev"
 msgstr "précédent"
 
-#: ../../include/text.php:313
+#: ../../include/text.php:305
 msgid "first"
 msgstr "premier"
 
-#: ../../include/text.php:345
+#: ../../include/text.php:337
 msgid "last"
 msgstr "dernier"
 
-#: ../../include/text.php:348
+#: ../../include/text.php:340
 msgid "next"
 msgstr "suivant"
 
-#: ../../include/text.php:840
+#: ../../include/text.php:853
 msgid "No contacts"
 msgstr "Aucun contact"
 
-#: ../../include/text.php:849
+#: ../../include/text.php:862
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d contact"
 msgstr[1] "%d contacts"
 
-#: ../../include/text.php:990
+#: ../../include/text.php:1003
 msgid "poke"
 msgstr "titiller"
 
-#: ../../include/text.php:991
+#: ../../include/text.php:1004
 msgid "ping"
 msgstr "attirer l'attention"
 
-#: ../../include/text.php:991
+#: ../../include/text.php:1004
 msgid "pinged"
 msgstr "a attiré l'attention de"
 
-#: ../../include/text.php:992
+#: ../../include/text.php:1005
 msgid "prod"
 msgstr "aiguillonner"
 
-#: ../../include/text.php:992
+#: ../../include/text.php:1005
 msgid "prodded"
 msgstr "a aiguillonné"
 
-#: ../../include/text.php:993
+#: ../../include/text.php:1006
 msgid "slap"
 msgstr "gifler"
 
-#: ../../include/text.php:993
+#: ../../include/text.php:1006
 msgid "slapped"
 msgstr "a giflé"
 
-#: ../../include/text.php:994
+#: ../../include/text.php:1007
 msgid "finger"
 msgstr "tripoter"
 
-#: ../../include/text.php:994
+#: ../../include/text.php:1007
 msgid "fingered"
 msgstr "a tripoté"
 
-#: ../../include/text.php:995
+#: ../../include/text.php:1008
 msgid "rebuff"
 msgstr "rabrouer"
 
-#: ../../include/text.php:995
+#: ../../include/text.php:1008
 msgid "rebuffed"
 msgstr "a rabroué"
 
-#: ../../include/text.php:1009
+#: ../../include/text.php:1022
 msgid "happy"
 msgstr "heureuse"
 
-#: ../../include/text.php:1010
+#: ../../include/text.php:1023
 msgid "sad"
 msgstr "triste"
 
-#: ../../include/text.php:1011
+#: ../../include/text.php:1024
 msgid "mellow"
 msgstr "suave"
 
-#: ../../include/text.php:1012
+#: ../../include/text.php:1025
 msgid "tired"
 msgstr "fatiguée"
 
-#: ../../include/text.php:1013
+#: ../../include/text.php:1026
 msgid "perky"
 msgstr "guillerette"
 
-#: ../../include/text.php:1014
+#: ../../include/text.php:1027
 msgid "angry"
 msgstr "colérique"
 
-#: ../../include/text.php:1015
+#: ../../include/text.php:1028
 msgid "stupified"
 msgstr "stupéfaite"
 
-#: ../../include/text.php:1016
+#: ../../include/text.php:1029
 msgid "puzzled"
 msgstr "perplexe"
 
-#: ../../include/text.php:1017
+#: ../../include/text.php:1030
 msgid "interested"
 msgstr "intéressée"
 
-#: ../../include/text.php:1018
+#: ../../include/text.php:1031
 msgid "bitter"
 msgstr "amère"
 
-#: ../../include/text.php:1019
+#: ../../include/text.php:1032
 msgid "cheerful"
 msgstr "entraînante"
 
-#: ../../include/text.php:1020
+#: ../../include/text.php:1033
 msgid "alive"
 msgstr "vivante"
 
-#: ../../include/text.php:1021
+#: ../../include/text.php:1034
 msgid "annoyed"
 msgstr "ennuyée"
 
-#: ../../include/text.php:1022
+#: ../../include/text.php:1035
 msgid "anxious"
 msgstr "anxieuse"
 
-#: ../../include/text.php:1023
+#: ../../include/text.php:1036
 msgid "cranky"
 msgstr "excentrique"
 
-#: ../../include/text.php:1024
+#: ../../include/text.php:1037
 msgid "disturbed"
 msgstr "dérangée"
 
-#: ../../include/text.php:1025
+#: ../../include/text.php:1038
 msgid "frustrated"
 msgstr "frustrée"
 
-#: ../../include/text.php:1026
+#: ../../include/text.php:1039
 msgid "motivated"
 msgstr "motivée"
 
-#: ../../include/text.php:1027
+#: ../../include/text.php:1040
 msgid "relaxed"
 msgstr "détendue"
 
-#: ../../include/text.php:1028
+#: ../../include/text.php:1041
 msgid "surprised"
 msgstr "surprise"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1209
 msgid "Monday"
 msgstr "Lundi"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1209
 msgid "Tuesday"
 msgstr "Mardi"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1209
 msgid "Wednesday"
 msgstr "Mercredi"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1209
 msgid "Thursday"
 msgstr "Jeudi"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1209
 msgid "Friday"
 msgstr "Vendredi"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1209
 msgid "Saturday"
 msgstr "Samedi"
 
-#: ../../include/text.php:1196
+#: ../../include/text.php:1209
 msgid "Sunday"
 msgstr "Dimanche"
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "January"
 msgstr "Janvier"
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "February"
 msgstr "Février"
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "March"
 msgstr "Mars"
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "April"
 msgstr "Avril"
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "May"
 msgstr "Mai"
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "June"
 msgstr "Juin"
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "July"
 msgstr "Juillet"
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "August"
 msgstr "Août"
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "September"
 msgstr "Septembre"
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "October"
 msgstr "Octobre"
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "November"
 msgstr "Novembre"
 
-#: ../../include/text.php:1200
+#: ../../include/text.php:1213
 msgid "December"
 msgstr "Décembre"
 
-#: ../../include/text.php:1419
+#: ../../include/text.php:1432
 msgid "bytes"
 msgstr "octets"
 
-#: ../../include/text.php:1443 ../../include/text.php:1455
+#: ../../include/text.php:1456 ../../include/text.php:1468
 msgid "Click to open/close"
 msgstr "Cliquer pour ouvrir/fermer"
 
-#: ../../include/text.php:1688
+#: ../../include/text.php:1701
 msgid "Select an alternate language"
 msgstr "Choisir une langue alternative"
 
-#: ../../include/text.php:1944
+#: ../../include/text.php:1957
 msgid "activity"
 msgstr "activité"
 
-#: ../../include/text.php:1947
+#: ../../include/text.php:1960
 msgid "post"
 msgstr "publication"
 
-#: ../../include/text.php:2115
+#: ../../include/text.php:2128
 msgid "Item filed"
 msgstr "Élément classé"
 
@@ -6754,27 +6772,27 @@ msgstr "Activité professionnelle/Occupation:"
 msgid "School/education:"
 msgstr "Études/Formation:"
 
-#: ../../include/bbcode.php:284 ../../include/bbcode.php:917
-#: ../../include/bbcode.php:918
+#: ../../include/bbcode.php:287 ../../include/bbcode.php:921
+#: ../../include/bbcode.php:922
 msgid "Image/photo"
 msgstr "Image/photo"
 
-#: ../../include/bbcode.php:354
+#: ../../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/bbcode.php:453
+#: ../../include/bbcode.php:457
 msgid "<span><b>"
 msgstr ""
 
-#: ../../include/bbcode.php:881 ../../include/bbcode.php:901
+#: ../../include/bbcode.php:885 ../../include/bbcode.php:905
 msgid "$1 wrote:"
 msgstr "$1 a écrit:"
 
-#: ../../include/bbcode.php:932 ../../include/bbcode.php:933
+#: ../../include/bbcode.php:936 ../../include/bbcode.php:937
 msgid "Encrypted content"
 msgstr "Contenu chiffré"
 
@@ -6927,12 +6945,12 @@ msgstr "secondes"
 msgid "%1$d %2$s ago"
 msgstr "%1$d %2$s auparavant"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1964
+#: ../../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:1965
+#: ../../include/datetime.php:473 ../../include/items.php:1982
 #, php-format
 msgid "Happy Birthday %s"
 msgstr "Joyeux anniversaire, %s !"
@@ -6996,7 +7014,7 @@ msgstr "Filtre de groupe"
 
 #: ../../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:41
 msgid "Network Filter"
@@ -7004,7 +7022,7 @@ msgstr "Filtre de réseau"
 
 #: ../../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:42
 msgid "Save search terms for re-use"
@@ -7012,15 +7030,15 @@ msgstr "Sauvegarder la recherche pour une utilisation ultérieure"
 
 #: ../../include/features.php:47
 msgid "Network Tabs"
-msgstr ""
+msgstr "Onglets Réseau"
 
 #: ../../include/features.php:48
 msgid "Network Personal Tab"
-msgstr ""
+msgstr "Onglet Réseau Personnel"
 
 #: ../../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:49
 msgid "Network New Tab"
@@ -7106,19 +7124,19 @@ msgstr "Pièces jointes : "
 msgid "Visible to everybody"
 msgstr "Visible par tout le monde"
 
-#: ../../include/items.php:3693
+#: ../../include/items.php:3710
 msgid "A new person is sharing with you at "
 msgstr "Une nouvelle personne partage avec vous à "
 
-#: ../../include/items.php:3693
+#: ../../include/items.php:3710
 msgid "You have a new follower at "
 msgstr "Vous avez un nouvel abonné à "
 
-#: ../../include/items.php:4216
+#: ../../include/items.php:4233
 msgid "Do you really want to delete this item?"
 msgstr "Voulez-vous vraiment supprimer cet élément ?"
 
-#: ../../include/items.php:4443
+#: ../../include/items.php:4460
 msgid "Archives"
 msgstr "Archives"
 
@@ -7383,8 +7401,3 @@ msgstr "retiré de la liste de suivi"
 #: ../../include/Contact.php:234
 msgid "Drop Contact"
 msgstr "Supprimer le contact"
-
-#: ../../include/dba.php:45
-#, 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'"
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 79c3326c3305b859ccc193bd6349613a98b34bd8..2afbfe1f18a21c433254cb4634f6ca98ba8d85a2 100644 (file)
@@ -866,6 +866,8 @@ $a->strings["Number of items to display per page when viewed from mobile device:
 $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\"";
@@ -1310,6 +1312,7 @@ $a->strings["There is no conversation with this id."] = "Il n'y a pas de convers
 $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.";
@@ -1360,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"] = "";
@@ -1609,13 +1613,13 @@ $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"] = "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"] = "";
+$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"] = "";
+$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"] = "";
-$a->strings["Network Personal Tab"] = "";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
+$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"] = "";
@@ -1706,4 +1710,3 @@ $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"] = "Supprimer le 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'";
index 769cfe818f076b07296915113bce55ac02690983..c643281354d87822a9207372f829316bcd0d4201 100644 (file)
@@ -57,12 +57,22 @@ span.connector {
 .type-link img, .type-video img {
 }
 
+.type-video .embed_video {
+  margin: 0em;
+}
+
 .type-link span.oembed + br, .type-video span.oembed + br,
 .type-link a + br, .type-video a + br,
 .type-link img + br, .type-video img + br{
   display: none;
 }
 
+.embed_video {
+  float:left;
+  margin: 1em;
+  position: relative;
+}
+
 /* Shared Messages */
 .shared_header {
   height: 32px;
index 7304eab339dba36de452139205ab0f0790efab19..a85bca9d3c15b645801c377e8568dbb70d5017f2 100644 (file)
@@ -8,8 +8,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-29 07:37+0000\n"
+"POT-Creation-Date: 2014-05-16 11:05+0200\n"
+"PO-Revision-Date: 2014-05-26 10:42+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"
@@ -22,25 +22,26 @@ msgstr ""
 msgid "This entry was edited"
 msgstr "Denne oppføringen ble endret"
 
-#: ../../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 "Privat melding"
 
 #: ../../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 "Endre"
 
-#: ../../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 "Velg"
 
-#: ../../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 "Slett"
 
@@ -68,8 +69,8 @@ msgstr "Med stjerne"
 msgid "add tag"
 msgstr "Legg til merkelapp"
 
-#: ../../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 "Jeg liker dette (skru på/av)"
 
@@ -77,8 +78,8 @@ msgstr "Jeg liker dette (skru på/av)"
 msgid "like"
 msgstr "liker"
 
-#: ../../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 "Jeg liker ikke dette (skru på/av)"
 
@@ -131,17 +132,17 @@ msgstr "via vegg-til-vegg"
 msgid "%s from %s"
 msgstr "%s fra %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 "Vennligst vent"
 
@@ -153,40 +154,37 @@ msgstr[0] "%d kommentar"
 msgstr[1] "%d kommentarer"
 
 #: ../../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] "kommentarer"
 
-#: ../../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 "vis mer"
 
-#: ../../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 "Dette er deg"
 
-#: ../../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 "Lagre"
 
@@ -223,9 +221,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 "forhåndsvisning"
 
@@ -241,32 +239,33 @@ msgstr "Ikke funnet"
 msgid "Page not found."
 msgstr "Fant ikke siden."
 
-#: ../../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 "Tilgang nektet"
 
-#: ../../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 "Ingen tilgang."
 
@@ -274,2753 +273,2738 @@ msgstr "Ingen tilgang."
 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:145
-msgid "Home"
-msgstr "Hjem"
+#: ../../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 "[Innebygget innhold - hent siden på nytt for å se det]"
 
-#: ../../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 "Dine innlegg og samtaler"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131
+msgid "Contact not found."
+msgstr "Kontakt ikke funnet."
 
-#: ../../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 "Venneforslag sendt."
 
-#: ../../view/theme/perihel/theme.php:34
-#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
-msgid "Your profile page"
-msgstr "Din profilside"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Foreslå venner"
 
-#: ../../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 "Foreslå en venn for %s"
 
-#: ../../view/theme/perihel/theme.php:35
-#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
-msgid "Your photos"
-msgstr "Dine bilder"
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "Denne introduksjonen har allerede blitt akseptert."
 
-#: ../../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 "Hendelser"
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon."
 
-#: ../../view/theme/perihel/theme.php:36
-#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
-msgid "Your events"
-msgstr "Dine hendelser"
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Advarsel: profilstedet har ikke identifiserbart eiernavn."
 
-#: ../../view/theme/perihel/theme.php:37
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
-msgid "Personal notes"
-msgstr "Personlige notater"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
+msgstr "Advarsel: profilstedet har ikke noe profilbilde."
 
-#: ../../view/theme/perihel/theme.php:37
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
-msgid "Your personal photos"
-msgstr "Dine personlige bilder"
+#: ../../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] "one: %d nødvendig parameter ble ikke funnet på angitt sted"
+msgstr[1] "other: %d nødvendige parametre ble ikke funnet på angitt sted"
 
-#: ../../view/theme/perihel/theme.php:38
-#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32
-#: ../../include/nav.php:128
-msgid "Community"
-msgstr "Fellesskap"
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "Introduksjon ferdig."
 
-#: ../../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 "ikke vis"
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "Uopprettelig protokollfeil."
 
-#: ../../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 "vis"
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "Profil utilgjengelig."
 
-#: ../../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 "Temainnstillinger"
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s har mottatt for mange kontaktforespørsler idag."
 
-#: ../../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 "Angi skriftstørrelse for innlegg og kommentarer"
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "Tiltak mot søppelpost har blitt iverksatt."
 
-#: ../../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 "Angi linjeavstand for innlegg og kommentarer"
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Venner anbefales å prøve igjen om 24 timer."
 
-#: ../../view/theme/perihel/config.php:100
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Angi oppløsning for midtkolonnen"
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "Ugyldig stedsangivelse"
 
-#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688
-#: ../../include/nav.php:173
-msgid "Contacts"
-msgstr "Kontakter"
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr "Ugyldig e-postadresse."
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Dine kontakter"
+#: ../../mod/dfrn_request.php:362
+msgid "This account has not been configured for email. Request failed."
+msgstr "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes."
 
-#: ../../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 "Felleskapssider"
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
+msgstr "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet."
 
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-#: ../../view/theme/diabook/config.php:160
-msgid "Community Profiles"
-msgstr "Fellesskapsprofiler"
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr "Du har allerede introdusert deg selv her."
 
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-#: ../../view/theme/diabook/config.php:164
-msgid "Last users"
-msgstr "Siste brukere"
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Du er visst allerede venn med %s."
 
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-#: ../../view/theme/diabook/config.php:166
-msgid "Last likes"
-msgstr "Siste liker"
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr "Ugyldig profil-URL."
 
-#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
-#: ../../include/conversation.php:246 ../../include/text.php:1940
-msgid "event"
-msgstr "hendelse"
+#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "Underkjent 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 "Mislyktes med å oppdatere kontaktposten."
 
-#: ../../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 "bilde"
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr "Din introduksjon er sendt."
 
-#: ../../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"
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr "Vennligst logg inn for å bekrefte introduksjonen."
 
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-#: ../../view/theme/diabook/config.php:165
-msgid "Last photos"
-msgstr "Siste bilder"
+#: ../../mod/dfrn_request.php:659
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i <strong>denne</strong> profilen."
 
-#: ../../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 "Skjul denne kontakten"
 
-#: ../../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 "Velkommen hjem %s."
 
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:163
-msgid "Find Friends"
-msgstr "Finn venner"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s."
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Lokal katalog"
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr "Bekreft"
 
-#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49
-msgid "Global Directory"
-msgstr "Global katalog"
+#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703
+msgid "[Name Withheld]"
+msgstr "[Navnet tilbakeholdt]"
 
-#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
-msgid "Similar Interests"
-msgstr "Liknende interesser"
+#: ../../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 "Offentlig tilgang ikke tillatt."
 
-#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66
-#: ../../include/contact_widgets.php:34
-msgid "Friend Suggestions"
-msgstr "Venneforslag"
+#: ../../mod/dfrn_request.php:811
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Vennligst skriv inn din identitetsadresse fra en av følgende støttede sosiale nettverk:"
 
-#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
-msgid "Invite Friends"
-msgstr "Inviterer venner"
+#: ../../mod/dfrn_request.php:827
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+msgstr "<strike>Koble til som en e-postfølgesvenn</strike> (Kommer snart)"
 
-#: ../../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 "Innstillinger"
+#: ../../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 "Hvis du ennå ikke er en del av den frie sosiale webben, <a href=\"http://dir.friendica.com/siteinfo\">følg denne lenken for å finne et offentlig Friendica-nettsted og bli med oss idag</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"
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "Venne-/Koblings-forespørsel"
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Angi zoomfaktor for Earth Layers"
+#: ../../mod/dfrn_request.php:833
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Eksempler: 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 "Angi lengdegrad (X) for Earth Layers"
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr "Vennligst svar på følgende:"
 
-#: ../../view/theme/diabook/theme.php:586
-#: ../../view/theme/diabook/config.php:157
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Angi breddegrad (Y) for Earth Layers"
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kjenner %s deg?"
 
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-#: ../../view/theme/diabook/config.php:161
-msgid "Help or @NewHere ?"
-msgstr "Hjelp eller @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 "Forbindelse til tjenester"
+#: ../../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 "Nei"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Vis/skjul bokser i kolonnen til høyre:"
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "Legg til en personlig melding:"
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Angi fargekart"
+#: ../../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 "Angi zoomfaktor for Earth Layer"
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federeated Social Web"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Justering"
+#: ../../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 "Venstre"
+#: ../../mod/dfrn_request.php:843
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr "- vennligst ikke bruk dette skjemaet. I stedet skriver du %s inn søkelinjen i Diaspora."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Midtstilt"
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr "Din identitetsadresse:"
 
-#: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76
-#: ../../view/theme/cleanzero/config.php:86
-msgid "Color scheme"
-msgstr "Fargekart"
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "Send forespørsel"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Skriftstørrelse for innlegg"
+#: ../../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 "Avbryt"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Skriftstørrelse for tekstområder"
+#: ../../mod/files.php:156 ../../mod/videos.php:301
+#: ../../include/text.php:1400
+msgid "View Video"
+msgstr "Vis video"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Angi fargekart"
+#: ../../mod/profile.php:21 ../../boot.php:1353
+msgid "Requested profile is not available."
+msgstr "Profil utilgjengelig."
 
-#: ../../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 "Tilgang til denne profilen er blitt begrenset."
 
-#: ../../view/theme/clean/config.php:74
-msgid "Background Image"
-msgstr "Bakgrunnsbilde"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Tips til nye medlemmer"
 
-#: ../../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-en til et bilde (for eksempel fra ditt fotoalbum) som skal brukes som bakgrunnsbilde"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Ugyldig forespørselsidentifikator."
 
-#: ../../view/theme/clean/config.php:75
-msgid "Background Color"
-msgstr "Bakgrunnsfarge"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Forkast"
 
-#: ../../view/theme/clean/config.php:75
-msgid "HEX value for the background color. Don't include the #"
-msgstr "HEX-verdi til bakgrunnsfargen. Ikke ta med #"
+#: ../../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 "Ignorer"
 
-#: ../../view/theme/clean/config.php:77
-msgid "font size"
-msgstr "skriftstørrelse"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "System"
 
-#: ../../view/theme/clean/config.php:77
-msgid "base font size for your interface"
-msgstr "standard skriftstørrelse i ditt brukergrensesnitt"
+#: ../../mod/notifications.php:83 ../../include/nav.php:142
+msgid "Network"
+msgstr "Nettverk"
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Angi størrelsesendringen for bilder i innlegg og kommentarer (bredde og høyde)"
+#: ../../mod/notifications.php:88 ../../mod/network.php:365
+msgid "Personal"
+msgstr "Personlig"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Angi temabredde"
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123
+#: ../../include/nav.php:104 ../../include/nav.php:145
+msgid "Home"
+msgstr "Hjem"
 
-#: ../../view/theme/vier/config.php:50
-msgid "Set style"
-msgstr "Angi stil"
+#: ../../mod/notifications.php:98 ../../include/nav.php:151
+msgid "Introductions"
+msgstr "Introduksjoner"
 
-#: ../../boot.php:692
-msgid "Delete this item?"
-msgstr "Slett dette elementet?"
+#: ../../mod/notifications.php:103 ../../mod/message.php:182
+#: ../../include/nav.php:158
+msgid "Messages"
+msgstr "Meldinger"
 
-#: ../../boot.php:695
-msgid "show fewer"
-msgstr "vis færre"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Vis ignorerte forespørsler"
 
-#: ../../boot.php:1023
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Oppdatering %s mislyktes. Se feilloggene."
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Skjul ignorerte forespørsler"
 
-#: ../../boot.php:1025
-#, php-format
-msgid "Update Error at %s"
-msgstr "Oppdateringsfeil i %s"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Beskjedtype:"
 
-#: ../../boot.php:1135
-msgid "Create a New Account"
-msgstr "Lag en ny konto"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Venneforslag"
 
-#: ../../boot.php:1136 ../../mod/register.php:279 ../../include/nav.php:108
-msgid "Register"
-msgstr "Registrer"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "foreslått av %s"
 
-#: ../../boot.php:1160 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Logg ut"
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
+#: ../../mod/contacts.php:497
+msgid "Hide this contact from others"
+msgstr "Skjul denne kontakten for andre"
 
-#: ../../boot.php:1161 ../../include/nav.php:91
-msgid "Login"
-msgstr "Logg inn"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Post om en ny venn"
 
-#: ../../boot.php:1163
-msgid "Nickname or Email address: "
-msgstr "Kallenavn eller epostadresse: "
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "hvis gyldig"
 
-#: ../../boot.php:1164
-msgid "Password: "
-msgstr "Passord: "
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
+#: ../../mod/admin.php:908
+msgid "Approve"
+msgstr "Godkjenn"
 
-#: ../../boot.php:1165
-msgid "Remember me"
-msgstr "Husk meg"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Påstår å kjenne deg:"
 
-#: ../../boot.php:1168
-msgid "Or login using OpenID: "
-msgstr "Eller logg inn med OpenID:"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "ja"
 
-#: ../../boot.php:1174
-msgid "Forgot your password?"
-msgstr "Glemt passordet?"
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "ei"
 
-#: ../../boot.php:1175 ../../mod/lostpass.php:84
-msgid "Password Reset"
-msgstr "Passord tilbakestilling"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Godkjenn som:"
 
-#: ../../boot.php:1177
-msgid "Website Terms of Service"
-msgstr "Nettstedets bruksbetingelser"
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Venn"
 
-#: ../../boot.php:1178
-msgid "terms of service"
-msgstr "bruksbetingelser"
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Deler"
 
-#: ../../boot.php:1180
-msgid "Website Privacy Policy"
-msgstr "Nettstedets retningslinjer for personvern"
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fan/Beundrer"
 
-#: ../../boot.php:1181
-msgid "privacy policy"
-msgstr "retningslinjer for personvern"
-
-#: ../../boot.php:1314
-msgid "Requested account is not available."
-msgstr "Profil utilgjengelig."
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Venn/kontakt-forespørsel"
 
-#: ../../boot.php:1353 ../../mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Profil utilgjengelig."
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Ny følgesvenn"
 
-#: ../../boot.php:1393 ../../boot.php:1497
-msgid "Edit profile"
-msgstr "Rediger profil"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Ingen introduksjoner."
 
-#: ../../boot.php:1445 ../../mod/suggest.php:88 ../../mod/match.php:58
-#: ../../include/contact_widgets.php:9
-msgid "Connect"
-msgstr "Forbindelse"
+#: ../../mod/notifications.php:220 ../../include/nav.php:152
+msgid "Notifications"
+msgstr "Varslinger"
 
-#: ../../boot.php:1459
-msgid "Message"
-msgstr "Melding"
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:469
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s likte %s sitt innlegg"
 
-#: ../../boot.php:1467 ../../include/nav.php:171
-msgid "Profiles"
-msgstr "Profiler"
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s mislikte %s sitt innlegg"
 
-#: ../../boot.php:1467
-msgid "Manage/edit profiles"
-msgstr "Behandle/endre profiler"
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:492
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s er nå venner med %s"
 
-#: ../../boot.php:1473 ../../boot.php:1499 ../../mod/profiles.php:730
-msgid "Change profile photo"
-msgstr "Endre profilbilde"
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#, php-format
+msgid "%s created a new post"
+msgstr "%s skrev et nytt innlegg"
 
-#: ../../boot.php:1474 ../../mod/profiles.php:731
-msgid "Create New Profile"
-msgstr "Lag ny profil"
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:501
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s kommenterte på %s sitt innlegg"
 
-#: ../../boot.php:1484 ../../mod/profiles.php:742
-msgid "Profile Image"
-msgstr "Profilbilde"
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
+msgstr "Ingen flere nettverksvarslinger."
 
-#: ../../boot.php:1487 ../../mod/profiles.php:744
-msgid "visible to everybody"
-msgstr "synlig for alle"
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
+msgstr "Nettverksvarslinger"
 
-#: ../../boot.php:1488 ../../mod/profiles.php:745
-msgid "Edit visibility"
-msgstr "Endre synlighet"
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
+msgid "No more system notifications."
+msgstr "Ingen flere systemvarsler."
 
-#: ../../boot.php:1513 ../../mod/directory.php:134 ../../mod/events.php:471
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:155
-msgid "Location:"
-msgstr "Plassering:"
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr "Systemvarsler"
 
-#: ../../boot.php:1515 ../../mod/directory.php:136
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Kjønn:"
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
+msgstr "Ingen flere personlige varsler."
 
-#: ../../boot.php:1518 ../../mod/directory.php:138
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Status:"
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
+msgstr "Personlige varsler"
 
-#: ../../boot.php:1520 ../../mod/directory.php:140
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Hjemmeside:"
+#: ../../mod/notifications.php:508
+msgid "No more home notifications."
+msgstr "Ingen flere hjemmevarsler."
 
-#: ../../boot.php:1596 ../../boot.php:1682
-msgid "g A l F d"
-msgstr "g A l F d"
+#: ../../mod/notifications.php:512
+msgid "Home Notifications"
+msgstr "Hjemmevarsler"
 
-#: ../../boot.php:1597 ../../boot.php:1683
-msgid "F d"
-msgstr "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 "bilde"
 
-#: ../../boot.php:1642 ../../boot.php:1723
-msgid "[today]"
-msgstr "[idag]"
+#: ../../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 "Fødselsdager"
+#: ../../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 liker %2$s's %3$s"
 
-#: ../../boot.php:1655
-msgid "Birthdays this week:"
-msgstr "Fødselsdager denne uken:"
+#: ../../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"
 
-#: ../../boot.php:1716
-msgid "[No description]"
-msgstr "[Ingen beskrivelse]"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID protokollfeil. Ingen ID kom i retur."
 
-#: ../../boot.php:1734
-msgid "Event Reminders"
-msgstr "Påminnelser om hendelser"
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Kontoen ble ikke funnet og OpenID-registrering er ikke tillat på dette nettstedet."
 
-#: ../../boot.php:1735
-msgid "Events this week:"
-msgstr "Hendelser denne uken:"
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
+msgstr "Innlogging mislyktes."
 
-#: ../../boot.php:1972 ../../include/nav.php:76
-msgid "Status"
-msgstr "Status"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "BBcode kildetekst:"
 
-#: ../../boot.php:1975
-msgid "Status Messages and Posts"
-msgstr "Status meldinger og innlegg"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Diaspora kildetekst å konvertere til BBcode:"
 
-#: ../../boot.php:1982
-msgid "Profile Details"
-msgstr "Profildetaljer"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Kilde-input:"
 
-#: ../../boot.php:1989 ../../mod/photos.php:52
-msgid "Photo Albums"
-msgstr "Fotoalbum"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (rå HTML):"
 
-#: ../../boot.php:1993 ../../boot.php:1996
-msgid "Videos"
-msgstr "Videoer"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html:"
 
-#: ../../boot.php:2006
-msgid "Events and Calendar"
-msgstr "Hendelser og kalender"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb:"
 
-#: ../../boot.php:2010 ../../mod/notes.php:44
-msgid "Personal Notes"
-msgstr "Personlige notater"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md:"
 
-#: ../../boot.php:2013
-msgid "Only You Can See This"
-msgstr "Bare du kan se dette"
+#: ../../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 er for øyeblikket %2$s"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb:"
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Stemning"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb:"
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Angi din stemning og fortell dine venner"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Diaspora-formatert kilde-input:"
 
-#: ../../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 "Offentlig tilgang ikke tillatt."
+#: ../../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 "Enheten ble ikke funnet."
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr "Temainnstillinger oppdatert."
 
-#: ../../mod/display.php:99 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Tilgang til denne profilen er blitt begrenset."
+#: ../../mod/admin.php:102 ../../mod/admin.php:573
+msgid "Site"
+msgstr "Nettsted"
 
-#: ../../mod/display.php:263
-msgid "Item has been removed."
-msgstr "Elementet har blitt slettet."
+#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916
+msgid "Users"
+msgstr "Brukere"
 
-#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Tilgang avslått."
+#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058
+#: ../../mod/settings.php:57
+msgid "Plugins"
+msgstr "Tillegg"
 
-#: ../../mod/friendica.php:58
-msgid "This is Friendica, version"
-msgstr "Dette er Friendica, versjon"
+#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258
+msgid "Themes"
+msgstr "Tema"
 
-#: ../../mod/friendica.php:59
-msgid "running at web location"
-msgstr "kjører på web-plassering"
+#: ../../mod/admin.php:106
+msgid "DB updates"
+msgstr "Databaseoppdateringer"
 
-#: ../../mod/friendica.php:61
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Vennligst besøk <a href=\"http://friendica.com\">Friendica.com</a> for å lære mer om Friendica-prosjektet."
+#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345
+msgid "Logs"
+msgstr "Logger"
 
-#: ../../mod/friendica.php:63
-msgid "Bug reports and issues: please visit"
-msgstr "Feilrapporter og problemer: vennligst besøk"
+#: ../../mod/admin.php:126 ../../include/nav.php:180
+msgid "Admin"
+msgstr "Administrator"
 
-#: ../../mod/friendica.php:64
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Forslag, ros, donasjoner, og så videre - vennligst send e-post til \"Info\" alfakrøll Friendica punktum com"
+#: ../../mod/admin.php:127
+msgid "Plugin Features"
+msgstr "Utvidelse - egenskaper"
 
-#: ../../mod/friendica.php:78
-msgid "Installed plugins/addons/apps:"
-msgstr "Installerte plugins/tillegg/apper:"
+#: ../../mod/admin.php:129
+msgid "User registrations waiting for confirmation"
+msgstr "Brukerregistreringer venter på bekreftelse"
 
-#: ../../mod/friendica.php:91
-msgid "No installed plugins/addons/apps"
-msgstr "Ingen installerte plugins/tillegg/apper"
+#: ../../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 "Enheten ble ikke funnet."
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s hilser %2$s"
+#: ../../mod/admin.php:188 ../../mod/admin.php:855
+msgid "Normal Account"
+msgstr "Vanlig konto"
 
-#: ../../mod/register.php:92 ../../mod/admin.php:735 ../../mod/regmod.php:54
-#, php-format
-msgid "Registration details for %s"
-msgstr "Registeringsdetaljer for %s"
+#: ../../mod/admin.php:189 ../../mod/admin.php:856
+msgid "Soapbox Account"
+msgstr "Talerstol-konto"
 
-#: ../../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/admin.php:190 ../../mod/admin.php:857
+msgid "Community/Celebrity Account"
+msgstr "Gruppe-/kjendiskonto"
 
-#: ../../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/admin.php:191 ../../mod/admin.php:858
+msgid "Automatic Friend Account"
+msgstr "Automatisk vennekonto"
 
-#: ../../mod/register.php:109
-msgid "Your registration can not be processed."
-msgstr "Din registrering kan ikke behandles."
+#: ../../mod/admin.php:192
+msgid "Blog Account"
+msgstr "Bloggkonto"
 
-#: ../../mod/register.php:149
-#, php-format
-msgid "Registration request at %s"
-msgstr "Henvendelse om registrering ved %s"
+#: ../../mod/admin.php:193
+msgid "Private Forum"
+msgstr "Privat forum"
 
-#: ../../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/admin.php:212
+msgid "Message queues"
+msgstr "Meldingskøer"
 
-#: ../../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/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 "Administrasjon"
 
-#: ../../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/admin.php:218
+msgid "Summary"
+msgstr "Oppsummering"
 
-#: ../../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/admin.php:220
+msgid "Registered users"
+msgstr "Registrerte brukere"
 
-#: ../../mod/register.php:226
-msgid "Your OpenID (optional): "
-msgstr "Din OpenID (valgfritt):"
+#: ../../mod/admin.php:222
+msgid "Pending registrations"
+msgstr "Ventende registreringer"
 
-#: ../../mod/register.php:240
-msgid "Include your profile in member directory?"
-msgstr "Legg til profilen din i medlemskatalogen?"
+#: ../../mod/admin.php:223
+msgid "Version"
+msgstr "Versjon"
 
-#: ../../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 tillegg"
 
-#: ../../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/admin.php:248
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Kan ikke tolke base URL. Må ha minst <scheme>://<domain>"
 
-#: ../../mod/register.php:261
-msgid "Membership on this site is by invitation only."
-msgstr "Medlemskap ved dette nettstedet skjer bare på invitasjon."
+#: ../../mod/admin.php:485
+msgid "Site settings updated."
+msgstr "Nettstedets innstillinger er oppdatert."
 
-#: ../../mod/register.php:262
-msgid "Your invitation ID: "
-msgstr "Din invitasjons-ID:"
+#: ../../mod/admin.php:514 ../../mod/settings.php:823
+msgid "No special theme for mobile devices"
+msgstr "Ikke eget tema for mobile enheter"
 
-#: ../../mod/register.php:265 ../../mod/admin.php:573
-msgid "Registration"
-msgstr "Registrering"
+#: ../../mod/admin.php:531 ../../mod/contacts.php:408
+msgid "Never"
+msgstr "Aldri"
 
-#: ../../mod/register.php:273
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Ditt fulle navn (f.eks. Ola Nordmann):"
+#: ../../mod/admin.php:532
+msgid "At post arrival"
+msgstr "Ved mottak av innlegg"
 
-#: ../../mod/register.php:274
-msgid "Your Email Address: "
-msgstr "Din e-postadresse:"
+#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "Ofte"
 
-#: ../../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/admin.php:534 ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "Hver time"
 
-#: ../../mod/register.php:276
-msgid "Choose a nickname: "
-msgstr "Velg et kallenavn:"
+#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "To ganger daglig"
 
-#: ../../mod/register.php:285 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Importer"
+#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "Daglig"
 
-#: ../../mod/register.php:286
-msgid "Import your profile to this friendica instance"
-msgstr "Importer din profil til denne Friendica-instansen."
+#: ../../mod/admin.php:541
+msgid "Multi user instance"
+msgstr "Flerbrukerinstans"
 
-#: ../../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 "Fant ikke profilen."
+#: ../../mod/admin.php:559
+msgid "Closed"
+msgstr "Stengt"
 
-#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
-msgstr "Kontakt ikke funnet."
+#: ../../mod/admin.php:560
+msgid "Requires approval"
+msgstr "Krever godkjenning"
 
-#: ../../mod/dfrn_confirm.php:119
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Denne kan skje innimellom hvis kontakt ble forespurt av begge personer og den allerede er godkjent."
+#: ../../mod/admin.php:561
+msgid "Open"
+msgstr "Åpen"
 
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
-msgstr "Forstod ikke svaret fra det andre stedet."
+#: ../../mod/admin.php:565
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Ingen SSL-retningslinjer, lenker vil spore sidens SSL-tilstand"
 
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
-msgstr "Uventet svar fra det andre stedet:"
+#: ../../mod/admin.php:566
+msgid "Force all links to use SSL"
+msgstr "Tving alle lenker til å bruke SSL"
 
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
-msgstr "Sending av bekreftelse var vellykket. "
+#: ../../mod/admin.php:567
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Selvsignert sertifikat, bruk SSL bare til lokale lenker (ikke anbefalt)"
 
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr "Det andre stedet rapporterte:"
+#: ../../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 "Lagre innstillinger"
 
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
-msgstr "Midlertidig feil. Vennligst vent og prøv igjen."
+#: ../../mod/admin.php:575 ../../mod/register.php:265
+msgid "Registration"
+msgstr "Registrering"
 
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
-msgstr "Introduksjon mislyktes eller ble trukket tilbake."
+#: ../../mod/admin.php:576
+msgid "File upload"
+msgstr "Last opp fil"
 
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Fikk ikke satt kontaktbilde."
+#: ../../mod/admin.php:577
+msgid "Policies"
+msgstr "Retningslinjer"
 
-#: ../../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 er nå venner med %2$s"
+#: ../../mod/admin.php:578
+msgid "Advanced"
+msgstr "Avansert"
 
-#: ../../mod/dfrn_confirm.php:562
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Ingen brukerregistrering funnet for '%s'"
+#: ../../mod/admin.php:579
+msgid "Performance"
+msgstr "Ytelse"
 
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
-msgstr "Krypteringsnøkkelen til nettstedet vårt ser ut til å være ødelagt."
+#: ../../mod/admin.php:580
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Omplasser - ADVARSEL: avansert funksjon. Kan gjøre denne tjeneren utilgjengelig."
 
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "En tom nettsteds-URL ble oppgitt eller URL-en kunne ikke dekrypteres av oss."
+#: ../../mod/admin.php:583
+msgid "Site name"
+msgstr "Nettstedets navn"
 
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "Kontaktinformasjon om deg ble ikke funnet på vårt nettsted."
+#: ../../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 "Nettstedets offentlige nøkkel er ikke tilgjengelig i kontaktregisteret for URL %s."
+#: ../../mod/admin.php:585
+msgid "Additional Info"
+msgstr "Ekstra informasjon"
 
-#: ../../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 "ID-en som ble oppgitt av ditt system har en duplikat i vårt system. Det bør virke hvis du prøver igjen."
+"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/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "Får ikke lagret din kontaktlegitamasjon på vårt system."
+#: ../../mod/admin.php:586
+msgid "System language"
+msgstr "Systemspråk"
 
-#: ../../mod/dfrn_confirm.php:716
-msgid "Unable to update your contact profile details on our system"
-msgstr "Får ikke oppdatert kontaktdetaljene dine på vårt system."
+#: ../../mod/admin.php:587
+msgid "System theme"
+msgstr "Systemtema"
 
-#: ../../mod/dfrn_confirm.php:751
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Tilkobling godtatt på %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 "Standard tema for systemet - kan overstyres av brukerprofiler - <a href='#' id='cnftheme'>endre temainnstillinger</a>"
 
-#: ../../mod/dfrn_confirm.php:800
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s har blitt med %2$s"
+#: ../../mod/admin.php:588
+msgid "Mobile system theme"
+msgstr "Mobilt tema til systemet"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Tillat forbindelse til program"
+#: ../../mod/admin.php:588
+msgid "Theme for mobile devices"
+msgstr "Tema for mobile enheter"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:"
+#: ../../mod/admin.php:589
+msgid "SSL link policy"
+msgstr "Retningslinjer for SSL og lenker"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Vennligst logg inn for å fortsette."
+#: ../../mod/admin.php:589
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Avgjør om genererte lenker skal tvinges til å bruke SSL"
 
-#: ../../mod/api.php:104
+#: ../../mod/admin.php:590
+msgid "Old style 'Share'"
+msgstr "\"Deling\" på gamlemåten"
+
+#: ../../mod/admin.php:590
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Skrur av bbcode \"dele\" for gjentatte elementer."
+
+#: ../../mod/admin.php:591
+msgid "Hide help entry from navigation menu"
+msgstr "Skjul punktet om hjelp fra navigasjonsmenyen"
+
+#: ../../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 "Vil du tillate at dette programmet får tilgang til dine innlegg og kontakter, og/eller kan opprette nye innlegg for deg?"
+"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/lostpass.php:17
-msgid "No valid account found."
-msgstr "Fant ingen gyldig konto."
+#: ../../mod/admin.php:592
+msgid "Single user instance"
+msgstr "Enkeltbrukerinstans"
 
-#: ../../mod/lostpass.php:33
-msgid "Password reset request issued. Check your email."
-msgstr "Forespørsel om å tilbakestille passord er sendt. Sjekk e-posten din."
+#: ../../mod/admin.php:592
+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/lostpass.php:44
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Forespørsel om tilbakestilling av passord ved %s"
+#: ../../mod/admin.php:593
+msgid "Maximum image size"
+msgstr "Maksimum bildestørrelse"
 
-#: ../../mod/lostpass.php:66
+#: ../../mod/admin.php:593
 msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes."
-
-#: ../../mod/lostpass.php:85
-msgid "Your password has been reset as requested."
-msgstr "Ditt passord er tilbakestilt som forespurt."
+"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/lostpass.php:86
-msgid "Your new password is"
-msgstr "Ditt nye passord er"
+#: ../../mod/admin.php:594
+msgid "Maximum image length"
+msgstr "Maksimal bildelenge"
 
-#: ../../mod/lostpass.php:87
-msgid "Save or copy your new password - and then"
-msgstr "Lagre eller kopier ditt nye passord, og deretter"
+#: ../../mod/admin.php:594
+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/lostpass.php:88
-msgid "click here to login"
-msgstr "klikk her for å logge inn"
+#: ../../mod/admin.php:595
+msgid "JPEG image quality"
+msgstr "JPEG-bildekvalitet"
 
-#: ../../mod/lostpass.php:89
+#: ../../mod/admin.php:595
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Passordet ditt kan endres fra siden <em>Innstillinger</em> etter vellykket logg inn."
+"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/lostpass.php:107
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Ditt passord har blitt endret %s"
+#: ../../mod/admin.php:597
+msgid "Register policy"
+msgstr "Registrer retningslinjer"
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Glemte du passordet?"
+#: ../../mod/admin.php:598
+msgid "Maximum Daily Registrations"
+msgstr "Maksimalt antall daglige registreringer"
 
-#: ../../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 "Skriv inn e-postadressen og send inn for å tilbakestille passordet ditt. Sjekk deretter e-posten din for nærmere forklaring."
+"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/lostpass.php:124
-msgid "Nickname or Email: "
-msgstr "Kallenavn eller e-post:"
+#: ../../mod/admin.php:599
+msgid "Register text"
+msgstr "Registrer tekst"
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Tilbakestill"
+#: ../../mod/admin.php:599
+msgid "Will be displayed prominently on the registration page."
+msgstr "Vil bli vist på en fremtredende måte på registreringssiden."
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes."
+#: ../../mod/admin.php:600
+msgid "Accounts abandoned after x days"
+msgstr "Kontoer forlatt etter x dager"
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
-msgstr "Ingen mottaker valgt."
+#: ../../mod/admin.php:600
+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/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Ikke i stand til avgjøre plasseringen til ditt hjemsted."
+#: ../../mod/admin.php:601
+msgid "Allowed friend domains"
+msgstr "Tillate vennedomener"
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
-msgstr "Meldingen kunne ikke sendes."
+#: ../../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 "Kommaseparert liste med domener som har lov til å etablere vennskap med dette nettstedet.\nJokertegn aksepteres. Tom for å tillate alle domener."
 
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr "Meldingsinnsamling mislyktes."
+#: ../../mod/admin.php:602
+msgid "Allowed email domains"
+msgstr "Tillate e-postdomener"
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "Melding sendt."
+#: ../../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 "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er tillatt. Tom for å tillate alle domener."
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Ingen mottaker."
+#: ../../mod/admin.php:603
+msgid "Block public"
+msgstr "Utesteng publikum"
 
-#: ../../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 "Vennligst skriv inn en lenke 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 "Kryss av for å blokkere offentlig tilgang til sider som ellers ville vært offentlige personlige sider med mindre du er logget inn."
 
-#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
-msgid "Send Private Message"
-msgstr "Send privat melding"
+#: ../../mod/admin.php:604
+msgid "Force publish"
+msgstr "Tving publisering"
 
-#: ../../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 "Hvis du ønsker å la %s få svare, vennligst sjekk om personverninnstillingene på ditt nettsted tillater private post fra ukjente avsendere."
+"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/wallmessage.php:144 ../../mod/message.php:320
-#: ../../mod/message.php:553
-msgid "To:"
-msgstr "Til:"
+#: ../../mod/admin.php:605
+msgid "Global directory update URL"
+msgstr "URL for oppdatering av Global-katalog"
 
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
-#: ../../mod/message.php:555
-msgid "Subject:"
-msgstr "Emne:"
+#: ../../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 for å oppdatere den globale katalogen. Hvis denne ikke er angitt, så vil den globale katalogen være helt utilgjengelige for programmet."
 
-#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
-#: ../../mod/message.php:558 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Din melding:"
+#: ../../mod/admin.php:606
+msgid "Allow threaded items"
+msgstr "Tillat en tråd av elementer "
 
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../include/conversation.php:1084
-msgid "Upload photo"
-msgstr "Last opp bilde"
+#: ../../mod/admin.php:606
+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/wallmessage.php:155 ../../mod/editpost.php:114
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../include/conversation.php:1088
-msgid "Insert web link"
-msgstr "Sett inn web-adresse"
+#: ../../mod/admin.php:607
+msgid "Private posts by default for new users"
+msgstr "Private meldinger som standard for nye brukere"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Velkommen til Friendica"
+#: ../../mod/admin.php:607
+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/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Sjekkliste for nye medlemmer"
+#: ../../mod/admin.php:608
+msgid "Don't include post content in email notifications"
+msgstr "Ikke inkluder innholdet i en melding i epostvarsler"
 
-#: ../../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 "Vi vil gjerne gi noe noen tips og lenker for å hjelpe deg til en hyggelig opplevelse. Klikk på et element for å besøke den relevante siden. En lenke til denne siden vil være synlig på din hovedside i to uker etter at du registrerte deg og så vil den bli borte av seg selv."
-
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Komme igang"
+"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/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica gjennomgang"
+#: ../../mod/admin.php:609
+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/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 "På <em>Hurtigstart</em>-siden din, så finner du en kort introduksjon til profilen din og nettverksfanen, hvordan du oppretter nye forbindelser, og hvordan du finner grupper å bli med i."
+"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/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Gå til Dine innstillinger"
+#: ../../mod/admin.php:610
+msgid "Don't embed private images in posts"
+msgstr "Ikke innebygg private bilder i innlegg"
 
-#: ../../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 "På siden <em>Innstillinger</em> - bytt passordet du fikk. Merk deg også Din identitetsadresse. Denne ser ut som en vanlig e-postadresse, og er nyttig for å bli venner i den frie sosiale web'en."
+"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 "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/newmember.php:28
+#: ../../mod/admin.php:611
+msgid "Allow Users to set remote_self"
+msgstr "Tillat brukere å sette remote_self"
+
+#: ../../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 "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg."
+"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/newmember.php:36 ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Last opp profilbilde"
+#: ../../mod/admin.php:612
+msgid "Block multiple registrations"
+msgstr "Blokker flere registreringer"
 
-#: ../../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 "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier viser at folk som har ekte bilde av seg selv har ti ganger større sannsynlighet for å få venner enn folk som ikke gjør det."
+#: ../../mod/admin.php:612
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Ikke tillat brukere å registrere ytterligere kontoer til bruk som sider."
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Endre profilen din"
+#: ../../mod/admin.php:613
+msgid "OpenID support"
+msgstr "OpenID-støtte"
 
-#: ../../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 "Du kan endre <strong>standardprofilen</strong> din slik du ønsker. Se over innstillingene som lar deg skjule vennelisten og skjule profilen fra ukjente besøkende."
+#: ../../mod/admin.php:613
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-støtte for registrering og innlogging."
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Profilnøkkelord"
+#: ../../mod/admin.php:614
+msgid "Fullname check"
+msgstr "Sjekk fullt navn"
 
-#: ../../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 "Legg til noen offentlige nøkkelord til standardprofilen din som beskriver dine interesser. Det kan hende vi klarer å finne andre folk med liknende interesser og foreslå vennskap."
+"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/newmember.php:44
-msgid "Connecting"
-msgstr "Kobling"
+#: ../../mod/admin.php:615
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 regulære uttrykk"
 
-#: ../../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 "Bruk PHP UTF8 regulære uttrykk"
 
-#: ../../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 "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgfritt) importere alle dine Facebook-venner og samtaler."
+#: ../../mod/admin.php:616
+msgid "Show Community Page"
+msgstr "Vis Felleskap-side"
 
-#: ../../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>Hvis</em> dette er din egen personlige tjener, så kan installasjon av Facebook-tillegget gjøre overgangen til den frie sosiale web'en lettere."
+"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/newmember.php:56
-msgid "Importing Emails"
-msgstr "Importere e-post"
+#: ../../mod/admin.php:617
+msgid "Enable OStatus support"
+msgstr "Aktiver Ostatus-støtte"
 
-#: ../../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 "Skriv inn tilgangsinformasjon til e-posten din på siden for Koblingsinnstillinger, hvis du ønsker å importere og samhandle med venner eller e-postlister fra din e-post INNBOKS"
+"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-samhandling (StatusNet, GNU Social osv.). All kommunikasjon via OStatus er offentlig, så advarsler om personvern vil bli vist av og til."
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Gå til Dine kontakter-siden"
+#: ../../mod/admin.php:618
+msgid "OStatus conversation completion interval"
+msgstr "OStatus intervall for samtalefullførelse"
 
-#: ../../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 "Dine kontakter-siden er der du håndterer vennskap og skaper forbindelser med venner på andre nettverk. Vanligvis skriver du deres adresse eller nettsteds-URL i dialogboksen <em>Legg til ny kontakt</em>"
+"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/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Gå til Din lokale katalog"
+#: ../../mod/admin.php:619
+msgid "Enable Diaspora support"
+msgstr "Aktiver Diaspora-støtte"
 
-#: ../../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 "Katalog-siden lar deg finne andre folk i dette nettverket eller andre forente nettsteder. Se etter en <em>Connect</em> eller <em>Follow</em> lenke på profilsiden deres. Oppgi din egen identitetsadresse hvis du blir forespurt om det."
+#: ../../mod/admin.php:619
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Tilby innebygget kompatibilitet med Diaspora-nettverket."
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Finn nye personer"
+#: ../../mod/admin.php:620
+msgid "Only allow Friendica contacts"
+msgstr "Bare tillat Friendica-kontakter"
 
-#: ../../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 "I sidepanelet på Kontakter-siden er flere verktøy for å finne nye venner. Vi kan matche personer utfra interesse, slå opp personer på navn eller interesse, og gi forslag basert på nettverksforbindelser. På et helt nytt nettsted, så vil venneforslag vanligvis dukke opp innen 24 timer."
-
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Grupper"
+"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/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Kontaktgrupper"
+#: ../../mod/admin.php:621
+msgid "Verify SSL"
+msgstr "Bekreft SSL"
 
-#: ../../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 "Når du har fått noen venner, så kan du organisere dem i private samtalegrupper i sidefeltet på Kontakt-siden din, og deretter kan du samhandle med hver gruppe privat på din Nettverk-side."
+"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/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Hvorfor er ikke mine innlegg offentlige?"
+#: ../../mod/admin.php:622
+msgid "Proxy user"
+msgstr "Brukernavn til mellomtjener"
 
-#: ../../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 respekterer ditt privatliv. Som standard, så vil dine innlegg bare vises til personer du har lagt til som venner. For mer informasjon, se Hjelp-siden fra lenken ovenfor."
+#: ../../mod/admin.php:623
+msgid "Proxy URL"
+msgstr "Mellomtjener URL"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Få hjelp"
+#: ../../mod/admin.php:624
+msgid "Network timeout"
+msgstr "Tidsavbrudd for nettverk"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Gå til Hjelp-siden"
+#: ../../mod/admin.php:624
+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/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Våre <strong>hjelpesider</strong> kan leses for flere detaljer og ressurser om andre egenskaper ved programmet."
+#: ../../mod/admin.php:625
+msgid "Delivery interval"
+msgstr "Leveringsintervall"
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Vil du virkelig slette dette forslaget?"
+#: ../../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 "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/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 "Avbryt"
+#: ../../mod/admin.php:626
+msgid "Poll interval"
+msgstr "Spørreintervall"
 
-#: ../../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 "Ingen forslag tilgjengelig. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer."
+"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/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "Ignorér/Skjul"
+#: ../../mod/admin.php:627
+msgid "Maximum Load Average"
+msgstr "Maksimal snittlast"
 
-#: ../../mod/network.php:136
-msgid "Search Results For:"
-msgstr "Søkeresultater for:"
+#: ../../mod/admin.php:627
+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/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Fjern uttrykk"
+#: ../../mod/admin.php:629
+msgid "Use MySQL full text engine"
+msgstr "Bruk MySQL fulltekstmotor"
 
-#: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30
-#: ../../include/features.php:42
-msgid "Saved Searches"
-msgstr "Lagrede søk"
+#: ../../mod/admin.php:629
+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/network.php:189 ../../include/group.php:275
-msgid "add"
-msgstr "legg til"
+#: ../../mod/admin.php:630
+msgid "Suppress Language"
+msgstr "Ikke vis språk"
 
-#: ../../mod/network.php:350
-msgid "Commented Order"
-msgstr "Etter kommentarer"
+#: ../../mod/admin.php:630
+msgid "Suppress language information in meta information about a posting."
+msgstr "Ikke vis språkinformasjon i metainformasjon om et innlegg."
 
-#: ../../mod/network.php:353
-msgid "Sort by Comment Date"
-msgstr "Sorter etter kommentardato"
+#: ../../mod/admin.php:631
+msgid "Path to item cache"
+msgstr "Sti til mellomlager for elementer"
 
-#: ../../mod/network.php:356
-msgid "Posted Order"
-msgstr "Etter innlegg"
+#: ../../mod/admin.php:632
+msgid "Cache duration in seconds"
+msgstr "Mellomlagringens varighet i sekunder"
 
-#: ../../mod/network.php:359
-msgid "Sort by Post Date"
-msgstr "Sorter etter innleggsdato"
+#: ../../mod/admin.php:632
+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/network.php:365 ../../mod/notifications.php:88
-msgid "Personal"
-msgstr "Personlig"
+#: ../../mod/admin.php:633
+msgid "Path for lock file"
+msgstr "Sti til fillås"
 
-#: ../../mod/network.php:368
-msgid "Posts that mention or involve you"
-msgstr "Innlegg som nevner eller involverer deg"
+#: ../../mod/admin.php:634
+msgid "Temp path"
+msgstr "Temp-sti"
 
-#: ../../mod/network.php:374
-msgid "New"
-msgstr "Ny"
+#: ../../mod/admin.php:635
+msgid "Base path to installation"
+msgstr "Sti til installasjonsbasen"
 
-#: ../../mod/network.php:377
-msgid "Activity Stream - by date"
-msgstr "Aktivitetsstrøm - etter dato"
+#: ../../mod/admin.php:637
+msgid "New base url"
+msgstr "Ny base URL"
 
-#: ../../mod/network.php:383
-msgid "Shared Links"
-msgstr "Delte lenker"
+#: ../../mod/admin.php:655
+msgid "Update has been marked successful"
+msgstr "Oppdatering har blitt markert som vellykket"
 
-#: ../../mod/network.php:386
-msgid "Interesting Links"
-msgstr "Interessante lenker"
+#: ../../mod/admin.php:665
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "Utføring av %s mislyktes. Sjekk systemlogger."
 
-#: ../../mod/network.php:392
-msgid "Starred"
-msgstr "Med stjerne"
+#: ../../mod/admin.php:668
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Oppdatering %s ble iverksatt på en vellykket måte."
 
-#: ../../mod/network.php:395
-msgid "Favourite Posts"
-msgstr "Favorittinnlegg"
+#: ../../mod/admin.php:672
+#, 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/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] "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk."
-msgstr[1] "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk."
+msgid "Update function %s could not be found."
+msgstr "Oppdateringsfunksjon %s ble ikke funnet."
 
-#: ../../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/admin.php:690
+msgid "No failed updates."
+msgstr "Ingen mislykkede oppdateringer."
 
-#: ../../mod/network.php:514 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Gruppen finnes ikke"
+#: ../../mod/admin.php:694
+msgid "Failed Updates"
+msgstr "Mislykkede oppdateringer"
 
-#: ../../mod/network.php:531 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "Gruppen er tom"
+#: ../../mod/admin.php:695
+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/network.php:538 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Gruppe:"
+#: ../../mod/admin.php:696
+msgid "Mark success (if update was manually applied)"
+msgstr "Marker vellykket (hvis oppdatering ble iverksatt manuelt)"
 
-#: ../../mod/network.php:548
-msgid "Contact: "
-msgstr "Kontakt:"
+#: ../../mod/admin.php:697
+msgid "Attempt to execute this update step automatically"
+msgstr "Forsøk å utføre dette oppdateringspunktet automatisk"
 
-#: ../../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/admin.php:737 ../../mod/register.php:92 ../../mod/regmod.php:54
+#, php-format
+msgid "Registration details for %s"
+msgstr "Registeringsdetaljer for %s"
 
-#: ../../mod/network.php:555
-msgid "Invalid contact."
-msgstr "Ugyldig kontakt."
+#: ../../mod/admin.php:743
+msgid "Registration successful. Email send to user"
+msgstr "Vellykket registrering. E-post er sendt til bruker"
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica kommunikasjonstjeneste - oppsett"
+#: ../../mod/admin.php:753
+#, 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/install.php:123
-msgid "Could not connect to database."
-msgstr "Kunne ikke koble til database."
+#: ../../mod/admin.php:760
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s bruker slettet"
+msgstr[1] "%s brukere slettet"
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Kunne ikke lage tabell."
+#: ../../mod/admin.php:799
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Brukeren '%s' er slettet"
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "Databasen til Friendica-nettstedet ditt har blitt installert."
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Brukeren '%s' er ikke blokkert"
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql."
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Brukeren '%s' er blokkert"
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:521
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Vennligst se filen \"INSTALL.txt\"."
+#: ../../mod/admin.php:902
+msgid "Add User"
+msgstr "Legg til bruker"
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Systemsjekk"
+#: ../../mod/admin.php:903
+msgid "select all"
+msgstr "velg alle"
 
-#: ../../mod/install.php:207 ../../mod/events.php:373
-msgid "Next"
-msgstr "Neste"
+#: ../../mod/admin.php:904
+msgid "User registrations waiting for confirm"
+msgstr "Brukerregistreringer venter på bekreftelse"
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Sjekk på nytt"
+#: ../../mod/admin.php:905
+msgid "User waiting for permanent deletion"
+msgstr "Bruker venter på permanent sletting"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Databaseforbindelse"
+#: ../../mod/admin.php:906
+msgid "Request date"
+msgstr "Forespørselsdato"
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "For å installere Friendica må vi vite hvordan man kan koble seg til din database."
+#: ../../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 "Navn"
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene."
+#: ../../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-post"
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter."
+#: ../../mod/admin.php:907
+msgid "No registrations."
+msgstr "Ingen registreringer."
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Databasetjenerens navn"
+#: ../../mod/admin.php:909
+msgid "Deny"
+msgstr "Nekt"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Database brukernavn"
+#: ../../mod/admin.php:911 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Block"
+msgstr "Blokker"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Database passord"
+#: ../../mod/admin.php:912 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Unblock"
+msgstr "Ikke blokker"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Databasenavn"
+#: ../../mod/admin.php:913
+msgid "Site admin"
+msgstr "Nettstedets administrator"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Nettstedsadministrator sin e-postadresse"
+#: ../../mod/admin.php:914
+msgid "Account expired"
+msgstr "Konto utgått"
 
-#: ../../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 "Din kontos e-postadresse må stemme med denne for å kunne bruke panelet for webadministrasjon."
+#: ../../mod/admin.php:917
+msgid "New User"
+msgstr "Ny bruker"
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Vennligst velg en standard tidssone for ditt nettsted"
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Register date"
+msgstr "Registreringsdato"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Innstillinger for nettstedet"
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last login"
+msgstr "Siste innlogging"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Fant ikke en kommandolinjeversjon av PHP i webtjenerens PATH."
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last item"
+msgstr "Siste element"
 
-#: ../../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 "Hvis du ikke har installert kommandolinjeversjonen av PHP på tjeneren, så vil du ikke kunne kjøre bakgrunnsspørring via cron. Se <a href='http://friendica.com/node/27'>'Aktivere tidsstyrte oppgaver'</a>"
+#: ../../mod/admin.php:918
+msgid "Deleted since"
+msgstr "Slettet siden"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "PHP kjørefil sin sti"
+#: ../../mod/admin.php:919 ../../mod/settings.php:36
+msgid "Account"
+msgstr "Konto"
 
-#: ../../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 "Skriv inn hele stien til php kjørefilen. Du kan la denne stå blank for å fortsette installasjonen."
-
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "Kommandolinje PHP"
+"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/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "PHP kjørefilen er ikke php cli binærfil (kan være cgi-fgci versjon)"
+#: ../../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 "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/install.php:341
-msgid "Found PHP version: "
-msgstr "Fant PHP-versjon:"
+#: ../../mod/admin.php:932
+msgid "Name of the new user."
+msgstr "Navnet til den nye brukeren."
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "PHP cli binærfil"
+#: ../../mod/admin.php:933
+msgid "Nickname"
+msgstr "Kallenavn"
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert."
+#: ../../mod/admin.php:933
+msgid "Nickname of the new user."
+msgstr "Kallenavnet til den nye brukeren."
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "Dette er nødvendig for at meldingslevering skal virke."
+#: ../../mod/admin.php:934
+msgid "Email address of the new user."
+msgstr "E-postadressen til den nye brukeren."
 
-#: ../../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 "Tillegget %s er avskrudd."
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler"
+#: ../../mod/admin.php:971
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Tillegget %s er aktivert."
 
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: ../../mod/admin.php:981 ../../mod/admin.php:1195
+msgid "Disable"
+msgstr "Skru av"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Lag krypteringsnøkler"
+#: ../../mod/admin.php:983 ../../mod/admin.php:1197
+msgid "Enable"
+msgstr "Aktiver"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "libCurl PHP modul"
+#: ../../mod/admin.php:1006 ../../mod/admin.php:1225
+msgid "Toggle"
+msgstr "Veksle"
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "GD graphics PHP modul"
+#: ../../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 "Innstillinger"
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP modul"
+#: ../../mod/admin.php:1014 ../../mod/admin.php:1235
+msgid "Author: "
+msgstr "Forfatter:"
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "mysqli PHP modul"
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1236
+msgid "Maintainer: "
+msgstr "Vedlikeholder:"
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "mb_string PHP modul"
+#: ../../mod/admin.php:1155
+msgid "No themes found."
+msgstr "Ingen temaer funnet."
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite modul"
+#: ../../mod/admin.php:1217
+msgid "Screenshot"
+msgstr "Skjermbilde"
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert."
+#: ../../mod/admin.php:1263
+msgid "[Experimental]"
+msgstr "[Eksperimentell]"
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert."
+#: ../../mod/admin.php:1264
+msgid "[Unsupported]"
+msgstr "[Ikke støttet]"
 
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert."
+#: ../../mod/admin.php:1291
+msgid "Log settings updated."
+msgstr "Logginnstillinger er oppdatert."
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Feil: openssl PHP-modulen er påkrevet, men er ikke installert."
+#: ../../mod/admin.php:1347
+msgid "Clear"
+msgstr "Tøm"
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert."
+#: ../../mod/admin.php:1353
+msgid "Enable Debugging"
+msgstr "Aktiver feilsøking"
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Feil: mb_string PHP-modulen er påkrevet men ikke installert."
+#: ../../mod/admin.php:1354
+msgid "Log file"
+msgstr "Loggfil"
 
-#: ../../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 "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette."
+"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/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 "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan."
+#: ../../mod/admin.php:1355
+msgid "Log level"
+msgstr "Loggnivå"
 
-#: ../../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 "På slutten av denne prosedyren, så gir vi deg en tekst å lagre i en fil kalt .htconfig.php i din Friendica sin toppmappe."
+#: ../../mod/admin.php:1404 ../../mod/contacts.php:487
+msgid "Update now"
+msgstr "Oppdater 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 "Du kan alternativt hoppe over denne prosedyren og utføre en manuell installasjon. Vennligst se filen \"INSTALL.txt\" for instruksjoner."
+#: ../../mod/admin.php:1405
+msgid "Close"
+msgstr "Lukk"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php er skrivbar"
+#: ../../mod/admin.php:1411
+msgid "FTP Host"
+msgstr "FTP-tjener"
 
-#: ../../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 bruker Smarty3 malmotor for å gjengi sine webvisninger. Smarty3 kompilerer maler til PHP for å gjøre gjengivelse raskere."
+#: ../../mod/admin.php:1412
+msgid "FTP Path"
+msgstr "FTP-sti"
 
-#: ../../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 "For å lagre disse kompilerte malene må webtjenesten ha skrivetilgang til katalogen view/smarty3/ som er under Friendica sin toppnivåmappe."
+#: ../../mod/admin.php:1413
+msgid "FTP User"
+msgstr "FTP-bruker"
 
-#: ../../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 "Vennligst sjekk at brukeren din webtjeneste kjører som (for eksempel www-data) har skrivetilgang til denne mappen."
+#: ../../mod/admin.php:1414
+msgid "FTP Password"
+msgstr "FTP-passord"
 
-#: ../../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 "Merknad: som et sikkerhetstiltak, du bør gi webtjenesten skrivetilgang kun til view/smarty3/ - ikke til malfilene (.tpl) som den inneholder."
-
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 er skrivbar"
+#: ../../mod/message.php:9 ../../include/nav.php:161
+msgid "New Message"
+msgstr "Ny melding"
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "URL omskriving i .htaccess virker ikke. Sjekk konfigurasjonen til webtjenesten."
+#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
+msgid "No recipient selected."
+msgstr "Ingen mottaker valgt."
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "URL omskriving virker"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Mislyktes med å finne kontaktinformasjon."
 
-#: ../../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 "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener."
+#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr "Meldingen kunne ikke sendes."
 
-#: ../../mod/install.php:508
-msgid "Errors encountered creating database tables."
-msgstr "Feil oppstod under opprettelsen av databasetabeller."
+#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
+msgid "Message collection failure."
+msgstr "Meldingsinnsamling mislyktes."
 
-#: ../../mod/install.php:519
-msgid "<h1>What next</h1>"
-msgstr "<h1>Hva nå</h1>"
+#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
+msgid "Message sent."
+msgstr "Melding sendt."
 
-#: ../../mod/install.php:520
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering."
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Ønsker du virkelig å slette denne meldingen?"
 
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr "Temainnstillinger oppdatert."
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Melding slettet."
 
-#: ../../mod/admin.php:101 ../../mod/admin.php:571
-msgid "Site"
-msgstr "Nettsted"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Samtale slettet."
 
-#: ../../mod/admin.php:102 ../../mod/admin.php:899 ../../mod/admin.php:914
-msgid "Users"
-msgstr "Brukere"
+#: ../../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 "Vennligst skriv inn en lenke URL:"
 
-#: ../../mod/admin.php:103 ../../mod/admin.php:1003 ../../mod/admin.php:1045
-#: ../../mod/settings.php:56
-msgid "Plugins"
-msgstr "Tillegg"
+#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
+msgid "Send Private Message"
+msgstr "Send privat melding"
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:1211 ../../mod/admin.php:1245
-msgid "Themes"
-msgstr "Tema"
+#: ../../mod/message.php:320 ../../mod/message.php:553
+#: ../../mod/wallmessage.php:144
+msgid "To:"
+msgstr "Til:"
 
-#: ../../mod/admin.php:105
-msgid "DB updates"
-msgstr "Databaseoppdateringer"
+#: ../../mod/message.php:325 ../../mod/message.php:555
+#: ../../mod/wallmessage.php:145
+msgid "Subject:"
+msgstr "Emne:"
 
-#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1332
-msgid "Logs"
-msgstr "Logger"
+#: ../../mod/message.php:329 ../../mod/message.php:558
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+msgid "Your message:"
+msgstr "Din melding:"
 
-#: ../../mod/admin.php:125 ../../include/nav.php:180
-msgid "Admin"
-msgstr "Administrator"
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
+#: ../../include/conversation.php:1089
+msgid "Upload photo"
+msgstr "Last opp bilde"
 
-#: ../../mod/admin.php:126
-msgid "Plugin Features"
-msgstr "Utvidelse - egenskaper"
+#: ../../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 "Sett inn web-adresse"
 
-#: ../../mod/admin.php:128
-msgid "User registrations waiting for confirmation"
-msgstr "Brukerregistreringer venter på bekreftelse"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Ingen meldinger."
 
-#: ../../mod/admin.php:187 ../../mod/admin.php:853
-msgid "Normal Account"
-msgstr "Vanlig konto"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Ukjent avsender - %s"
 
-#: ../../mod/admin.php:188 ../../mod/admin.php:854
-msgid "Soapbox Account"
-msgstr "Talerstol-konto"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Du og %s"
 
-#: ../../mod/admin.php:189 ../../mod/admin.php:855
-msgid "Community/Celebrity Account"
-msgstr "Gruppe-/kjendiskonto"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s og du"
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:856
-msgid "Automatic Friend Account"
-msgstr "Automatisk vennekonto"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Slett samtale"
 
-#: ../../mod/admin.php:191
-msgid "Blog Account"
-msgstr "Bloggkonto"
+#: ../../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 "Privat forum"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d melding"
+msgstr[1] "%d meldinger"
 
-#: ../../mod/admin.php:211
-msgid "Message queues"
-msgstr "Meldingskøer"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Melding utilgjengelig."
 
-#: ../../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"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Slett melding"
 
-#: ../../mod/admin.php:217
-msgid "Summary"
-msgstr "Oppsummering"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Ingen sikker kommunikasjon tilgjengelig. Du <strong>kan kanskje</strong> svare fra senderens profilside."
 
-#: ../../mod/admin.php:219
-msgid "Registered users"
-msgstr "Registrerte brukere"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Send svar"
 
-#: ../../mod/admin.php:221
-msgid "Pending registrations"
-msgstr "Ventende registreringer"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Fant ikke elementet"
 
-#: ../../mod/admin.php:222
-msgid "Version"
-msgstr "Versjon"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Endre innlegg"
 
-#: ../../mod/admin.php:224
-msgid "Active plugins"
-msgstr "Aktive tillegg"
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1090
+msgid "upload photo"
+msgstr "last opp bilde"
 
-#: ../../mod/admin.php:247
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Kan ikke tolke base URL. Må ha minst <scheme>://<domain>"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1091
+msgid "Attach file"
+msgstr "Legg ved fil"
 
-#: ../../mod/admin.php:483
-msgid "Site settings updated."
-msgstr "Nettstedets innstillinger er oppdatert."
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1092
+msgid "attach file"
+msgstr "legg ved fil"
 
-#: ../../mod/admin.php:512 ../../mod/settings.php:822
-msgid "No special theme for mobile devices"
-msgstr "Ikke eget tema for mobile enheter"
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1094
+msgid "web link"
+msgstr "web-adresse"
 
-#: ../../mod/admin.php:529 ../../mod/contacts.php:408
-msgid "Never"
-msgstr "Aldri"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1095
+msgid "Insert video link"
+msgstr "Sett inn video-link"
 
-#: ../../mod/admin.php:530
-msgid "At post arrival"
-msgstr "Ved mottak av innlegg"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1096
+msgid "video link"
+msgstr "videolink"
 
-#: ../../mod/admin.php:531 ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Ofte"
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1097
+msgid "Insert audio link"
+msgstr "Sett inn lydlink"
 
-#: ../../mod/admin.php:532 ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "Hver time"
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1098
+msgid "audio link"
+msgstr "lydlink"
 
-#: ../../mod/admin.php:533 ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "To ganger daglig"
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1099
+msgid "Set your location"
+msgstr "Angi din plassering"
 
-#: ../../mod/admin.php:534 ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "Daglig"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1100
+msgid "set location"
+msgstr "angi plassering"
 
-#: ../../mod/admin.php:539
-msgid "Multi user instance"
-msgstr "Flerbrukerinstans"
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1101
+msgid "Clear browser location"
+msgstr "Fjern nettleserplassering"
 
-#: ../../mod/admin.php:557
-msgid "Closed"
-msgstr "Stengt"
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1102
+msgid "clear location"
+msgstr "fjern plassering"
 
-#: ../../mod/admin.php:558
-msgid "Requires approval"
-msgstr "Krever godkjenning"
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1108
+msgid "Permission settings"
+msgstr "Tillatelser"
 
-#: ../../mod/admin.php:559
-msgid "Open"
-msgstr "Åpen"
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1117
+msgid "CC: email addresses"
+msgstr "Kopi: e-postadresser"
 
-#: ../../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/editpost.php:134 ../../include/conversation.php:1118
+msgid "Public post"
+msgstr "Offentlig innlegg"
 
-#: ../../mod/admin.php:564
-msgid "Force all links to use SSL"
-msgstr "Tving alle lenker til å bruke SSL"
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1104
+msgid "Set title"
+msgstr "Lagre tittel"
 
-#: ../../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/editpost.php:139 ../../include/conversation.php:1106
+msgid "Categories (comma-separated list)"
+msgstr "Kategorier (kommaseparert liste)"
 
-#: ../../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/editpost.php:140 ../../include/conversation.php:1120
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Eksempel: ola@example.com, kari@example.com"
 
-#: ../../mod/admin.php:574
-msgid "File upload"
-msgstr "Last opp fil"
+#: ../../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 "Fant ikke profilen."
 
-#: ../../mod/admin.php:575
-msgid "Policies"
-msgstr "Retningslinjer"
+#: ../../mod/dfrn_confirm.php:119
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Denne kan skje innimellom hvis kontakt ble forespurt av begge personer og den allerede er godkjent."
 
-#: ../../mod/admin.php:576
-msgid "Advanced"
-msgstr "Avansert"
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "Forstod ikke svaret fra det andre stedet."
 
-#: ../../mod/admin.php:577
-msgid "Performance"
-msgstr "Ytelse"
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "Uventet svar fra det andre stedet:"
 
-#: ../../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/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "Sending av bekreftelse var vellykket. "
 
-#: ../../mod/admin.php:581
-msgid "Site name"
-msgstr "Nettstedets navn"
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "Det andre stedet rapporterte:"
 
-#: ../../mod/admin.php:582
-msgid "Banner/Logo"
-msgstr "Banner/logo"
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "Midlertidig feil. Vennligst vent og prøv igjen."
 
-#: ../../mod/admin.php:583
-msgid "Additional Info"
-msgstr "Ekstra informasjon"
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "Introduksjon mislyktes eller ble trukket tilbake."
 
-#: ../../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/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Fikk ikke satt kontaktbilde."
 
-#: ../../mod/admin.php:584
-msgid "System language"
-msgstr "Systemspråk"
+#: ../../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 er nå venner med %2$s"
 
-#: ../../mod/admin.php:585
-msgid "System theme"
-msgstr "Systemtema"
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Ingen brukerregistrering funnet for '%s'"
 
-#: ../../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/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "Krypteringsnøkkelen til nettstedet vårt ser ut til å være ødelagt."
 
-#: ../../mod/admin.php:586
-msgid "Mobile system theme"
-msgstr "Mobilt tema til systemet"
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "En tom nettsteds-URL ble oppgitt eller URL-en kunne ikke dekrypteres av oss."
 
-#: ../../mod/admin.php:586
-msgid "Theme for mobile devices"
-msgstr "Tema for mobile enheter"
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "Kontaktinformasjon om deg ble ikke funnet på vårt nettsted."
 
-#: ../../mod/admin.php:587
-msgid "SSL link policy"
-msgstr "Retningslinjer for SSL og lenker"
+#: ../../mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Nettstedets offentlige nøkkel er ikke tilgjengelig i kontaktregisteret for URL %s."
 
-#: ../../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/dfrn_confirm.php:638
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "ID-en som ble oppgitt av ditt system har en duplikat i vårt system. Det bør virke hvis du prøver igjen."
 
-#: ../../mod/admin.php:588
-msgid "Old style 'Share'"
-msgstr "\"Deling\" på gamlemåten"
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Får ikke lagret din kontaktlegitamasjon på vårt system."
 
-#: ../../mod/admin.php:588
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Skrur av bbcode \"dele\" for gjentatte elementer."
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr "Får ikke oppdatert kontaktdetaljene dine på vårt system."
 
-#: ../../mod/admin.php:589
-msgid "Hide help entry from navigation menu"
-msgstr "Skjul punktet om hjelp fra navigasjonsmenyen"
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Tilkobling godtatt på %s"
 
-#: ../../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/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s har blitt med %2$s"
 
-#: ../../mod/admin.php:590
-msgid "Single user instance"
-msgstr "Enkeltbrukerinstans"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Hendelsens tittel og starttidspunkt er påkrevet."
 
-#: ../../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/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../mod/admin.php:591
-msgid "Maximum image size"
-msgstr "Maksimum bildestørrelse"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Rediger hendelse"
 
-#: ../../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/events.php:335 ../../include/text.php:1633
+#: ../../include/text.php:1644
+msgid "link to source"
+msgstr "lenke til kilde"
 
-#: ../../mod/admin.php:592
-msgid "Maximum image length"
-msgstr "Maksimal bildelenge"
+#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127
+#: ../../boot.php:2003 ../../include/nav.php:79
+msgid "Events"
+msgstr "Hendelser"
 
-#: ../../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/events.php:371
+msgid "Create New Event"
+msgstr "Lag ny hendelse"
 
-#: ../../mod/admin.php:593
-msgid "JPEG image quality"
-msgstr "JPEG-bildekvalitet"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Forrige"
 
-#: ../../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/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Neste"
 
-#: ../../mod/admin.php:595
-msgid "Register policy"
-msgstr "Registrer retningslinjer"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "time:minutt"
 
-#: ../../mod/admin.php:596
-msgid "Maximum Daily Registrations"
-msgstr "Maksimalt antall daglige registreringer"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Hendelsesdetaljer"
 
-#: ../../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/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Formatet er  %s %s. Startdato og tittel er påkrevet."
 
-#: ../../mod/admin.php:597
-msgid "Register text"
-msgstr "Registrer tekst"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Hendelsen  starter:"
 
-#: ../../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/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Påkrevet"
 
-#: ../../mod/admin.php:598
-msgid "Accounts abandoned after x days"
-msgstr "Kontoer forlatt etter x dager"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Avslutningsdato/-tid er ukjent eller ikke relevant"
 
-#: ../../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/events.php:464
+msgid "Event Finishes:"
+msgstr "Hendelsen slutter:"
 
-#: ../../mod/admin.php:599
-msgid "Allowed friend domains"
-msgstr "Tillate vennedomener"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Tilpass til iakttakerens tidssone"
 
-#: ../../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/events.php:469
+msgid "Description:"
+msgstr "Beskrivelse:"
 
-#: ../../mod/admin.php:600
-msgid "Allowed email domains"
-msgstr "Tillate e-postdomener"
+#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1513
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:155
+msgid "Location:"
+msgstr "Plassering:"
 
-#: ../../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/events.php:473
+msgid "Title:"
+msgstr "Tittel:"
 
-#: ../../mod/admin.php:601
-msgid "Block public"
-msgstr "Utesteng publikum"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Del denne hendelsen"
 
-#: ../../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/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 "Tving publisering"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Filer"
 
-#: ../../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/home.php:34
+#, php-format
+msgid "Welcome to %s"
+msgstr "Velkommen til %s"
 
-#: ../../mod/admin.php:603
-msgid "Global directory update URL"
-msgstr "URL for oppdatering av Global-katalog"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig."
 
-#: ../../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/lockview.php:48
+msgid "Visible to:"
+msgstr "Synlig for:"
 
-#: ../../mod/admin.php:604
-msgid "Allow threaded items"
-msgstr "Tillat en tråd av elementer "
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes."
 
-#: ../../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/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Ikke i stand til avgjøre plasseringen til ditt hjemsted."
 
-#: ../../mod/admin.php:605
-msgid "Private posts by default for new users"
-msgstr "Private meldinger som standard for nye brukere"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Ingen mottaker."
 
-#: ../../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 "Sett standard postetillatelser for alle nye medlemmer til standard personverngruppe i stedet for offentlig."
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Hvis du ønsker å la %s få svare, vennligst sjekk om personverninnstillingene på ditt nettsted tillater private post fra ukjente avsendere."
 
-#: ../../mod/admin.php:606
-msgid "Don't include post content in email notifications"
-msgstr "Ikke inkluder innholdet i en melding i epostvarsler"
+#: ../../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 "Besøk %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 "Ikke inkluder innholdet i en melding/kommentar/privat melding/osv. i epostvarsler som sendes ut fra dette nettstedet, som et personverntiltak."
+#: ../../mod/nogroup.php:41 ../../mod/contacts.php:666
+msgid "Edit contact"
+msgstr "Endre kontakt"
 
-#: ../../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/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Kontakter som ikke er medlemmer av en gruppe"
 
-#: ../../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/friendica.php:58
+msgid "This is Friendica, version"
+msgstr "Dette er Friendica, versjon"
 
-#: ../../mod/admin.php:608
-msgid "Don't embed private images in posts"
-msgstr "Ikke innebygg private bilder i innlegg"
+#: ../../mod/friendica.php:59
+msgid "running at web location"
+msgstr "kjører på web-plassering"
 
-#: ../../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 "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."
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Vennligst besøk <a href=\"http://friendica.com\">Friendica.com</a> for å lære mer om Friendica-prosjektet."
 
-#: ../../mod/admin.php:609
-msgid "Allow Users to set remote_self"
-msgstr "Tillat brukere å sette remote_self"
+#: ../../mod/friendica.php:63
+msgid "Bug reports and issues: please visit"
+msgstr "Feilrapporter og problemer: vennligst besøk"
 
-#: ../../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 "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:610
-msgid "Block multiple registrations"
-msgstr "Blokker flere registreringer"
-
-#: ../../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."
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Forslag, ros, donasjoner, og så videre - vennligst send e-post til \"Info\" alfakrøll Friendica punktum com"
 
-#: ../../mod/admin.php:611
-msgid "OpenID support"
-msgstr "OpenID-støtte"
+#: ../../mod/friendica.php:78
+msgid "Installed plugins/addons/apps:"
+msgstr "Installerte plugins/tillegg/apper:"
 
-#: ../../mod/admin.php:611
-msgid "OpenID support for registration and logins."
-msgstr "OpenID-støtte for registrering og innlogging."
+#: ../../mod/friendica.php:91
+msgid "No installed plugins/addons/apps"
+msgstr "Ingen installerte plugins/tillegg/apper"
 
-#: ../../mod/admin.php:612
-msgid "Fullname check"
-msgstr "Sjekk fullt navn"
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Slett min konto"
 
-#: ../../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 "Tving brukere til å registrere med et mellomrom mellom fornavn og etternavn i Fullt navn, som et tiltak mot søppelpost (antispam)."
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes."
 
-#: ../../mod/admin.php:613
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 regulære uttrykk"
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Vennligst skriv inn ditt passord for å bekrefte:"
 
-#: ../../mod/admin.php:613
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Bruk PHP UTF8 regulære uttrykk"
+#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "Bildets størrelse overstiger størrelsesbegrensningen på %d"
 
-#: ../../mod/admin.php:614
-msgid "Show Community Page"
-msgstr "Vis Felleskap-side"
+#: ../../mod/wall_upload.php:112 ../../mod/photos.php:805
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Ikke i stand til å behandle bildet."
 
-#: ../../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/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 "Veggbilder"
 
-#: ../../mod/admin.php:615
-msgid "Enable OStatus support"
-msgstr "Aktiver Ostatus-støtte"
+#: ../../mod/wall_upload.php:138 ../../mod/photos.php:832
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Mislyktes med å laste opp bilde."
 
-#: ../../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 "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/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Tillat forbindelse til program"
 
-#: ../../mod/admin.php:616
-msgid "OStatus conversation completion interval"
-msgstr "OStatus intervall for samtalefullførelse"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:"
 
-#: ../../mod/admin.php:616
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Vennligst logg inn for å fortsette."
+
+#: ../../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 "Hvor ofte skal spørrefunksjonen sjekke etter nye oppføringer i OStatus-samtaler? Dette kan være en svært ressurskrevende oppgave."
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Vil du tillate at dette programmet får tilgang til dine innlegg og kontakter, og/eller kan opprette nye innlegg for deg?"
 
-#: ../../mod/admin.php:617
-msgid "Enable Diaspora support"
-msgstr "Aktiver Diaspora-støtte"
+#: ../../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 merket %2$s sitt %3$s med %4$s"
 
-#: ../../mod/admin.php:617
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Tilby innebygget kompatibilitet med Diaspora-nettverket."
+#: ../../mod/photos.php:52 ../../boot.php:1989
+msgid "Photo Albums"
+msgstr "Fotoalbum"
 
-#: ../../mod/admin.php:618
-msgid "Only allow Friendica contacts"
-msgstr "Bare tillat Friendica-kontakter"
+#: ../../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 kontakter må bruke Friendica-protokoller. Alle andre innebyggede kommunikasjonsprotokoller blir deaktivert."
+#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815
+msgid "Upload New Photos"
+msgstr "Last opp nye bilder"
 
-#: ../../mod/admin.php:619
-msgid "Verify SSL"
-msgstr "Bekreft SSL"
+#: ../../mod/photos.php:80 ../../mod/settings.php:29
+msgid "everybody"
+msgstr "alle"
 
-#: ../../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/photos.php:144
+msgid "Contact information unavailable"
+msgstr "Kontaktinformasjon utilgjengelig"
 
-#: ../../mod/admin.php:620
-msgid "Proxy user"
-msgstr "Brukernavn til mellomtjener"
+#: ../../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 "Mellomtjener URL"
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "Album ble ikke funnet."
 
-#: ../../mod/admin.php:622
-msgid "Network timeout"
-msgstr "Tidsavbrudd for nettverk"
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Slett album"
 
-#: ../../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/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/admin.php:623
-msgid "Delivery interval"
-msgstr "Leveringsintervall"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511
+msgid "Delete Photo"
+msgstr "Slett bilde"
 
-#: ../../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/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Ønsker du virkelig å slette dette bildet?"
 
-#: ../../mod/admin.php:624
-msgid "Poll interval"
-msgstr "Spørreintervall"
+#: ../../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/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/photos.php:660
+msgid "a photo"
+msgstr "et bilde"
 
-#: ../../mod/admin.php:625
-msgid "Maximum Load Average"
-msgstr "Maksimal snittlast"
+#: ../../mod/photos.php:765
+msgid "Image exceeds size limit of "
+msgstr "Bilde overstiger størrelsesbegrensningen på "
 
-#: ../../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/photos.php:773
+msgid "Image file is empty."
+msgstr "Bildefilen er tom."
 
-#: ../../mod/admin.php:627
-msgid "Use MySQL full text engine"
-msgstr "Bruk MySQL fulltekstmotor"
+#: ../../mod/photos.php:928
+msgid "No photos selected"
+msgstr "Ingen bilder er valgt"
 
-#: ../../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/photos.php:1029 ../../mod/videos.php:226
+msgid "Access to this item is restricted."
+msgstr "Tilgang til dette elementet er begrenset."
 
-#: ../../mod/admin.php:628
-msgid "Suppress Language"
-msgstr "Ikke vis språk"
+#: ../../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/admin.php:628
-msgid "Suppress language information in meta information about a posting."
-msgstr "Ikke vis språkinformasjon i metainformasjon om et innlegg."
+#: ../../mod/photos.php:1127
+msgid "Upload Photos"
+msgstr "Last opp bilder"
 
-#: ../../mod/admin.php:629
-msgid "Path to item cache"
-msgstr "Sti til mellomlager for elementer"
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Nytt albumnavn:"
 
-#: ../../mod/admin.php:630
-msgid "Cache duration in seconds"
-msgstr "Mellomlagringens varighet i sekunder"
+#: ../../mod/photos.php:1132
+msgid "or existing album name: "
+msgstr "eller eksisterende albumnavn:"
 
-#: ../../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/photos.php:1133
+msgid "Do not show a status post for this upload"
+msgstr "Ikke vis statusoppdatering for denne opplastingen"
 
-#: ../../mod/admin.php:631
-msgid "Path for lock file"
-msgstr "Sti til fillås"
+#: ../../mod/photos.php:1135 ../../mod/photos.php:1506
+msgid "Permissions"
+msgstr "Tillatelser"
 
-#: ../../mod/admin.php:632
-msgid "Temp path"
-msgstr "Temp-sti"
+#: ../../mod/photos.php:1144 ../../mod/photos.php:1515
+#: ../../mod/settings.php:1139
+msgid "Show to Groups"
+msgstr "Vis til grupper"
 
-#: ../../mod/admin.php:633
-msgid "Base path to installation"
-msgstr "Sti til installasjonsbasen"
+#: ../../mod/photos.php:1145 ../../mod/photos.php:1516
+#: ../../mod/settings.php:1140
+msgid "Show to Contacts"
+msgstr "Vis til kontakter"
 
-#: ../../mod/admin.php:635
-msgid "New base url"
-msgstr "Ny base URL"
+#: ../../mod/photos.php:1146
+msgid "Private Photo"
+msgstr "Privat bilde"
 
-#: ../../mod/admin.php:653
-msgid "Update has been marked successful"
-msgstr "Oppdatering har blitt markert som vellykket"
+#: ../../mod/photos.php:1147
+msgid "Public Photo"
+msgstr "Offentlig bilde"
 
-#: ../../mod/admin.php:663
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "Utføring av %s mislyktes. Sjekk systemlogger."
+#: ../../mod/photos.php:1214
+msgid "Edit Album"
+msgstr "Endre album"
 
-#: ../../mod/admin.php:666
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Oppdatering %s ble iverksatt på en vellykket måte."
+#: ../../mod/photos.php:1220
+msgid "Show Newest First"
+msgstr "Vis nyeste først"
 
-#: ../../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/photos.php:1222
+msgid "Show Oldest First"
+msgstr "Vis eldste først"
 
-#: ../../mod/admin.php:673
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "Oppdateringsfunksjon %s ble ikke funnet."
+#: ../../mod/photos.php:1255 ../../mod/photos.php:1798
+msgid "View Photo"
+msgstr "Vis bilde"
 
-#: ../../mod/admin.php:688
-msgid "No failed updates."
-msgstr "Ingen mislykkede oppdateringer."
+#: ../../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/admin.php:692
-msgid "Failed Updates"
-msgstr "Mislykkede oppdateringer"
+#: ../../mod/photos.php:1292
+msgid "Photo not available"
+msgstr "Bilde ikke tilgjengelig"
 
-#: ../../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/photos.php:1348
+msgid "View photo"
+msgstr "Vis foto"
 
-#: ../../mod/admin.php:694
-msgid "Mark success (if update was manually applied)"
-msgstr "Marker vellykket (hvis oppdatering ble iverksatt manuelt)"
+#: ../../mod/photos.php:1348
+msgid "Edit photo"
+msgstr "Endre bilde"
 
-#: ../../mod/admin.php:695
-msgid "Attempt to execute this update step automatically"
-msgstr "Forsøk å utføre dette oppdateringspunktet automatisk"
+#: ../../mod/photos.php:1349
+msgid "Use as profile photo"
+msgstr "Bruk som profilbilde"
 
-#: ../../mod/admin.php:741
-msgid "Registration successful. Email send to user"
-msgstr "Vellykket registrering. E-post er sendt til bruker"
+#: ../../mod/photos.php:1374
+msgid "View Full Size"
+msgstr "Vis i full størrelse"
 
-#: ../../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/photos.php:1453
+msgid "Tags: "
+msgstr "Tagger:"
 
-#: ../../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/photos.php:1456
+msgid "[Remove any tag]"
+msgstr "[Fjern en tag]"
 
-#: ../../mod/admin.php:797
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Brukeren '%s' er slettet"
+#: ../../mod/photos.php:1496
+msgid "Rotate CW (right)"
+msgstr "Roter med klokka (høyre)"
 
-#: ../../mod/admin.php:805
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Brukeren '%s' er ikke blokkert"
+#: ../../mod/photos.php:1497
+msgid "Rotate CCW (left)"
+msgstr "Roter mot klokka (venstre)"
 
-#: ../../mod/admin.php:805
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Brukeren '%s' er blokkert"
+#: ../../mod/photos.php:1499
+msgid "New album name"
+msgstr "Nytt albumnavn"
 
-#: ../../mod/admin.php:900
-msgid "Add User"
-msgstr "Legg til bruker"
+#: ../../mod/photos.php:1502
+msgid "Caption"
+msgstr "Overskrift"
 
-#: ../../mod/admin.php:901
-msgid "select all"
-msgstr "velg alle"
+#: ../../mod/photos.php:1504
+msgid "Add a Tag"
+msgstr "Legg til tag"
 
-#: ../../mod/admin.php:902
-msgid "User registrations waiting for confirm"
-msgstr "Brukerregistreringer venter på bekreftelse"
+#: ../../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/admin.php:903
-msgid "User waiting for permanent deletion"
-msgstr "Bruker venter på permanent sletting"
+#: ../../mod/photos.php:1517
+msgid "Private photo"
+msgstr "Privat bilde"
 
-#: ../../mod/admin.php:904
-msgid "Request date"
-msgstr "Forespørselsdato"
+#: ../../mod/photos.php:1518
+msgid "Public photo"
+msgstr "Offentlig bilde"
 
-#: ../../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: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/photos.php:1540 ../../include/conversation.php:1088
+msgid "Share"
+msgstr "Del"
 
-#: ../../mod/admin.php:905
-msgid "No registrations."
-msgstr "Ingen registreringer."
+#: ../../mod/photos.php:1804 ../../mod/videos.php:308
+msgid "View Album"
+msgstr "Vis album"
 
-#: ../../mod/admin.php:906 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:208
-msgid "Approve"
-msgstr "Godkjenn"
+#: ../../mod/photos.php:1813
+msgid "Recent Photos"
+msgstr "Nye bilder"
 
-#: ../../mod/admin.php:907
-msgid "Deny"
-msgstr "Nekt"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Ingen profil"
 
-#: ../../mod/admin.php:909 ../../mod/contacts.php:431
-#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
-msgid "Block"
-msgstr "Blokker"
+#: ../../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/admin.php:910 ../../mod/contacts.php:431
-#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
-msgid "Unblock"
-msgstr "Ikke blokker"
+#: ../../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/admin.php:911
-msgid "Site admin"
-msgstr "Nettstedets administrator"
+#: ../../mod/register.php:109
+msgid "Your registration can not be processed."
+msgstr "Din registrering kan ikke behandles."
 
-#: ../../mod/admin.php:912
-msgid "Account expired"
-msgstr "Konto utgått"
+#: ../../mod/register.php:149
+#, php-format
+msgid "Registration request at %s"
+msgstr "Henvendelse om registrering ved %s"
 
-#: ../../mod/admin.php:915
-msgid "New User"
-msgstr "Ny bruker"
+#: ../../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/admin.php:916 ../../mod/admin.php:917
-msgid "Register date"
-msgstr "Registreringsdato"
+#: ../../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/admin.php:916 ../../mod/admin.php:917
-msgid "Last login"
-msgstr "Siste innlogging"
+#: ../../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/admin.php:916 ../../mod/admin.php:917
-msgid "Last item"
-msgstr "Siste element"
+#: ../../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/admin.php:916
-msgid "Deleted since"
-msgstr "Slettet siden"
+#: ../../mod/register.php:226
+msgid "Your OpenID (optional): "
+msgstr "Din OpenID (valgfritt):"
 
-#: ../../mod/admin.php:917 ../../mod/settings.php:35
-msgid "Account"
-msgstr "Konto"
+#: ../../mod/register.php:240
+msgid "Include your profile in member directory?"
+msgstr "Legg til profilen din i medlemskatalogen?"
 
-#: ../../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/register.php:261
+msgid "Membership on this site is by invitation only."
+msgstr "Medlemskap ved dette nettstedet skjer bare på invitasjon."
 
-#: ../../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/register.php:262
+msgid "Your invitation ID: "
+msgstr "Din invitasjons-ID:"
 
-#: ../../mod/admin.php:930
-msgid "Name of the new user."
-msgstr "Navnet til den nye brukeren."
+#: ../../mod/register.php:273
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Ditt fulle navn (f.eks. Ola Nordmann):"
 
-#: ../../mod/admin.php:931
-msgid "Nickname"
-msgstr "Kallenavn"
+#: ../../mod/register.php:274
+msgid "Your Email Address: "
+msgstr "Din e-postadresse:"
 
-#: ../../mod/admin.php:931
-msgid "Nickname of the new user."
-msgstr "Kallenavnet til den nye brukeren."
+#: ../../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/admin.php:932
-msgid "Email address of the new user."
-msgstr "E-postadressen til den nye brukeren."
+#: ../../mod/register.php:276
+msgid "Choose a nickname: "
+msgstr "Velg et kallenavn:"
 
-#: ../../mod/admin.php:965
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Tillegget %s er avskrudd."
+#: ../../mod/register.php:279 ../../boot.php:1136 ../../include/nav.php:108
+msgid "Register"
+msgstr "Registrer"
 
-#: ../../mod/admin.php:969
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Tillegget %s er aktivert."
+#: ../../mod/register.php:285 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Importer"
 
-#: ../../mod/admin.php:979 ../../mod/admin.php:1182
-msgid "Disable"
-msgstr "Skru av"
+#: ../../mod/register.php:286
+msgid "Import your profile to this friendica instance"
+msgstr "Importer din profil til denne Friendica-instansen."
 
-#: ../../mod/admin.php:981 ../../mod/admin.php:1184
-msgid "Enable"
-msgstr "Aktiver"
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
+msgstr "Fant ingen gyldig konto."
 
-#: ../../mod/admin.php:1004 ../../mod/admin.php:1212
-msgid "Toggle"
-msgstr "Veksle"
+#: ../../mod/lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "Forespørsel om å tilbakestille passord er sendt. Sjekk e-posten din."
 
-#: ../../mod/admin.php:1012 ../../mod/admin.php:1222
-msgid "Author: "
-msgstr "Forfatter:"
+#: ../../mod/lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Forespørsel om tilbakestilling av passord ved %s"
 
-#: ../../mod/admin.php:1013 ../../mod/admin.php:1223
-msgid "Maintainer: "
-msgstr "Vedlikeholder:"
+#: ../../mod/lostpass.php:66
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes."
 
-#: ../../mod/admin.php:1142
-msgid "No themes found."
-msgstr "Ingen temaer funnet."
+#: ../../mod/lostpass.php:84 ../../boot.php:1175
+msgid "Password Reset"
+msgstr "Passord tilbakestilling"
 
-#: ../../mod/admin.php:1204
-msgid "Screenshot"
-msgstr "Skjermbilde"
+#: ../../mod/lostpass.php:85
+msgid "Your password has been reset as requested."
+msgstr "Ditt passord er tilbakestilt som forespurt."
 
-#: ../../mod/admin.php:1250
-msgid "[Experimental]"
-msgstr "[Eksperimentell]"
+#: ../../mod/lostpass.php:86
+msgid "Your new password is"
+msgstr "Ditt nye passord er"
 
-#: ../../mod/admin.php:1251
-msgid "[Unsupported]"
-msgstr "[Ikke støttet]"
+#: ../../mod/lostpass.php:87
+msgid "Save or copy your new password - and then"
+msgstr "Lagre eller kopier ditt nye passord, og deretter"
 
-#: ../../mod/admin.php:1278
-msgid "Log settings updated."
-msgstr "Logginnstillinger er oppdatert."
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
+msgstr "klikk her for å logge inn"
 
-#: ../../mod/admin.php:1334
-msgid "Clear"
-msgstr "Tøm"
+#: ../../mod/lostpass.php:89
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Passordet ditt kan endres fra siden <em>Innstillinger</em> etter vellykket logg inn."
 
-#: ../../mod/admin.php:1340
-msgid "Enable Debugging"
-msgstr "Aktiver feilsøking"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Ditt passord har blitt endret %s"
 
-#: ../../mod/admin.php:1341
-msgid "Log file"
-msgstr "Loggfil"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Glemte du passordet?"
 
-#: ../../mod/admin.php:1341
+#: ../../mod/lostpass.php:123
 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."
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Skriv inn e-postadressen og send inn for å tilbakestille passordet ditt. Sjekk deretter e-posten din for nærmere forklaring."
 
-#: ../../mod/admin.php:1342
-msgid "Log level"
-msgstr "Loggnivå"
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
+msgstr "Kallenavn eller e-post:"
 
-#: ../../mod/admin.php:1391 ../../mod/contacts.php:487
-msgid "Update now"
-msgstr "Oppdater nå"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Tilbakestill"
 
-#: ../../mod/admin.php:1392
-msgid "Close"
-msgstr "Lukk"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Systemet er nede for vedlikehold"
 
-#: ../../mod/admin.php:1398
-msgid "FTP Host"
-msgstr "FTP-tjener"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Elementet er ikke tilgjengelig."
 
-#: ../../mod/admin.php:1399
-msgid "FTP Path"
-msgstr "FTP-sti"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Elementet ble ikke funnet."
 
-#: ../../mod/admin.php:1400
-msgid "FTP User"
-msgstr "FTP-bruker"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Programmer"
 
-#: ../../mod/admin.php:1401
-msgid "FTP Password"
-msgstr "FTP-passord"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Ingen installerte programmer."
 
-#: ../../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/help.php:79
+msgid "Help:"
+msgstr "Hjelp:"
 
-#: ../../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 "Fant ikke noe."
+#: ../../mod/help.php:84 ../../include/nav.php:113
+msgid "Help"
+msgstr "Hjelp"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Tips til nye medlemmer"
-
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "lenke"
-
-#: ../../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 merket %2$s sitt %3$s med %4$s"
-
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Fant ikke elementet"
-
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Endre innlegg"
-
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1085
-msgid "upload photo"
-msgstr "last opp bilde"
-
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1086
-msgid "Attach file"
-msgstr "Legg ved fil"
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d kontakt redigert."
+msgstr[1] "%d kontakter redigert"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1087
-msgid "attach file"
-msgstr "legg ved fil"
+#: ../../mod/contacts.php:135 ../../mod/contacts.php:264
+msgid "Could not access contact record."
+msgstr "Fikk ikke tilgang til kontaktposten."
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1089
-msgid "web link"
-msgstr "web-adresse"
+#: ../../mod/contacts.php:149
+msgid "Could not locate selected profile."
+msgstr "Kunne ikke lokalisere valgt profil."
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1090
-msgid "Insert video link"
-msgstr "Sett inn video-link"
+#: ../../mod/contacts.php:178
+msgid "Contact updated."
+msgstr "Kontakt oppdatert."
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1091
-msgid "video link"
-msgstr "videolink"
+#: ../../mod/contacts.php:278
+msgid "Contact has been blocked"
+msgstr "Kontakten er blokkert"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1092
-msgid "Insert audio link"
-msgstr "Sett inn lydlink"
+#: ../../mod/contacts.php:278
+msgid "Contact has been unblocked"
+msgstr "Kontakten er ikke blokkert lenger"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1093
-msgid "audio link"
-msgstr "lydlink"
+#: ../../mod/contacts.php:288
+msgid "Contact has been ignored"
+msgstr "Kontakten er ignorert"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1094
-msgid "Set your location"
-msgstr "Angi din plassering"
+#: ../../mod/contacts.php:288
+msgid "Contact has been unignored"
+msgstr "Kontakten er ikke ignorert lenger"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1095
-msgid "set location"
-msgstr "angi plassering"
+#: ../../mod/contacts.php:299
+msgid "Contact has been archived"
+msgstr "Kontakt har blitt arkivert"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1096
-msgid "Clear browser location"
-msgstr "Fjern nettleserplassering"
+#: ../../mod/contacts.php:299
+msgid "Contact has been unarchived"
+msgstr "Kontakt har blitt hentet tilbake fra arkivet"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1097
-msgid "clear location"
-msgstr "fjern plassering"
+#: ../../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/editpost.php:125 ../../include/conversation.php:1103
-msgid "Permission settings"
-msgstr "Tillatelser"
+#: ../../mod/contacts.php:341
+msgid "Contact has been removed."
+msgstr "Kontakten er fjernet."
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1112
-msgid "CC: email addresses"
-msgstr "Kopi: e-postadresser"
+#: ../../mod/contacts.php:379
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Du er gjensidig venn med %s"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1113
-msgid "Public post"
-msgstr "Offentlig innlegg"
+#: ../../mod/contacts.php:383
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Du deler med %s"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1099
-msgid "Set title"
-msgstr "Lagre tittel"
+#: ../../mod/contacts.php:388
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s deler med deg"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1101
-msgid "Categories (comma-separated list)"
-msgstr "Kategorier (kommaseparert liste)"
+#: ../../mod/contacts.php:405
+msgid "Private communications are not available for this contact."
+msgstr "Privat kommunikasjon er ikke tilgjengelig mot denne kontakten."
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1115
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Eksempel: ola@example.com, kari@example.com"
+#: ../../mod/contacts.php:412
+msgid "(Update was successful)"
+msgstr "(Oppdatering vellykket)"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Elementet er ikke tilgjengelig."
+#: ../../mod/contacts.php:412
+msgid "(Update was not successful)"
+msgstr "(Oppdatering mislykket)"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Elementet ble ikke funnet."
+#: ../../mod/contacts.php:414
+msgid "Suggest friends"
+msgstr "Foreslå venner"
 
-#: ../../mod/regmod.php:63
-msgid "Account approved."
-msgstr "Konto godkjent."
+#: ../../mod/contacts.php:418
+#, php-format
+msgid "Network type: %s"
+msgstr "Nettverkstype: %s"
 
-#: ../../mod/regmod.php:100
+#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199
 #, php-format
-msgid "Registration revoked for %s"
-msgstr "Registreringen til  %s er trukket tilbake"
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d felles kontakt"
+msgstr[1] "%d felles kontakter"
 
-#: ../../mod/regmod.php:112
-msgid "Please login."
-msgstr "Vennligst logg inn."
+#: ../../mod/contacts.php:426
+msgid "View all contacts"
+msgstr "Vis alle kontakter"
 
-#: ../../mod/directory.php:57
-msgid "Find on this site"
-msgstr "Finn på dette nettstedet"
+#: ../../mod/contacts.php:434
+msgid "Toggle Blocked status"
+msgstr "Veksle blokkeringsstatus"
 
-#: ../../mod/directory.php:59 ../../mod/contacts.php:693
-msgid "Finding: "
-msgstr "Fant:"
+#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
+#: ../../mod/contacts.php:701
+msgid "Unignore"
+msgstr "Fjern ignorering"
 
-#: ../../mod/directory.php:60
-msgid "Site Directory"
-msgstr "Stedets katalog"
+#: ../../mod/contacts.php:440
+msgid "Toggle Ignored status"
+msgstr "Veksle ingnorertstatus"
 
-#: ../../mod/directory.php:61 ../../mod/contacts.php:694
-#: ../../include/contact_widgets.php:33
-msgid "Find"
-msgstr "Finn"
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
+msgid "Unarchive"
+msgstr "Hent ut av arkivet"
 
-#: ../../mod/directory.php:111 ../../mod/profiles.php:690
-msgid "Age: "
-msgstr "Alder:"
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
+msgid "Archive"
+msgstr "Arkiver"
 
-#: ../../mod/directory.php:114
-msgid "Gender: "
-msgstr "Kjønn:"
+#: ../../mod/contacts.php:447
+msgid "Toggle Archive status"
+msgstr "Veksle arkivertstatus"
 
-#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "Om:"
+#: ../../mod/contacts.php:450
+msgid "Repair"
+msgstr "Reparer"
 
-#: ../../mod/directory.php:187
-msgid "No entries (some entries may be hidden)."
-msgstr "Ingen oppføringer (noen oppføringer kan være skjulte)."
+#: ../../mod/contacts.php:453
+msgid "Advanced Contact Settings"
+msgstr "Avanserte kontaktinnstillinger"
 
-#: ../../mod/crepair.php:104
-msgid "Contact settings applied."
-msgstr "Kontaktinnstillinger i bruk."
+#: ../../mod/contacts.php:459
+msgid "Communications lost with this contact!"
+msgstr "Kommunikasjon tapt med denne kontakten!"
 
-#: ../../mod/crepair.php:106
-msgid "Contact update failed."
-msgstr "Kontaktoppdatering mislyktes."
+#: ../../mod/contacts.php:462
+msgid "Contact Editor"
+msgstr "Endre kontakt"
 
-#: ../../mod/crepair.php:137
-msgid "Repair Contact Settings"
-msgstr "Reparer kontaktinnstillinger"
+#: ../../mod/contacts.php:465
+msgid "Profile Visibility"
+msgstr "Profilens synlighet"
 
-#: ../../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>ADVARSEL: Dette er meget avansert</strong> og hvis du skriver feil informasjon her, så kan kommunikasjonen med denne kontakten slutte å virke."
+"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/crepair.php:140
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Vennligst bruk Tilbake-knappen i nettleseren din <strong>nå</strong> hvis du er usikker på hva du bør gjøre på denne siden."
+#: ../../mod/contacts.php:467
+msgid "Contact Information / Notes"
+msgstr "Kontaktinformasjon/-notater"
 
-#: ../../mod/crepair.php:146
-msgid "Return to contact editor"
-msgstr "Gå tilbake til å endre kontakt"
+#: ../../mod/contacts.php:468
+msgid "Edit contact notes"
+msgstr "Endre kontaktnotater"
 
-#: ../../mod/crepair.php:151
-msgid "Account Nickname"
-msgstr "Konto Kallenavn"
+#: ../../mod/contacts.php:474
+msgid "Block/Unblock contact"
+msgstr "Blokker kontakt/fjern blokkering for kontakt"
 
-#: ../../mod/crepair.php:152
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Merkelappnavn - overstyrer Navn/Kallenavn"
+#: ../../mod/contacts.php:475
+msgid "Ignore contact"
+msgstr "Ignorer kontakt"
 
-#: ../../mod/crepair.php:153
-msgid "Account URL"
-msgstr "Konto URL"
+#: ../../mod/contacts.php:476
+msgid "Repair URL settings"
+msgstr "Reparer URL-innstillinger"
 
-#: ../../mod/crepair.php:154
-msgid "Friend Request URL"
-msgstr "Venneforespørsel URL"
+#: ../../mod/contacts.php:477
+msgid "View conversations"
+msgstr "Vis samtaler"
 
-#: ../../mod/crepair.php:155
-msgid "Friend Confirm URL"
-msgstr "Vennebekreftelse URL"
+#: ../../mod/contacts.php:479
+msgid "Delete contact"
+msgstr "Slett kontakt"
 
-#: ../../mod/crepair.php:156
-msgid "Notification Endpoint URL"
-msgstr "Endepunkt URL for beskjed"
+#: ../../mod/contacts.php:483
+msgid "Last update:"
+msgstr "Siste oppdatering:"
 
-#: ../../mod/crepair.php:157
-msgid "Poll/Feed URL"
-msgstr "Poll/Feed URL"
+#: ../../mod/contacts.php:485
+msgid "Update public posts"
+msgstr "Oppdater offentlige innlegg"
 
-#: ../../mod/crepair.php:158
-msgid "New photo from this URL"
-msgstr "Nytt bilde fra denne URL-en"
+#: ../../mod/contacts.php:494
+msgid "Currently blocked"
+msgstr "Blokkert nå"
 
-#: ../../mod/crepair.php:159
-msgid "Remote Self"
-msgstr "Fjernbetjent selv"
+#: ../../mod/contacts.php:495
+msgid "Currently ignored"
+msgstr "Ignorert nå"
 
-#: ../../mod/crepair.php:161
-msgid "Mirror postings from this contact"
-msgstr "Speil innlegg fra denne kontakten"
+#: ../../mod/contacts.php:496
+msgid "Currently archived"
+msgstr "For øyeblikket arkivert"
 
-#: ../../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 "Merk denne kontakten som remote_self, da vil Friendica omposte nye innlegg fra denne kontakten."
+"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: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:553
+msgid "Suggest potential friends"
+msgstr "Foreslå mulige venner"
+
+#: ../../mod/contacts.php:556 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Alle kontakter"
+
+#: ../../mod/contacts.php:559
+msgid "Show all contacts"
+msgstr "Vis alle kontakter"
+
+#: ../../mod/contacts.php:562
+msgid "Unblocked"
+msgstr "Ikke blokkert"
+
+#: ../../mod/contacts.php:565
+msgid "Only show unblocked contacts"
+msgstr "Bare vis ikke blokkerte kontakter"
+
+#: ../../mod/contacts.php:569
+msgid "Blocked"
+msgstr "Blokkert"
+
+#: ../../mod/contacts.php:572
+msgid "Only show blocked contacts"
+msgstr "Bare vis blokkerte kontakter"
+
+#: ../../mod/contacts.php:576
+msgid "Ignored"
+msgstr "Ignorert"
+
+#: ../../mod/contacts.php:579
+msgid "Only show ignored contacts"
+msgstr "Bare vis ignorerte kontakter"
+
+#: ../../mod/contacts.php:583
+msgid "Archived"
+msgstr "Arkivert"
+
+#: ../../mod/contacts.php:586
+msgid "Only show archived contacts"
+msgstr "Bare vis arkiverte kontakter"
+
+#: ../../mod/contacts.php:590
+msgid "Hidden"
+msgstr "Skjult"
+
+#: ../../mod/contacts.php:593
+msgid "Only show hidden contacts"
+msgstr "Bare vis skjulte kontakter"
+
+#: ../../mod/contacts.php:641
+msgid "Mutual Friendship"
+msgstr "Gjensidig vennskap"
+
+#: ../../mod/contacts.php:645
+msgid "is a fan of yours"
+msgstr "er en tilhenger av deg"
+
+#: ../../mod/contacts.php:649
+msgid "you are a fan of"
+msgstr "du er en tilhenger av"
+
+#: ../../mod/contacts.php:688 ../../view/theme/diabook/theme.php:125
+#: ../../include/nav.php:173
+msgid "Contacts"
+msgstr "Kontakter"
+
+#: ../../mod/contacts.php:692
+msgid "Search your contacts"
+msgstr "Søk i dine kontakter"
+
+#: ../../mod/contacts.php:693 ../../mod/directory.php:59
+msgid "Finding: "
+msgstr "Fant:"
+
+#: ../../mod/contacts.php:694 ../../mod/directory.php:61
+#: ../../include/contact_widgets.php:33
+msgid "Find"
+msgstr "Finn"
+
+#: ../../mod/contacts.php:699 ../../mod/settings.php:132
+#: ../../mod/settings.php:635
+msgid "Update"
+msgstr "Oppdater"
+
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Ingen videoer er valgt"
+
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Nye videoer"
+
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Last opp nye videoer"
+
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Felles venner"
+
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Ingen kontakter felles."
+
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Kontakt lagt til "
 
 #: ../../mod/uimport.php:66
 msgid "Move account"
@@ -3053,1143 +3037,951 @@ msgid ""
 "select \"Export account\""
 msgstr "For å eksportere din konto, gå til \"Innstillinger -> Eksporter dine personlige data\" og velg \"Eksporter konto\""
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig."
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s følger %2$s sin %3$s"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Synlig for:"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Venner av %s"
 
-#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:941
-msgid "Save"
-msgstr "Lagre"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Ingen venner å vise."
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Hjelp:"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Fjernet tag"
 
-#: ../../mod/help.php:84 ../../include/nav.php:113
-msgid "Help"
-msgstr "Hjelp"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Fjern tag"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Ingen profil"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Velg en tag å fjerne:"
 
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
-msgstr "Denne introduksjonen har allerede blitt akseptert."
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133
+msgid "Remove"
+msgstr "Slett"
 
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon."
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Velkommen til Friendica"
 
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Advarsel: profilstedet har ikke identifiserbart eiernavn."
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Sjekkliste for nye medlemmer"
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
-msgid "Warning: profile location has no profile photo."
-msgstr "Advarsel: profilstedet har ikke noe profilbilde."
+#: ../../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 "Vi vil gjerne gi noe noen tips og lenker for å hjelpe deg til en hyggelig opplevelse. Klikk på et element for å besøke den relevante siden. En lenke til denne siden vil være synlig på din hovedside i to uker etter at du registrerte deg og så vil den bli borte av seg selv."
 
-#: ../../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] "one: %d nødvendig parameter ble ikke funnet på angitt sted"
-msgstr[1] "other: %d nødvendige parametre ble ikke funnet på angitt sted"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Komme igang"
 
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
-msgstr "Introduksjon ferdig."
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica gjennomgang"
 
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
-msgstr "Uopprettelig protokollfeil."
+#: ../../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 "På <em>Hurtigstart</em>-siden din, så finner du en kort introduksjon til profilen din og nettverksfanen, hvordan du oppretter nye forbindelser, og hvordan du finner grupper å bli med i."
 
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
-msgstr "Profil utilgjengelig."
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Gå til Dine innstillinger"
 
-#: ../../mod/dfrn_request.php:262
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s har mottatt for mange kontaktforespørsler idag."
+#: ../../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 "På siden <em>Innstillinger</em> - bytt passordet du fikk. Merk deg også Din identitetsadresse. Denne ser ut som en vanlig e-postadresse, og er nyttig for å bli venner i den frie sosiale web'en."
 
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
-msgstr "Tiltak mot søppelpost har blitt iverksatt."
+#: ../../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 "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg."
 
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Venner anbefales å prøve igjen om 24 timer."
+#: ../../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 "Ugyldig stedsangivelse"
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Last opp profilbilde"
 
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr "Ugyldig e-postadresse."
+#: ../../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 "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier viser at folk som har ekte bilde av seg selv har ti ganger større sannsynlighet for å få venner enn folk som ikke gjør det."
 
-#: ../../mod/dfrn_request.php:362
-msgid "This account has not been configured for email. Request failed."
-msgstr "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes."
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Endre profilen din"
 
-#: ../../mod/dfrn_request.php:458
-msgid "Unable to resolve your name at the provided location."
-msgstr "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet."
+#: ../../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 "Du kan endre <strong>standardprofilen</strong> din slik du ønsker. Se over innstillingene som lar deg skjule vennelisten og skjule profilen fra ukjente besøkende."
 
-#: ../../mod/dfrn_request.php:471
-msgid "You have already introduced yourself here."
-msgstr "Du har allerede introdusert deg selv her."
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Profilnøkkelord"
 
-#: ../../mod/dfrn_request.php:475
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Du er visst allerede venn med %s."
+#: ../../mod/newmember.php:40
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Legg til noen offentlige nøkkelord til standardprofilen din som beskriver dine interesser. Det kan hende vi klarer å finne andre folk med liknende interesser og foreslå vennskap."
 
-#: ../../mod/dfrn_request.php:496
-msgid "Invalid profile URL."
-msgstr "Ugyldig profil-URL."
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Kobling"
 
-#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "Underkjent 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 "Mislyktes med å oppdatere kontaktposten."
+#: ../../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 "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgfritt) importere alle dine Facebook-venner og samtaler."
 
-#: ../../mod/dfrn_request.php:592
-msgid "Your introduction has been sent."
-msgstr "Din introduksjon er sendt."
+#: ../../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>Hvis</em> dette er din egen personlige tjener, så kan installasjon av Facebook-tillegget gjøre overgangen til den frie sosiale web'en lettere."
 
-#: ../../mod/dfrn_request.php:645
-msgid "Please login to confirm introduction."
-msgstr "Vennligst logg inn for å bekrefte introduksjonen."
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importere e-post"
 
-#: ../../mod/dfrn_request.php:659
+#: ../../mod/newmember.php:56
 msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i <strong>denne</strong> profilen."
+"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 "Skriv inn tilgangsinformasjon til e-posten din på siden for Koblingsinnstillinger, hvis du ønsker å importere og samhandle med venner eller e-postlister fra din e-post INNBOKS"
 
-#: ../../mod/dfrn_request.php:670
-msgid "Hide this contact"
-msgstr "Skjul denne kontakten"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Gå til Dine kontakter-siden"
 
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Welcome home %s."
-msgstr "Velkommen hjem %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 "Dine kontakter-siden er der du håndterer vennskap og skaper forbindelser med venner på andre nettverk. Vanligvis skriver du deres adresse eller nettsteds-URL i dialogboksen <em>Legg til ny kontakt</em>"
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s."
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Gå til Din lokale katalog"
 
-#: ../../mod/dfrn_request.php:675
-msgid "Confirm"
-msgstr "Bekreft"
+#: ../../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 "Katalog-siden lar deg finne andre folk i dette nettverket eller andre forente nettsteder. Se etter en <em>Connect</em> eller <em>Follow</em> lenke på profilsiden deres. Oppgi din egen identitetsadresse hvis du blir forespurt om det."
 
-#: ../../mod/dfrn_request.php:716 ../../include/items.php:3686
-msgid "[Name Withheld]"
-msgstr "[Navnet tilbakeholdt]"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Finn nye personer"
 
-#: ../../mod/dfrn_request.php:811
+#: ../../mod/newmember.php:62
 msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Vennligst skriv inn din identitetsadresse fra en av følgende støttede sosiale nettverk:"
+"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 "I sidepanelet på Kontakter-siden er flere verktøy for å finne nye venner. Vi kan matche personer utfra interesse, slå opp personer på navn eller interesse, og gi forslag basert på nettverksforbindelser. På et helt nytt nettsted, så vil venneforslag vanligvis dukke opp innen 24 timer."
 
-#: ../../mod/dfrn_request.php:827
-msgid "<strike>Connect as an email follower</strike> (Coming soon)"
-msgstr "<strike>Koble til som en e-postfølgesvenn</strike> (Kommer snart)"
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Grupper"
 
-#: ../../mod/dfrn_request.php:829
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Kontaktgrupper"
+
+#: ../../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 "Hvis du ennå ikke er en del av den frie sosiale webben, <a href=\"http://dir.friendica.com/siteinfo\">følg denne lenken for å finne et offentlig Friendica-nettsted og bli med oss idag</a>."
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Når du har fått noen venner, så kan du organisere dem i private samtalegrupper i sidefeltet på Kontakt-siden din, og deretter kan du samhandle med hver gruppe privat på din Nettverk-side."
 
-#: ../../mod/dfrn_request.php:832
-msgid "Friend/Connection Request"
-msgstr "Venne-/Koblings-forespørsel"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Hvorfor er ikke mine innlegg offentlige?"
 
-#: ../../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 "Eksempler: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
-
-#: ../../mod/dfrn_request.php:834
-msgid "Please answer the following:"
-msgstr "Vennligst svar på følgende:"
+"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 respekterer ditt privatliv. Som standard, så vil dine innlegg bare vises til personer du har lagt til som venner. For mer informasjon, se Hjelp-siden fra lenken ovenfor."
 
-#: ../../mod/dfrn_request.php:835
-#, php-format
-msgid "Does %s know you?"
-msgstr "Kjenner %s deg?"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Få hjelp"
 
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "Legg til en personlig melding:"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Gå til Hjelp-siden"
 
-#: ../../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 "Våre <strong>hjelpesider</strong> kan leses for flere detaljer og ressurser om andre egenskaper ved programmet."
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federeated Social Web"
+#: ../../mod/search.php:21 ../../mod/network.php:179
+msgid "Remove term"
+msgstr "Fjern uttrykk"
 
-#: ../../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 "Lagrede søk"
 
-#: ../../mod/dfrn_request.php:843
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr "- vennligst ikke bruk dette skjemaet. I stedet skriver du %s inn søkelinjen i Diaspora."
+#: ../../mod/search.php:99 ../../include/text.php:951
+#: ../../include/text.php:952 ../../include/nav.php:118
+msgid "Search"
+msgstr "Søk"
 
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr "Din identitetsadresse:"
+#: ../../mod/search.php:170 ../../mod/search.php:196
+#: ../../mod/community.php:62 ../../mod/community.php:89
+msgid "No results."
+msgstr "Fant ikke noe."
 
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "Send forespørsel"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Grensen for totalt antall invitasjoner er overskredet."
 
-#: ../../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 "[Innebygget innhold - hent siden på nytt for å se det]"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s: Ugyldig e-postadresse."
 
-#: ../../mod/content.php:496 ../../include/conversation.php:688
-msgid "View in context"
-msgstr "Vis i sammenheng"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Vær med oss på Friendica"
 
-#: ../../mod/contacts.php:104
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Invitasjonsgrense overskredet. Vennligst kontakt administrator på ditt nettsted."
+
+#: ../../mod/invite.php:89
 #, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] "%d kontakt redigert."
-msgstr[1] "%d kontakter redigert"
+msgid "%s : Message delivery failed."
+msgstr "%s: Mislyktes med å levere meldingen."
 
-#: ../../mod/contacts.php:135 ../../mod/contacts.php:264
-msgid "Could not access contact record."
-msgstr "Fikk ikke tilgang til kontaktposten."
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "one: %d melding sendt."
+msgstr[1] "other: %d meldinger sendt."
 
-#: ../../mod/contacts.php:149
-msgid "Could not locate selected profile."
-msgstr "Kunne ikke lokalisere valgt profil."
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Du har ingen flere tilgjengelige invitasjoner"
 
-#: ../../mod/contacts.php:178
-msgid "Contact updated."
-msgstr "Kontakt oppdatert."
+#: ../../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 "Besøk %s for en liste med offentlige nettsteder du kan bli med i. Friendica-medlemmer ved andre nettsteder kan alle opprette forbindelse til hverandre, og i tillegg til medlemmer av mange andre sosiale nettverk."
 
-#: ../../mod/contacts.php:278
-msgid "Contact has been blocked"
-msgstr "Kontakten er blokkert"
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "For å akseptere denne invitasjonen, vær så snill å besøk og registrer deg hos %s eller et hvilket som helst annet offentlig Friendica-nettsted."
 
-#: ../../mod/contacts.php:278
-msgid "Contact has been unblocked"
-msgstr "Kontakten er ikke blokkert lenger"
+#: ../../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-nettsteder er alle forbundet med hverandre for å lage et personvern-forbedret sosialt nettverk  som eies og kontrolleres av medlemmene selv. De kan også forbindes med mange tradisjonelle sosiale nettverk. Se %s for en liste over alternative Friendica-nettsteder du kan bli med i."
 
-#: ../../mod/contacts.php:288
-msgid "Contact has been ignored"
-msgstr "Kontakten er ignorert"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer."
 
-#: ../../mod/contacts.php:288
-msgid "Contact has been unignored"
-msgstr "Kontakten er ikke ignorert lenger"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Send invitasjoner"
 
-#: ../../mod/contacts.php:299
-msgid "Contact has been archived"
-msgstr "Kontakt har blitt arkivert"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Skriv e-postadresser, en per linje:"
 
-#: ../../mod/contacts.php:299
-msgid "Contact has been unarchived"
-msgstr "Kontakt har blitt hentet tilbake fra arkivet"
+#: ../../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 er herved hjertelig invitert til å bli med meg og andre nære venner på Friendica - hjelp oss å skape en bedre sosial web."
 
-#: ../../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/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Du må oppgi denne invitasjonskoden: $invite_code"
 
-#: ../../mod/contacts.php:341
-msgid "Contact has been removed."
-msgstr "Kontakten er fjernet."
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Når du har registrert, vennligst kontakt meg via min profilside på:"
 
-#: ../../mod/contacts.php:379
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Du er gjensidig venn med %s"
+#: ../../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 "For mer informasjon om Friendica-prosjektet og hvorfor vi mener det er viktig, vennligst besøk http://friendica.com"
 
-#: ../../mod/contacts.php:383
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Du deler med %s"
+#: ../../mod/settings.php:41
+msgid "Additional features"
+msgstr "Tilleggsfunksjoner"
 
-#: ../../mod/contacts.php:388
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s deler med deg"
+#: ../../mod/settings.php:46
+msgid "Display"
+msgstr "Vis"
 
-#: ../../mod/contacts.php:405
-msgid "Private communications are not available for this contact."
-msgstr "Privat kommunikasjon er ikke tilgjengelig mot denne kontakten."
+#: ../../mod/settings.php:52 ../../mod/settings.php:775
+msgid "Social Networks"
+msgstr "Sosiale nettverk"
 
-#: ../../mod/contacts.php:412
-msgid "(Update was successful)"
-msgstr "(Oppdatering vellykket)"
+#: ../../mod/settings.php:62 ../../include/nav.php:167
+msgid "Delegations"
+msgstr "Delegasjoner"
 
-#: ../../mod/contacts.php:412
-msgid "(Update was not successful)"
-msgstr "(Oppdatering mislykket)"
+#: ../../mod/settings.php:67
+msgid "Connected apps"
+msgstr "Tilkoblede programmer"
 
-#: ../../mod/contacts.php:414
-msgid "Suggest friends"
-msgstr "Foreslå venner"
+#: ../../mod/settings.php:72 ../../mod/uexport.php:85
+msgid "Export personal data"
+msgstr "Eksporter personlige data"
 
-#: ../../mod/contacts.php:418
-#, php-format
-msgid "Network type: %s"
-msgstr "Nettverkstype: %s"
+#: ../../mod/settings.php:77
+msgid "Remove account"
+msgstr "Fjern konto"
 
-#: ../../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/settings.php:129
+msgid "Missing some important data!"
+msgstr "Mangler noen viktige data!"
 
-#: ../../mod/contacts.php:426
-msgid "View all contacts"
-msgstr "Vis alle kontakter"
+#: ../../mod/settings.php:238
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Mislyktes i å opprette forbindelse med e-postkontoen med de oppgitte innstillingene."
 
-#: ../../mod/contacts.php:434
-msgid "Toggle Blocked status"
-msgstr "Veksle blokkeringsstatus"
+#: ../../mod/settings.php:243
+msgid "Email settings updated."
+msgstr "E-postinnstillinger er oppdatert."
 
-#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
-#: ../../mod/contacts.php:701
-msgid "Unignore"
-msgstr "Fjern ignorering"
+#: ../../mod/settings.php:258
+msgid "Features updated"
+msgstr "Funksjoner oppdatert"
 
-#: ../../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/settings.php:319
+msgid "Relocate message has been send to your contacts"
+msgstr "Omplasseringsmelding har blitt sendt til dine kontakter"
 
-#: ../../mod/contacts.php:440
-msgid "Toggle Ignored status"
-msgstr "Veksle ingnorertstatus"
+#: ../../mod/settings.php:333
+msgid "Passwords do not match. Password unchanged."
+msgstr "Passordene er ikke like. Passord uendret."
 
-#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
-msgid "Unarchive"
-msgstr "Hent ut av arkivet"
+#: ../../mod/settings.php:338
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Tomme passord er ikke lov. Passord uendret."
 
-#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
-msgid "Archive"
-msgstr "Arkiver"
+#: ../../mod/settings.php:346
+msgid "Wrong password."
+msgstr "Feil passord."
 
-#: ../../mod/contacts.php:447
-msgid "Toggle Archive status"
-msgstr "Veksle arkivertstatus"
+#: ../../mod/settings.php:357
+msgid "Password changed."
+msgstr "Passord endret."
 
-#: ../../mod/contacts.php:450
-msgid "Repair"
-msgstr "Reparer"
+#: ../../mod/settings.php:359
+msgid "Password update failed. Please try again."
+msgstr "Passordoppdatering mislyktes. Vennligst prøv igjen."
 
-#: ../../mod/contacts.php:453
-msgid "Advanced Contact Settings"
-msgstr "Avanserte kontaktinnstillinger"
+#: ../../mod/settings.php:424
+msgid " Please use a shorter name."
+msgstr "Vennligst bruk et kortere navn."
 
-#: ../../mod/contacts.php:459
-msgid "Communications lost with this contact!"
-msgstr "Kommunikasjon tapt med denne kontakten!"
+#: ../../mod/settings.php:426
+msgid " Name too short."
+msgstr "Navnet er for kort."
 
-#: ../../mod/contacts.php:462
-msgid "Contact Editor"
-msgstr "Endre kontakt"
+#: ../../mod/settings.php:435
+msgid "Wrong Password"
+msgstr "Feil passord"
 
-#: ../../mod/contacts.php:465
-msgid "Profile Visibility"
-msgstr "Profilens synlighet"
+#: ../../mod/settings.php:440
+msgid " Not valid email."
+msgstr "Ugyldig e-postadresse."
 
-#: ../../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/settings.php:446
+msgid " Cannot change to that email."
+msgstr "Kan ikke endre til den e-postadressen."
 
-#: ../../mod/contacts.php:467
-msgid "Contact Information / Notes"
-msgstr "Kontaktinformasjon/-notater"
+#: ../../mod/settings.php:501
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr "Privat forum har ingen personverntillatelser. Bruker standard personverngruppe."
 
-#: ../../mod/contacts.php:468
-msgid "Edit contact notes"
-msgstr "Endre kontaktnotater"
+#: ../../mod/settings.php:505
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr "Privat forum har ingen personverntillatelser og ingen standard personverngruppe."
 
-#: ../../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:474
-msgid "Block/Unblock contact"
-msgstr "Blokker kontakt/fjern blokkering for kontakt"
-
-#: ../../mod/contacts.php:475
-msgid "Ignore contact"
-msgstr "Ignorer kontakt"
-
-#: ../../mod/contacts.php:476
-msgid "Repair URL settings"
-msgstr "Reparer URL-innstillinger"
-
-#: ../../mod/contacts.php:477
-msgid "View conversations"
-msgstr "Vis samtaler"
-
-#: ../../mod/contacts.php:479
-msgid "Delete contact"
-msgstr "Slett kontakt"
-
-#: ../../mod/contacts.php:483
-msgid "Last update:"
-msgstr "Siste oppdatering:"
-
-#: ../../mod/contacts.php:485
-msgid "Update public posts"
-msgstr "Oppdater offentlige innlegg"
-
-#: ../../mod/contacts.php:494
-msgid "Currently blocked"
-msgstr "Blokkert nå"
-
-#: ../../mod/contacts.php:495
-msgid "Currently ignored"
-msgstr "Ignorert nå"
-
-#: ../../mod/contacts.php:496
-msgid "Currently archived"
-msgstr "For øyeblikket arkivert"
-
-#: ../../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: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: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:553
-msgid "Suggest potential friends"
-msgstr "Foreslå mulige venner"
-
-#: ../../mod/contacts.php:556 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Alle kontakter"
-
-#: ../../mod/contacts.php:559
-msgid "Show all contacts"
-msgstr "Vis alle kontakter"
-
-#: ../../mod/contacts.php:562
-msgid "Unblocked"
-msgstr "Ikke blokkert"
-
-#: ../../mod/contacts.php:565
-msgid "Only show unblocked contacts"
-msgstr "Bare vis ikke blokkerte kontakter"
-
-#: ../../mod/contacts.php:569
-msgid "Blocked"
-msgstr "Blokkert"
-
-#: ../../mod/contacts.php:572
-msgid "Only show blocked contacts"
-msgstr "Bare vis blokkerte kontakter"
-
-#: ../../mod/contacts.php:576
-msgid "Ignored"
-msgstr "Ignorert"
-
-#: ../../mod/contacts.php:579
-msgid "Only show ignored contacts"
-msgstr "Bare vis ignorerte kontakter"
-
-#: ../../mod/contacts.php:583
-msgid "Archived"
-msgstr "Arkivert"
-
-#: ../../mod/contacts.php:586
-msgid "Only show archived contacts"
-msgstr "Bare vis arkiverte kontakter"
-
-#: ../../mod/contacts.php:590
-msgid "Hidden"
-msgstr "Skjult"
-
-#: ../../mod/contacts.php:593
-msgid "Only show hidden contacts"
-msgstr "Bare vis skjulte kontakter"
-
-#: ../../mod/contacts.php:641
-msgid "Mutual Friendship"
-msgstr "Gjensidig vennskap"
-
-#: ../../mod/contacts.php:645
-msgid "is a fan of yours"
-msgstr "er en tilhenger av deg"
-
-#: ../../mod/contacts.php:649
-msgid "you are a fan of"
-msgstr "du er en tilhenger av"
-
-#: ../../mod/contacts.php:666 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Endre kontakt"
-
-#: ../../mod/contacts.php:692
-msgid "Search your contacts"
-msgstr "Søk i dine kontakter"
-
-#: ../../mod/contacts.php:699 ../../mod/settings.php:131
-#: ../../mod/settings.php:634
-msgid "Update"
-msgstr "Oppdater"
-
-#: ../../mod/settings.php:28 ../../mod/photos.php:80
-msgid "everybody"
-msgstr "alle"
-
-#: ../../mod/settings.php:40
-msgid "Additional features"
-msgstr "Tilleggsfunksjoner"
-
-#: ../../mod/settings.php:45
-msgid "Display"
-msgstr "Vis"
-
-#: ../../mod/settings.php:51 ../../mod/settings.php:774
-msgid "Social Networks"
-msgstr "Sosiale nettverk"
-
-#: ../../mod/settings.php:61 ../../include/nav.php:167
-msgid "Delegations"
-msgstr "Delegasjoner"
-
-#: ../../mod/settings.php:66
-msgid "Connected apps"
-msgstr "Tilkoblede programmer"
-
-#: ../../mod/settings.php:71 ../../mod/uexport.php:85
-msgid "Export personal data"
-msgstr "Eksporter personlige data"
-
-#: ../../mod/settings.php:76
-msgid "Remove account"
-msgstr "Fjern konto"
-
-#: ../../mod/settings.php:128
-msgid "Missing some important data!"
-msgstr "Mangler noen viktige data!"
-
-#: ../../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:242
-msgid "Email settings updated."
-msgstr "E-postinnstillinger er oppdatert."
-
-#: ../../mod/settings.php:257
-msgid "Features updated"
-msgstr "Funksjoner oppdatert"
-
-#: ../../mod/settings.php:318
-msgid "Relocate message has been send to your contacts"
-msgstr "Omplasseringsmelding har blitt sendt til dine kontakter"
-
-#: ../../mod/settings.php:332
-msgid "Passwords do not match. Password unchanged."
-msgstr "Passordene er ikke like. Passord uendret."
-
-#: ../../mod/settings.php:337
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Tomme passord er ikke lov. Passord uendret."
-
-#: ../../mod/settings.php:345
-msgid "Wrong password."
-msgstr "Feil passord."
-
-#: ../../mod/settings.php:356
-msgid "Password changed."
-msgstr "Passord endret."
-
-#: ../../mod/settings.php:358
-msgid "Password update failed. Please try again."
-msgstr "Passordoppdatering mislyktes. Vennligst prøv igjen."
-
-#: ../../mod/settings.php:423
-msgid " Please use a shorter name."
-msgstr "Vennligst bruk et kortere navn."
-
-#: ../../mod/settings.php:425
-msgid " Name too short."
-msgstr "Navnet er for kort."
-
-#: ../../mod/settings.php:434
-msgid "Wrong Password"
-msgstr "Feil passord"
-
-#: ../../mod/settings.php:439
-msgid " Not valid email."
-msgstr "Ugyldig e-postadresse."
-
-#: ../../mod/settings.php:445
-msgid " Cannot change to that email."
-msgstr "Kan ikke endre til den e-postadressen."
-
-#: ../../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: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:534
+#: ../../mod/settings.php:535
 msgid "Settings updated."
 msgstr "Innstillinger oppdatert."
 
-#: ../../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 "Legg til program"
 
-#: ../../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 "Omdiriger"
 
-#: ../../mod/settings.php:614 ../../mod/settings.php:640
+#: ../../mod/settings.php:615 ../../mod/settings.php:641
 msgid "Icon url"
 msgstr "Ikon URL"
 
-#: ../../mod/settings.php:625
+#: ../../mod/settings.php:626
 msgid "You can't edit this application."
 msgstr "Du kan ikke redigere dette programmet."
 
-#: ../../mod/settings.php:668
+#: ../../mod/settings.php:669
 msgid "Connected Apps"
 msgstr "Tilkoblede programmer"
 
-#: ../../mod/settings.php:672
+#: ../../mod/settings.php:673
 msgid "Client key starts with"
 msgstr "Klientnøkkelen starter med"
 
-#: ../../mod/settings.php:673
+#: ../../mod/settings.php:674
 msgid "No name"
 msgstr "Ingen navn"
 
-#: ../../mod/settings.php:674
+#: ../../mod/settings.php:675
 msgid "Remove authorization"
 msgstr "Fjern tillatelse"
 
-#: ../../mod/settings.php:686
+#: ../../mod/settings.php:687
 msgid "No Plugin settings configured"
 msgstr "Ingen tilleggsinnstillinger konfigurert"
 
-#: ../../mod/settings.php:694
+#: ../../mod/settings.php:695
 msgid "Plugin Settings"
 msgstr "Tilleggsinnstillinger"
 
-#: ../../mod/settings.php:708
+#: ../../mod/settings.php:709
 msgid "Off"
 msgstr "Av"
 
-#: ../../mod/settings.php:708
+#: ../../mod/settings.php:709
 msgid "On"
 msgstr "På"
 
-#: ../../mod/settings.php:716
+#: ../../mod/settings.php:717
 msgid "Additional Features"
 msgstr "Tilleggsfunksjoner"
 
-#: ../../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 "Innebygget støtte for %s forbindelse er %s"
 
-#: ../../mod/settings.php:730 ../../mod/settings.php:731
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 msgid "enabled"
 msgstr "aktivert"
 
-#: ../../mod/settings.php:730 ../../mod/settings.php:731
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 msgid "disabled"
 msgstr "avskrudd"
 
-#: ../../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 "E-posttilgang er avskrudd på dette stedet."
 
-#: ../../mod/settings.php:779
+#: ../../mod/settings.php:780
 msgid "Email/Mailbox Setup"
 msgstr "E-post-/postboksinnstillinger"
 
-#: ../../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 "Hvis du ønsker å kommunisere med e-postkontakter via denne tjenesten (frivillig), vennligst oppgi hvordan din postboks kontaktes."
 
-#: ../../mod/settings.php:781
+#: ../../mod/settings.php:782
 msgid "Last successful email check:"
 msgstr "Siste vellykkede e-postsjekk:"
 
-#: ../../mod/settings.php:783
+#: ../../mod/settings.php:784
 msgid "IMAP server name:"
 msgstr "IMAP-tjeners navn:"
 
-#: ../../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 "Sikkerhet:"
 
-#: ../../mod/settings.php:785 ../../mod/settings.php:790
+#: ../../mod/settings.php:786 ../../mod/settings.php:791
 msgid "None"
 msgstr "Ingen"
 
-#: ../../mod/settings.php:786
+#: ../../mod/settings.php:787
 msgid "Email login name:"
 msgstr "E-post brukernavn:"
 
-#: ../../mod/settings.php:787
+#: ../../mod/settings.php:788
 msgid "Email password:"
 msgstr "E-post passord:"
 
-#: ../../mod/settings.php:788
+#: ../../mod/settings.php:789
 msgid "Reply-to address:"
 msgstr "Svar-til-adresse:"
 
-#: ../../mod/settings.php:789
+#: ../../mod/settings.php:790
 msgid "Send public posts to all email contacts:"
 msgstr "Send offentlige meldinger til alle e-postkontakter:"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:791
 msgid "Action after import:"
 msgstr "Handling etter import:"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:791
 msgid "Mark as seen"
 msgstr "Marker som sett"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:791
 msgid "Move to folder"
 msgstr "Flytt til mappe"
 
-#: ../../mod/settings.php:791
+#: ../../mod/settings.php:792
 msgid "Move to folder:"
 msgstr "Flytt til mappe:"
 
-#: ../../mod/settings.php:869
+#: ../../mod/settings.php:870
 msgid "Display Settings"
 msgstr "Visningsinnstillinger"
 
-#: ../../mod/settings.php:875 ../../mod/settings.php:889
+#: ../../mod/settings.php:876 ../../mod/settings.php:890
 msgid "Display Theme:"
 msgstr "Vis tema:"
 
-#: ../../mod/settings.php:876
+#: ../../mod/settings.php:877
 msgid "Mobile Theme:"
 msgstr "Mobilt tema:"
 
-#: ../../mod/settings.php:877
+#: ../../mod/settings.php:878
 msgid "Update browser every xx seconds"
 msgstr "Oppdater nettleser hvert xx sekund"
 
-#: ../../mod/settings.php:877
+#: ../../mod/settings.php:878
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Minimum 10 sekunder, ikke noe maksimum"
 
-#: ../../mod/settings.php:878
+#: ../../mod/settings.php:879
 msgid "Number of items to display per page:"
 msgstr "Antall elementer som vises per side:"
 
-#: ../../mod/settings.php:878 ../../mod/settings.php:879
+#: ../../mod/settings.php:879 ../../mod/settings.php:880
 msgid "Maximum of 100 items"
 msgstr "Maksimum 100 elementer"
 
-#: ../../mod/settings.php:879
+#: ../../mod/settings.php:880
 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:880
+#: ../../mod/settings.php:881
 msgid "Don't show emoticons"
 msgstr "Ikke vis uttrykksikoner"
 
-#: ../../mod/settings.php:881
+#: ../../mod/settings.php:882
 msgid "Don't show notices"
 msgstr "Ikke vis varsler"
 
-#: ../../mod/settings.php:882
+#: ../../mod/settings.php:883
 msgid "Infinite scroll"
 msgstr "Uendelig rulling"
 
-#: ../../mod/settings.php:959
+#: ../../mod/settings.php:960
+msgid "User Types"
+msgstr "Brukerkategorier"
+
+#: ../../mod/settings.php:961
+msgid "Community Types"
+msgstr "Felleskapskategorier"
+
+#: ../../mod/settings.php:962
 msgid "Normal Account Page"
 msgstr "Vanlig konto-side"
 
-#: ../../mod/settings.php:960
+#: ../../mod/settings.php:963
 msgid "This account is a normal personal profile"
 msgstr "Denne kontoen er en vanlig personlig profil"
 
-#: ../../mod/settings.php:963
+#: ../../mod/settings.php:966
 msgid "Soapbox Page"
 msgstr "Talerstol-side"
 
-#: ../../mod/settings.php:964
+#: ../../mod/settings.php:967
 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:967
+#: ../../mod/settings.php:970
 msgid "Community Forum/Celebrity Account"
 msgstr "Fellesskapsforum/Kjendis-side"
 
-#: ../../mod/settings.php:968
+#: ../../mod/settings.php:971
 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:971
+#: ../../mod/settings.php:974
 msgid "Automatic Friend Page"
 msgstr "Automatisk venn-side"
 
-#: ../../mod/settings.php:972
+#: ../../mod/settings.php:975
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som venner"
 
-#: ../../mod/settings.php:975
+#: ../../mod/settings.php:978
 msgid "Private Forum [Experimental]"
 msgstr "Privat forum [Eksperimentell]"
 
-#: ../../mod/settings.php:976
+#: ../../mod/settings.php:979
 msgid "Private forum - approved members only"
 msgstr "Privat forum - kun godkjente medlemmer"
 
-#: ../../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 "(Valgfritt) Tillat denne OpenID-en å logge inn i denne kontoen."
 
-#: ../../mod/settings.php:998
+#: ../../mod/settings.php:1001
 msgid "Publish your default profile in your local site directory?"
 msgstr "Skal standardprofilen din publiseres i katalogen til nettstedet ditt?"
 
-#: ../../mod/settings.php:1004
+#: ../../mod/settings.php:1007
 msgid "Publish your default profile in the global social directory?"
 msgstr "Skal standardprofilen din publiseres i den globale sosiale katalogen?"
 
-#: ../../mod/settings.php:1012
+#: ../../mod/settings.php:1015
 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:1016
+#: ../../mod/settings.php:1019 ../../include/conversation.php:1055
 msgid "Hide your profile details from unknown viewers?"
 msgstr "Skjul dine profildetaljer fra ukjente besøkende?"
 
-#: ../../mod/settings.php:1021
+#: ../../mod/settings.php:1024
 msgid "Allow friends to post to your profile page?"
 msgstr "Tillat venner å poste innlegg på din profilside?"
 
-#: ../../mod/settings.php:1027
+#: ../../mod/settings.php:1030
 msgid "Allow friends to tag your posts?"
 msgstr "Tillat venner å merke dine innlegg?"
 
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1036
 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:1039
+#: ../../mod/settings.php:1042
 msgid "Permit unknown people to send you private mail?"
 msgstr "Tillat ukjente personer å sende deg privat post?"
 
-#: ../../mod/settings.php:1047
+#: ../../mod/settings.php:1050
 msgid "Profile is <strong>not published</strong>."
 msgstr "Profilen er <strong>ikke publisert</strong>."
 
-#: ../../mod/settings.php:1050 ../../mod/profile_photo.php:248
+#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248
 msgid "or"
 msgstr "eller"
 
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1058
 msgid "Your Identity Address is"
 msgstr "Din identitetsadresse er"
 
-#: ../../mod/settings.php:1066
+#: ../../mod/settings.php:1069
 msgid "Automatically expire posts after this many days:"
 msgstr "Innlegg utgår automatisk etter så mange dager:"
 
-#: ../../mod/settings.php:1066
+#: ../../mod/settings.php:1069
 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:1067
+#: ../../mod/settings.php:1070
 msgid "Advanced expiration settings"
 msgstr "Avanserte innstillinger for å utgå"
 
-#: ../../mod/settings.php:1068
+#: ../../mod/settings.php:1071
 msgid "Advanced Expiration"
 msgstr "Avansert utgå"
 
-#: ../../mod/settings.php:1069
+#: ../../mod/settings.php:1072
 msgid "Expire posts:"
 msgstr "Innlegg utgår:"
 
-#: ../../mod/settings.php:1070
+#: ../../mod/settings.php:1073
 msgid "Expire personal notes:"
 msgstr "Personlige notater utgår:"
 
-#: ../../mod/settings.php:1071
+#: ../../mod/settings.php:1074
 msgid "Expire starred posts:"
 msgstr "Innlegg med stjerne utgår:"
 
-#: ../../mod/settings.php:1072
+#: ../../mod/settings.php:1075
 msgid "Expire photos:"
 msgstr "Bilder utgår:"
 
-#: ../../mod/settings.php:1073
+#: ../../mod/settings.php:1076
 msgid "Only expire posts by others:"
 msgstr "Kun innlegg fra andre utgår:"
 
-#: ../../mod/settings.php:1099
+#: ../../mod/settings.php:1102
 msgid "Account Settings"
 msgstr "Kontoinnstillinger"
 
-#: ../../mod/settings.php:1107
+#: ../../mod/settings.php:1110
 msgid "Password Settings"
 msgstr "Passordinnstillinger"
 
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1111
 msgid "New Password:"
 msgstr "Nytt passord:"
 
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1112
 msgid "Confirm:"
 msgstr "Bekreft:"
 
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1112
 msgid "Leave password fields blank unless changing"
 msgstr "La passordfeltene stå tomme hvis du ikke skal bytte"
 
-#: ../../mod/settings.php:1110
+#: ../../mod/settings.php:1113
 msgid "Current Password:"
 msgstr "Gjeldende passord:"
 
-#: ../../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 "Ditt gjeldende passord for å bekrefte endringene"
 
-#: ../../mod/settings.php:1111
+#: ../../mod/settings.php:1114
 msgid "Password:"
 msgstr "Passord:"
 
-#: ../../mod/settings.php:1115
+#: ../../mod/settings.php:1118
 msgid "Basic Settings"
 msgstr "Grunninnstillinger"
 
-#: ../../mod/settings.php:1116 ../../include/profile_advanced.php:15
+#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15
 msgid "Full Name:"
 msgstr "Fullt navn:"
 
-#: ../../mod/settings.php:1117
+#: ../../mod/settings.php:1120
 msgid "Email Address:"
 msgstr "E-postadresse:"
 
-#: ../../mod/settings.php:1118
+#: ../../mod/settings.php:1121
 msgid "Your Timezone:"
 msgstr "Din tidssone:"
 
-#: ../../mod/settings.php:1119
+#: ../../mod/settings.php:1122
 msgid "Default Post Location:"
 msgstr "Standard oppholdssted når du poster:"
 
-#: ../../mod/settings.php:1120
+#: ../../mod/settings.php:1123
 msgid "Use Browser Location:"
 msgstr "Bruk nettleserens oppholdssted:"
 
-#: ../../mod/settings.php:1123
+#: ../../mod/settings.php:1126
 msgid "Security and Privacy Settings"
 msgstr "Sikkerhet og privatlivsinnstillinger"
 
-#: ../../mod/settings.php:1125
+#: ../../mod/settings.php:1128
 msgid "Maximum Friend Requests/Day:"
 msgstr "Maksimum venneforespørsler/dag:"
 
-#: ../../mod/settings.php:1125 ../../mod/settings.php:1155
+#: ../../mod/settings.php:1128 ../../mod/settings.php:1158
 msgid "(to prevent spam abuse)"
 msgstr "(for å forhindre søppelpost)"
 
-#: ../../mod/settings.php:1126
+#: ../../mod/settings.php:1129
 msgid "Default Post Permissions"
 msgstr "Standardtillatelser ved posting"
 
-#: ../../mod/settings.php:1127
+#: ../../mod/settings.php:1130
 msgid "(click to open/close)"
 msgstr "(klikk for å åpne/lukke)"
 
-#: ../../mod/settings.php:1136 ../../mod/photos.php:1144
-#: ../../mod/photos.php:1515
-msgid "Show to Groups"
-msgstr "Vis til grupper"
-
-#: ../../mod/settings.php:1137 ../../mod/photos.php:1145
-#: ../../mod/photos.php:1516
-msgid "Show to Contacts"
-msgstr "Vis til kontakter"
-
-#: ../../mod/settings.php:1138
+#: ../../mod/settings.php:1141
 msgid "Default Private Post"
 msgstr "Standard privat innlegg"
 
-#: ../../mod/settings.php:1139
+#: ../../mod/settings.php:1142
 msgid "Default Public Post"
 msgstr "Standard offentlig innlegg"
 
-#: ../../mod/settings.php:1143
+#: ../../mod/settings.php:1146
 msgid "Default Permissions for New Posts"
 msgstr "Standard tillatelser for nye innlegg"
 
-#: ../../mod/settings.php:1155
+#: ../../mod/settings.php:1158
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Maksimalt antall private meldinger per dag fra ukjente personer:"
 
-#: ../../mod/settings.php:1158
+#: ../../mod/settings.php:1161
 msgid "Notification Settings"
 msgstr "Beskjedinnstillinger"
 
-#: ../../mod/settings.php:1159
+#: ../../mod/settings.php:1162
 msgid "By default post a status message when:"
 msgstr "Standard å legge inn en statusmelding når:"
 
-#: ../../mod/settings.php:1160
+#: ../../mod/settings.php:1163
 msgid "accepting a friend request"
 msgstr "aksepterer en venneforespørsel"
 
-#: ../../mod/settings.php:1161
+#: ../../mod/settings.php:1164
 msgid "joining a forum/community"
 msgstr "blir med i et forum/fellesskap"
 
-#: ../../mod/settings.php:1162
+#: ../../mod/settings.php:1165
 msgid "making an <em>interesting</em> profile change"
 msgstr "gjør en <em>interessant</em> profilendring"
 
-#: ../../mod/settings.php:1163
+#: ../../mod/settings.php:1166
 msgid "Send a notification email when:"
 msgstr "Send en e-post med beskjed når:"
 
-#: ../../mod/settings.php:1164
+#: ../../mod/settings.php:1167
 msgid "You receive an introduction"
 msgstr "Du mottar en introduksjon"
 
-#: ../../mod/settings.php:1165
+#: ../../mod/settings.php:1168
 msgid "Your introductions are confirmed"
 msgstr "Dine introduksjoner er bekreftet"
 
-#: ../../mod/settings.php:1166
+#: ../../mod/settings.php:1169
 msgid "Someone writes on your profile wall"
 msgstr "Noen skriver på veggen til profilen din"
 
-#: ../../mod/settings.php:1167
+#: ../../mod/settings.php:1170
 msgid "Someone writes a followup comment"
 msgstr "Noen skriver en oppfølgingskommentar"
 
-#: ../../mod/settings.php:1168
+#: ../../mod/settings.php:1171
 msgid "You receive a private message"
 msgstr "Du mottar en privat melding"
 
-#: ../../mod/settings.php:1169
+#: ../../mod/settings.php:1172
 msgid "You receive a friend suggestion"
 msgstr "Du mottar et venneforslag"
 
-#: ../../mod/settings.php:1170
+#: ../../mod/settings.php:1173
 msgid "You are tagged in a post"
 msgstr "Du er merket i et innlegg"
 
-#: ../../mod/settings.php:1171
+#: ../../mod/settings.php:1174
 msgid "You are poked/prodded/etc. in a post"
 msgstr "Du er dyttet/dultet/etc i et innlegg"
 
-#: ../../mod/settings.php:1174
+#: ../../mod/settings.php:1177
 msgid "Advanced Account/Page Type Settings"
 msgstr "Avanserte konto-/sidetype-innstillinger"
 
-#: ../../mod/settings.php:1175
+#: ../../mod/settings.php:1178
 msgid "Change the behaviour of this account for special situations"
 msgstr "Endre oppførselen til denne kontoen i spesielle situasjoner"
 
-#: ../../mod/settings.php:1178
+#: ../../mod/settings.php:1181
 msgid "Relocate"
 msgstr "Omplasser"
 
-#: ../../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 "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:1180
+#: ../../mod/settings.php:1183
 msgid "Resend relocate message to contacts"
 msgstr "Send omplasseringsmelding på nytt til kontakter"
 
+#: ../../mod/display.php:263
+msgid "Item has been removed."
+msgstr "Elementet har blitt slettet."
+
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Personsøk"
+
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Ingen treff"
+
 #: ../../mod/profiles.php:37
 msgid "Profile deleted."
 msgstr "Profil slettet."
@@ -4468,207 +4260,323 @@ msgid ""
 "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:690 ../../mod/directory.php:111
+msgid "Age: "
+msgstr "Alder:"
+
 #: ../../mod/profiles.php:729
 msgid "Edit/Manage Profiles"
 msgstr "Rediger/Behandle profiler"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Gruppen er laget."
-
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Kunne ikke lage gruppen."
-
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Fant ikke gruppen."
+#: ../../mod/profiles.php:730 ../../boot.php:1473 ../../boot.php:1499
+msgid "Change profile photo"
+msgstr "Endre profilbilde"
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Gruppenavnet er endret"
+#: ../../mod/profiles.php:731 ../../boot.php:1474
+msgid "Create New Profile"
+msgstr "Lag ny profil"
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr "Lagre gruppe"
+#: ../../mod/profiles.php:742 ../../boot.php:1484
+msgid "Profile Image"
+msgstr "Profilbilde"
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Lag en gruppe med kontakter/venner."
+#: ../../mod/profiles.php:744 ../../boot.php:1487
+msgid "visible to everybody"
+msgstr "synlig for alle"
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Gruppenavn:"
+#: ../../mod/profiles.php:745 ../../boot.php:1488
+msgid "Edit visibility"
+msgstr "Endre synlighet"
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Gruppe fjernet."
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "lenke"
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Mislyktes med å fjerne gruppe."
+#: ../../mod/uexport.php:77
+msgid "Export account"
+msgstr "Eksporter konto"
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Gruppebehandler"
+#: ../../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/group.php:192
-msgid "Members"
-msgstr "Medlemmer"
+#: ../../mod/uexport.php:78
+msgid "Export all"
+msgstr "Eksporter alt"
 
-#: ../../mod/group.php:224 ../../mod/profperm.php:105
-msgid "Click on a contact to add or remove."
-msgstr "Klikk på en kontakt for å legge til eller fjerne."
+#: ../../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 "Eksporter din kontoinformasjon, kontakter og alle dine elementer som JSON. Det kan bli en svært stor fil, og kan ta lang tid. Bruk denne til å gjøre en full sikkerhetskopi av kontoen din (bilder blir ikke eksportert)"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "BBcode kildetekst:"
+#: ../../mod/ping.php:238
+msgid "{0} wants to be your friend"
+msgstr "{0} ønsker å bli din venn"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Diaspora kildetekst å konvertere til BBcode:"
+#: ../../mod/ping.php:243
+msgid "{0} sent you a message"
+msgstr "{0} sendte deg en melding"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Kilde-input:"
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr "{0} forespurte om registrering"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (rå HTML):"
+#: ../../mod/ping.php:254
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} kommenterte %s sitt innlegg"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html:"
+#: ../../mod/ping.php:259
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} likte %s sitt innlegg"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb:"
+#: ../../mod/ping.php:264
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} likte ikke %s sitt innlegg"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md:"
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} er nå venner med %s"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html:"
+#: ../../mod/ping.php:274
+msgid "{0} posted"
+msgstr "{0} postet et innlegg"
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb:"
+#: ../../mod/ping.php:279
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} merket %s sitt innlegg med #%s"
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb:"
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
+msgstr "{0} nevnte deg i et innlegg"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Diaspora-formatert kilde-input:"
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Ikke noe nytt her"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb:"
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Fjern varslinger"
 
 #: ../../mod/community.php:23
 msgid "Not available."
 msgstr "Ikke tilgjengelig."
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Kontakt lagt til "
+#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129
+#: ../../include/nav.php:128
+msgid "Community"
+msgstr "Fellesskap"
 
-#: ../../mod/notify.php:61 ../../mod/notifications.php:332
-msgid "No more system notifications."
-msgstr "Ingen flere systemvarsler."
+#: ../../mod/filer.php:30 ../../include/conversation.php:1004
+#: ../../include/conversation.php:1022
+msgid "Save to Folder:"
+msgstr "Lagre til mappe:"
 
-#: ../../mod/notify.php:65 ../../mod/notifications.php:336
-msgid "System Notifications"
-msgstr "Systemvarsler"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- velg -"
 
-#: ../../mod/message.php:9 ../../include/nav.php:161
-msgid "New Message"
-msgstr "Ny melding"
+#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954
+msgid "Save"
+msgstr "Lagre"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Mislyktes med å finne kontaktinformasjon."
+#: ../../mod/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/message.php:182 ../../mod/notifications.php:103
-#: ../../include/nav.php:158
-msgid "Messages"
-msgstr "Meldinger"
+#: ../../mod/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/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Ønsker du virkelig å slette denne meldingen?"
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Filstørrelsen er større enn begrensning på %d"
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Melding slettet."
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Opplasting av filen mislyktes."
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Samtale slettet."
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Ugyldig profilidentifikator."
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Ingen meldinger."
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Behandle profilsynlighet"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Ukjent avsender - %s"
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
+msgstr "Klikk på en kontakt for å legge til eller fjerne."
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Du og %s"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Synlig for"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s og du"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Alle kontakter (med sikret profiltilgang)"
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Slett samtale"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Vil du virkelig slette dette forslaget?"
 
-#: ../../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 "Venneforslag"
 
-#: ../../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 "Ingen forslag tilgjengelig. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer."
+
+#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1445
+#: ../../include/contact_widgets.php:9
+msgid "Connect"
+msgstr "Forbindelse"
+
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "Ignorér/Skjul"
+
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Tilgang avslått."
+
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
 #, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d melding"
-msgstr[1] "%d meldinger"
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s hilser %2$s"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Melding utilgjengelig."
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Behandle identiteter og/eller sider"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Slett melding"
+#: ../../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 "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser"
 
-#: ../../mod/message.php:548
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Velg en identitet å behandle:"
+
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Fant ingen potensielle sidedelegater."
+
+#: ../../mod/delegate.php:124 ../../include/nav.php:167
+msgid "Delegate Page Management"
+msgstr "Deleger sidebehandling"
+
+#: ../../mod/delegate.php:126
 msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Ingen sikker kommunikasjon tilgjengelig. Du <strong>kan kanskje</strong> svare fra senderens profilside."
+"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/message.php:552
-msgid "Send Reply"
-msgstr "Send svar"
+#: ../../mod/delegate.php:127
+msgid "Existing Page Managers"
+msgstr "Eksisterende sidebehandlere"
 
-#: ../../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"
+#: ../../mod/delegate.php:129
+msgid "Existing Page Delegates"
+msgstr "Eksisterende sidedelegater"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Innlegg vellykket."
+#: ../../mod/delegate.php:131
+msgid "Potential Delegates"
+msgstr "Mulige delegater"
+
+#: ../../mod/delegate.php:134
+msgid "Add"
+msgstr "Legg til"
+
+#: ../../mod/delegate.php:135
+msgid "No entries."
+msgstr "Ingen oppføringer"
+
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "Ingen kontakter."
+
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:874
+msgid "View Contacts"
+msgstr "Vis kontakter"
+
+#: ../../mod/notes.php:44 ../../boot.php:2010
+msgid "Personal Notes"
+msgstr "Personlige notater"
+
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Dytt/dult"
+
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "dytt, dult eller gjør andre ting med noen"
+
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Mottaker"
+
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Velg hva du ønsker å gjøre med mottakeren"
+
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Gjør dette innlegget privat"
+
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:525
+msgid "Global Directory"
+msgstr "Global katalog"
+
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "Finn på dette nettstedet"
+
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "Stedets katalog"
+
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "Kjønn:"
+
+#: ../../mod/directory.php:136 ../../boot.php:1515
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Kjønn:"
+
+#: ../../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 "Hjemmeside:"
+
+#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "Om:"
+
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr "Ingen oppføringer (noen oppføringer kan være skjulte)."
 
 #: ../../mod/localtime.php:12 ../../include/event.php:11
 #: ../../include/bb2diaspora.php:133
@@ -4704,406 +4612,433 @@ msgstr "Konvertert lokaltid: %s"
 msgid "Please select your timezone:"
 msgstr "Vennligst velg din tidssone:"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1004
-#: ../../include/conversation.php:1022
-msgid "Save to Folder:"
-msgstr "Lagre til mappe:"
-
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- velg -"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Innlegg vellykket."
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Ugyldig profilidentifikator."
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Bildet ble lastet opp, men beskjæringen mislyktes."
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Behandle profilsynlighet"
+#: ../../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 "Reduksjon av bildestørrelse [%s] mislyktes."
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Synlig for"
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Shift-last-siden-på-nytt eller slett mellomlagret i nettleseren hvis det nye bildet ikke vises umiddelbart."
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle kontakter (med sikret profiltilgang)"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Mislyktes med å behandle bilde"
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Ingen kontakter."
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Last opp fil:"
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:861
-msgid "View Contacts"
-msgstr "Vis kontakter"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Velg en profil:"
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Personsøk"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Last opp"
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Ingen treff"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "hopp over dette steget"
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1810
-msgid "Upload New Photos"
-msgstr "Last opp nye bilder"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "velg et bilde fra dine fotoalbum"
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
-msgstr "Kontaktinformasjon utilgjengelig"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Beskjær bilde"
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
-msgstr "Album ble ikke funnet."
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Vennligst juster beskjæringen av bildet for optimal visning."
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
-msgid "Delete Album"
-msgstr "Slett album"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Behandling ferdig"
 
-#: ../../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/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Bilde ble lastet opp."
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511
-msgid "Delete Photo"
-msgstr "Slett bilde"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica kommunikasjonstjeneste - oppsett"
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
-msgstr "Ønsker du virkelig å slette dette bildet?"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Kunne ikke koble til database."
 
-#: ../../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/install.php:127
+msgid "Could not create table."
+msgstr "Kunne ikke lage tabell."
 
-#: ../../mod/photos.php:660
-msgid "a photo"
-msgstr "et bilde"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "Databasen til Friendica-nettstedet ditt har blitt installert."
 
-#: ../../mod/photos.php:765
-msgid "Image exceeds size limit of "
-msgstr "Bilde overstiger størrelsesbegrensningen på "
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql."
 
-#: ../../mod/photos.php:773
-msgid "Image file is empty."
-msgstr "Bildefilen er tom."
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:521
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Vennligst se filen \"INSTALL.txt\"."
 
-#: ../../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/install.php:203
+msgid "System check"
+msgstr "Systemsjekk"
 
-#: ../../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/install.php:208
+msgid "Check again"
+msgstr "Sjekk på nytt"
 
-#: ../../mod/photos.php:928
-msgid "No photos selected"
-msgstr "Ingen bilder er valgt"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Databaseforbindelse"
 
-#: ../../mod/photos.php:1029 ../../mod/videos.php:226
-msgid "Access to this item is restricted."
-msgstr "Tilgang til dette elementet er begrenset."
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "For å installere Friendica må vi vite hvordan man kan koble seg til din database."
 
-#: ../../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/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene."
 
-#: ../../mod/photos.php:1127
-msgid "Upload Photos"
-msgstr "Last opp bilder"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter."
 
-#: ../../mod/photos.php:1131 ../../mod/photos.php:1199
-msgid "New album name: "
-msgstr "Nytt albumnavn:"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Databasetjenerens navn"
 
-#: ../../mod/photos.php:1132
-msgid "or existing album name: "
-msgstr "eller eksisterende albumnavn:"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Database brukernavn"
 
-#: ../../mod/photos.php:1133
-msgid "Do not show a status post for this upload"
-msgstr "Ikke vis statusoppdatering for denne opplastingen"
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Database passord"
 
-#: ../../mod/photos.php:1135 ../../mod/photos.php:1506
-msgid "Permissions"
-msgstr "Tillatelser"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Databasenavn"
 
-#: ../../mod/photos.php:1146
-msgid "Private Photo"
-msgstr "Privat bilde"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Nettstedsadministrator sin e-postadresse"
 
-#: ../../mod/photos.php:1147
-msgid "Public Photo"
-msgstr "Offentlig bilde"
+#: ../../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 "Din kontos e-postadresse må stemme med denne for å kunne bruke panelet for webadministrasjon."
 
-#: ../../mod/photos.php:1214
-msgid "Edit Album"
-msgstr "Endre album"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Vennligst velg en standard tidssone for ditt nettsted"
 
-#: ../../mod/photos.php:1220
-msgid "Show Newest First"
-msgstr "Vis nyeste først"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Innstillinger for nettstedet"
 
-#: ../../mod/photos.php:1222
-msgid "Show Oldest First"
-msgstr "Vis eldste først"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Fant ikke en kommandolinjeversjon av PHP i webtjenerens PATH."
 
-#: ../../mod/photos.php:1255 ../../mod/photos.php:1793
-msgid "View Photo"
-msgstr "Vis bilde"
+#: ../../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 "Hvis du ikke har installert kommandolinjeversjonen av PHP på tjeneren, så vil du ikke kunne kjøre bakgrunnsspørring via cron. Se <a href='http://friendica.com/node/27'>'Aktivere tidsstyrte oppgaver'</a>"
 
-#: ../../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/install.php:326
+msgid "PHP executable path"
+msgstr "PHP kjørefil sin sti"
 
-#: ../../mod/photos.php:1292
-msgid "Photo not available"
-msgstr "Bilde ikke tilgjengelig"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Skriv inn hele stien til php kjørefilen. Du kan la denne stå blank for å fortsette installasjonen."
 
-#: ../../mod/photos.php:1348
-msgid "View photo"
-msgstr "Vis foto"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "Kommandolinje PHP"
 
-#: ../../mod/photos.php:1348
-msgid "Edit photo"
-msgstr "Endre bilde"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "PHP kjørefilen er ikke php cli binærfil (kan være cgi-fgci versjon)"
 
-#: ../../mod/photos.php:1349
-msgid "Use as profile photo"
-msgstr "Bruk som profilbilde"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Fant PHP-versjon:"
 
-#: ../../mod/photos.php:1374
-msgid "View Full Size"
-msgstr "Vis i full størrelse"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "PHP cli binærfil"
 
-#: ../../mod/photos.php:1453
-msgid "Tags: "
-msgstr "Tagger:"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert."
 
-#: ../../mod/photos.php:1456
-msgid "[Remove any tag]"
-msgstr "[Fjern en tag]"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Dette er nødvendig for at meldingslevering skal virke."
 
-#: ../../mod/photos.php:1496
-msgid "Rotate CW (right)"
-msgstr "Roter med klokka (høyre)"
-
-#: ../../mod/photos.php:1497
-msgid "Rotate CCW (left)"
-msgstr "Roter mot klokka (venstre)"
-
-#: ../../mod/photos.php:1499
-msgid "New album name"
-msgstr "Nytt albumnavn"
-
-#: ../../mod/photos.php:1502
-msgid "Caption"
-msgstr "Overskrift"
-
-#: ../../mod/photos.php:1504
-msgid "Add a Tag"
-msgstr "Legg til tag"
+#: ../../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 "Eksempel: @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 "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler"
 
-#: ../../mod/photos.php:1517
-msgid "Private photo"
-msgstr "Privat bilde"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../mod/photos.php:1518
-msgid "Public photo"
-msgstr "Offentlig bilde"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Lag krypteringsnøkler"
 
-#: ../../mod/photos.php:1540 ../../include/conversation.php:1083
-msgid "Share"
-msgstr "Del"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "libCurl PHP modul"
 
-#: ../../mod/photos.php:1799 ../../mod/videos.php:308
-msgid "View Album"
-msgstr "Vis album"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "GD graphics PHP modul"
 
-#: ../../mod/photos.php:1808
-msgid "Recent Photos"
-msgstr "Nye bilder"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP modul"
 
-#: ../../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/install.php:391
+msgid "mysqli PHP module"
+msgstr "mysqli PHP modul"
 
-#: ../../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/install.php:392
+msgid "mb_string PHP module"
+msgstr "mb_string PHP modul"
 
-#: ../../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/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite modul"
 
-#: ../../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."
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert."
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Ingen videoer er valgt"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert."
 
-#: ../../mod/videos.php:301 ../../include/text.php:1387
-msgid "View Video"
-msgstr "Vis video"
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert."
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Nye videoer"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Feil: openssl PHP-modulen er påkrevet, men er ikke installert."
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Last opp nye videoer"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert."
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Dytt/dult"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Feil: mb_string PHP-modulen er påkrevet men ikke installert."
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "dytt, dult eller gjør andre ting med noen"
+#: ../../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 "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette."
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Mottaker"
+#: ../../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 "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan."
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Velg hva du ønsker å gjøre med mottakeren"
+#: ../../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 "På slutten av denne prosedyren, så gir vi deg en tekst å lagre i en fil kalt .htconfig.php i din Friendica sin toppmappe."
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Gjør dette innlegget privat"
+#: ../../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 "Du kan alternativt hoppe over denne prosedyren og utføre en manuell installasjon. Vennligst se filen \"INSTALL.txt\" for instruksjoner."
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s følger %2$s sin %3$s"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php er skrivbar"
 
-#: ../../mod/uexport.php:77
-msgid "Export account"
-msgstr "Eksporter konto"
+#: ../../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 bruker Smarty3 malmotor for å gjengi sine webvisninger. Smarty3 kompilerer maler til PHP for å gjøre gjengivelse raskere."
 
-#: ../../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 "Eksporter din kontos informasjon og kontakter. Bruk denne til å ta en sikkerhetskopi av kontoen din og/eller for å flytte til en annen tjener."
+"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 "For å lagre disse kompilerte malene må webtjenesten ha skrivetilgang til katalogen view/smarty3/ som er under Friendica sin toppnivåmappe."
 
-#: ../../mod/uexport.php:78
-msgid "Export all"
-msgstr "Eksporter alt"
+#: ../../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 "Vennligst sjekk at brukeren din webtjeneste kjører som (for eksempel www-data) har skrivetilgang til denne mappen."
 
-#: ../../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 "Eksporter din kontoinformasjon, kontakter og alle dine elementer som JSON. Det kan bli en svært stor fil, og kan ta lang tid. Bruk denne til å gjøre en full sikkerhetskopi av kontoen din (bilder blir ikke eksportert)"
+"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 "Merknad: som et sikkerhetstiltak, du bør gi webtjenesten skrivetilgang kun til view/smarty3/ - ikke til malfilene (.tpl) som den inneholder."
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Felles venner"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 er skrivbar"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Ingen kontakter felles."
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "URL omskriving i .htaccess virker ikke. Sjekk konfigurasjonen til webtjenesten."
 
-#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "Bildets størrelse overstiger størrelsesbegrensningen på %d"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "URL omskriving virker"
 
-#: ../../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 "Veggbilder"
+#: ../../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 "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener."
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Bildet ble lastet opp, men beskjæringen mislyktes."
+#: ../../mod/install.php:508
+msgid "Errors encountered creating database tables."
+msgstr "Feil oppstod under opprettelsen av databasetabeller."
 
-#: ../../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 "Reduksjon av bildestørrelse [%s] mislyktes."
+#: ../../mod/install.php:519
+msgid "<h1>What next</h1>"
+msgstr "<h1>Hva nå</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 "Shift-last-siden-på-nytt eller slett mellomlagret i nettleseren hvis det nye bildet ikke vises umiddelbart."
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering."
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Mislyktes med å behandle bilde"
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Gruppen er laget."
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Last opp fil:"
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Kunne ikke lage gruppen."
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Velg en profil:"
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Fant ikke gruppen."
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Last opp"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Gruppenavnet er endret"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "hopp over dette steget"
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr "Lagre gruppe"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "velg et bilde fra dine fotoalbum"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Lag en gruppe med kontakter/venner."
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Beskjær bilde"
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Gruppenavn:"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Vennligst juster beskjæringen av bildet for optimal visning."
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Gruppe fjernet."
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Behandling ferdig"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Mislyktes med å fjerne gruppe."
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Bilde ble lastet opp."
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Gruppebehandler"
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Programmer"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Medlemmer"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Ingen installerte programmer."
+#: ../../mod/content.php:119 ../../mod/network.php:514
+msgid "No such group"
+msgstr "Gruppen finnes ikke"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "Ikke noe nytt her"
+#: ../../mod/content.php:130 ../../mod/network.php:531
+msgid "Group is empty"
+msgstr "Gruppen er tom"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr "Fjern varslinger"
+#: ../../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 "Vis i sammenheng"
+
+#: ../../mod/regmod.php:63
+msgid "Account approved."
+msgstr "Konto godkjent."
+
+#: ../../mod/regmod.php:100
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registreringen til  %s er trukket tilbake"
+
+#: ../../mod/regmod.php:112
+msgid "Please login."
+msgstr "Vennligst logg inn."
 
 #: ../../mod/match.php:12
 msgid "Profile Match"
@@ -5117,1452 +5052,1682 @@ msgstr "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord i din sta
 msgid "is interested in:"
 msgstr "er interessert i:"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Fjernet tag"
+#: ../../mod/item.php:110
+msgid "Unable to locate original post."
+msgstr "Mislyktes med å lokalisere opprinnelig melding."
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Fjern tag"
+#: ../../mod/item.php:319
+msgid "Empty post discarded."
+msgstr "Tom melding forkastet."
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Velg en tag å fjerne:"
+#: ../../mod/item.php:891
+msgid "System error. Post not saved."
+msgstr "Systemfeil. Meldingen ble ikke lagret."
+
+#: ../../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:919
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Du kan besøke dem online på %s"
+
+#: ../../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:924
+#, php-format
+msgid "%s posted an update."
+msgstr "%s postet en oppdatering."
+
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s er for øyeblikket %2$s"
+
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Stemning"
+
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Angi din stemning og fortell dine venner"
+
+#: ../../mod/network.php:136
+msgid "Search Results For:"
+msgstr "Søkeresultater for:"
+
+#: ../../mod/network.php:189 ../../include/group.php:275
+msgid "add"
+msgstr "legg til"
+
+#: ../../mod/network.php:350
+msgid "Commented Order"
+msgstr "Etter kommentarer"
+
+#: ../../mod/network.php:353
+msgid "Sort by Comment Date"
+msgstr "Sorter etter kommentardato"
+
+#: ../../mod/network.php:356
+msgid "Posted Order"
+msgstr "Etter innlegg"
+
+#: ../../mod/network.php:359
+msgid "Sort by Post Date"
+msgstr "Sorter etter innleggsdato"
+
+#: ../../mod/network.php:368
+msgid "Posts that mention or involve you"
+msgstr "Innlegg som nevner eller involverer deg"
+
+#: ../../mod/network.php:374
+msgid "New"
+msgstr "Ny"
+
+#: ../../mod/network.php:377
+msgid "Activity Stream - by date"
+msgstr "Aktivitetsstrøm - etter dato"
+
+#: ../../mod/network.php:383
+msgid "Shared Links"
+msgstr "Delte lenker"
+
+#: ../../mod/network.php:386
+msgid "Interesting Links"
+msgstr "Interessante lenker"
+
+#: ../../mod/network.php:392
+msgid "Starred"
+msgstr "Med stjerne"
+
+#: ../../mod/network.php:395
+msgid "Favourite Posts"
+msgstr "Favorittinnlegg"
+
+#: ../../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] "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: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:548
+msgid "Contact: "
+msgstr "Kontakt:"
+
+#: ../../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:555
+msgid "Invalid contact."
+msgstr "Ugyldig kontakt."
+
+#: ../../mod/crepair.php:104
+msgid "Contact settings applied."
+msgstr "Kontaktinnstillinger i bruk."
+
+#: ../../mod/crepair.php:106
+msgid "Contact update failed."
+msgstr "Kontaktoppdatering mislyktes."
+
+#: ../../mod/crepair.php:137
+msgid "Repair Contact Settings"
+msgstr "Reparer kontaktinnstillinger"
+
+#: ../../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>ADVARSEL: Dette er meget avansert</strong> og hvis du skriver feil informasjon her, så kan kommunikasjonen med denne kontakten slutte å virke."
+
+#: ../../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 "Vennligst bruk Tilbake-knappen i nettleseren din <strong>nå</strong> hvis du er usikker på hva du bør gjøre på denne siden."
+
+#: ../../mod/crepair.php:146
+msgid "Return to contact editor"
+msgstr "Gå tilbake til å endre kontakt"
+
+#: ../../mod/crepair.php:151
+msgid "Account Nickname"
+msgstr "Konto Kallenavn"
+
+#: ../../mod/crepair.php:152
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Merkelappnavn - overstyrer Navn/Kallenavn"
+
+#: ../../mod/crepair.php:153
+msgid "Account URL"
+msgstr "Konto URL"
+
+#: ../../mod/crepair.php:154
+msgid "Friend Request URL"
+msgstr "Venneforespørsel URL"
+
+#: ../../mod/crepair.php:155
+msgid "Friend Confirm URL"
+msgstr "Vennebekreftelse URL"
+
+#: ../../mod/crepair.php:156
+msgid "Notification Endpoint URL"
+msgstr "Endepunkt URL for beskjed"
+
+#: ../../mod/crepair.php:157
+msgid "Poll/Feed URL"
+msgstr "Poll/Feed URL"
+
+#: ../../mod/crepair.php:158
+msgid "New photo from this URL"
+msgstr "Nytt bilde fra denne URL-en"
+
+#: ../../mod/crepair.php:159
+msgid "Remote Self"
+msgstr "Fjernbetjent selv"
+
+#: ../../mod/crepair.php:161
+msgid "Mirror postings from this contact"
+msgstr "Speil innlegg fra denne kontakten"
+
+#: ../../mod/crepair.php:161
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Merk denne kontakten som remote_self, da vil Friendica omposte nye innlegg fra denne kontakten."
+
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:145
+msgid "Your posts and conversations"
+msgstr "Dine innlegg og samtaler"
+
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Din profilside"
+
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Dine kontakter"
+
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Dine bilder"
+
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
+msgid "Your events"
+msgstr "Dine hendelser"
+
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Personal notes"
+msgstr "Personlige notater"
+
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Your personal photos"
+msgstr "Dine personlige bilder"
+
+#: ../../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 "Felleskapssider"
+
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+#: ../../view/theme/diabook/config.php:160
+msgid "Community Profiles"
+msgstr "Fellesskapsprofiler"
+
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+#: ../../view/theme/diabook/config.php:164
+msgid "Last users"
+msgstr "Siste brukere"
+
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:166
+msgid "Last likes"
+msgstr "Siste liker"
+
+#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1953
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+msgid "event"
+msgstr "hendelse"
+
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+#: ../../view/theme/diabook/config.php:165
+msgid "Last photos"
+msgstr "Siste bilder"
+
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:163
+msgid "Find Friends"
+msgstr "Finn venner"
+
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Lokal katalog"
+
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
+msgid "Similar Interests"
+msgstr "Liknende interesser"
+
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
+msgid "Invite Friends"
+msgstr "Inviterer venner"
+
+#: ../../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 "Angi zoomfaktor for Earth Layers"
+
+#: ../../view/theme/diabook/theme.php:585
+#: ../../view/theme/diabook/config.php:156
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Angi lengdegrad (X) for Earth Layers"
+
+#: ../../view/theme/diabook/theme.php:586
+#: ../../view/theme/diabook/config.php:157
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Angi breddegrad (Y) for Earth Layers"
+
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+#: ../../view/theme/diabook/config.php:161
+msgid "Help or @NewHere ?"
+msgstr "Hjelp eller @NewHere ?"
+
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+#: ../../view/theme/diabook/config.php:162
+msgid "Connect Services"
+msgstr "Forbindelse til tjenester"
+
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328
+msgid "don't show"
+msgstr "ikke vis"
+
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
+msgid "show"
+msgstr "vis"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133
-msgid "Remove"
-msgstr "Slett"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Vis/skjul bokser i kolonnen til høyre:"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Hendelsens tittel og starttidspunkt er påkrevet."
+#: ../../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 "Temainnstillinger"
 
-#: ../../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 "Angi skriftstørrelse for innlegg og kommentarer"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Rediger hendelse"
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Angi linjeavstand for innlegg og kommentarer"
 
-#: ../../mod/events.php:335 ../../include/text.php:1620
-#: ../../include/text.php:1631
-msgid "link to source"
-msgstr "lenke til kilde"
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Angi oppløsning for midtkolonnen"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Lag ny hendelse"
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Angi fargekart"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Forrige"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Angi zoomfaktor for Earth Layer"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "time:minutt"
+#: ../../view/theme/vier/config.php:50
+msgid "Set style"
+msgstr "Angi stil"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Hendelsesdetaljer"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Angi fargekart"
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Formatet er  %s %s. Startdato og tittel er påkrevet."
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Justering"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Hendelsen  starter:"
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Venstre"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Påkrevet"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Midtstilt"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Avslutningsdato/-tid er ukjent eller ikke relevant"
+#: ../../view/theme/quattro/config.php:68
+#: ../../view/theme/cleanzero/config.php:86
+msgid "Color scheme"
+msgstr "Fargekart"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Hendelsen slutter:"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Skriftstørrelse for innlegg"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Tilpass til iakttakerens tidssone"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Skriftstørrelse for tekstområder"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Beskrivelse:"
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Angi størrelsesendringen for bilder i innlegg og kommentarer (bredde og høyde)"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Tittel:"
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Angi temabredde"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Del denne hendelsen"
+#: ../../boot.php:692
+msgid "Delete this item?"
+msgstr "Slett dette elementet?"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Fant ingen potensielle sidedelegater."
+#: ../../boot.php:695
+msgid "show fewer"
+msgstr "vis færre"
 
-#: ../../mod/delegate.php:124 ../../include/nav.php:167
-msgid "Delegate Page Management"
-msgstr "Deleger sidebehandling"
+#: ../../boot.php:1023
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Oppdatering %s mislyktes. Se feilloggene."
 
-#: ../../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å."
+#: ../../boot.php:1025
+#, php-format
+msgid "Update Error at %s"
+msgstr "Oppdateringsfeil i %s"
 
-#: ../../mod/delegate.php:127
-msgid "Existing Page Managers"
-msgstr "Eksisterende sidebehandlere"
+#: ../../boot.php:1135
+msgid "Create a New Account"
+msgstr "Lag en ny konto"
 
-#: ../../mod/delegate.php:129
-msgid "Existing Page Delegates"
-msgstr "Eksisterende sidedelegater"
+#: ../../boot.php:1160 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Logg ut"
 
-#: ../../mod/delegate.php:131
-msgid "Potential Delegates"
-msgstr "Mulige delegater"
+#: ../../boot.php:1161 ../../include/nav.php:91
+msgid "Login"
+msgstr "Logg inn"
 
-#: ../../mod/delegate.php:134
-msgid "Add"
-msgstr "Legg til"
+#: ../../boot.php:1163
+msgid "Nickname or Email address: "
+msgstr "Kallenavn eller epostadresse: "
 
-#: ../../mod/delegate.php:135
-msgid "No entries."
-msgstr "Ingen oppføringer"
+#: ../../boot.php:1164
+msgid "Password: "
+msgstr "Passord: "
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Kontakter som ikke er medlemmer av en gruppe"
+#: ../../boot.php:1165
+msgid "Remember me"
+msgstr "Husk meg"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Filer"
+#: ../../boot.php:1168
+msgid "Or login using OpenID: "
+msgstr "Eller logg inn med OpenID:"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "Systemet er nede for vedlikehold"
+#: ../../boot.php:1174
+msgid "Forgot your password?"
+msgstr "Glemt passordet?"
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
-msgstr "Slett min konto"
+#: ../../boot.php:1177
+msgid "Website Terms of Service"
+msgstr "Nettstedets bruksbetingelser"
 
-#: ../../mod/removeme.php:46
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes."
+#: ../../boot.php:1178
+msgid "terms of service"
+msgstr "bruksbetingelser"
 
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
-msgstr "Vennligst skriv inn ditt passord for å bekrefte:"
+#: ../../boot.php:1180
+msgid "Website Privacy Policy"
+msgstr "Nettstedets retningslinjer for personvern"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Venneforslag sendt."
+#: ../../boot.php:1181
+msgid "privacy policy"
+msgstr "retningslinjer for personvern"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Foreslå venner"
+#: ../../boot.php:1314
+msgid "Requested account is not available."
+msgstr "Profil utilgjengelig."
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Foreslå en venn for %s"
+#: ../../boot.php:1393 ../../boot.php:1497
+msgid "Edit profile"
+msgstr "Rediger profil"
 
-#: ../../mod/item.php:110
-msgid "Unable to locate original post."
-msgstr "Mislyktes med å lokalisere opprinnelig melding."
+#: ../../boot.php:1459
+msgid "Message"
+msgstr "Melding"
 
-#: ../../mod/item.php:319
-msgid "Empty post discarded."
-msgstr "Tom melding forkastet."
+#: ../../boot.php:1467 ../../include/nav.php:171
+msgid "Profiles"
+msgstr "Profiler"
 
-#: ../../mod/item.php:891
-msgid "System error. Post not saved."
-msgstr "Systemfeil. Meldingen ble ikke lagret."
+#: ../../boot.php:1467
+msgid "Manage/edit profiles"
+msgstr "Behandle/endre profiler"
 
-#: ../../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."
+#: ../../boot.php:1596 ../../boot.php:1682
+msgid "g A l F d"
+msgstr "g A l F d"
 
-#: ../../mod/item.php:919
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Du kan besøke dem online på %s"
+#: ../../boot.php:1597 ../../boot.php:1683
+msgid "F d"
+msgstr "F d"
 
-#: ../../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."
+#: ../../boot.php:1642 ../../boot.php:1723
+msgid "[today]"
+msgstr "[idag]"
 
-#: ../../mod/item.php:924
-#, php-format
-msgid "%s posted an update."
-msgstr "%s postet en oppdatering."
+#: ../../boot.php:1654
+msgid "Birthday Reminders"
+msgstr "Fødselsdager"
 
-#: ../../mod/ping.php:238
-msgid "{0} wants to be your friend"
-msgstr "{0} ønsker å bli din venn"
+#: ../../boot.php:1655
+msgid "Birthdays this week:"
+msgstr "Fødselsdager denne uken:"
 
-#: ../../mod/ping.php:243
-msgid "{0} sent you a message"
-msgstr "{0} sendte deg en melding"
+#: ../../boot.php:1716
+msgid "[No description]"
+msgstr "[Ingen beskrivelse]"
 
-#: ../../mod/ping.php:248
-msgid "{0} requested registration"
-msgstr "{0} forespurte om registrering"
+#: ../../boot.php:1734
+msgid "Event Reminders"
+msgstr "Påminnelser om hendelser"
 
-#: ../../mod/ping.php:254
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} kommenterte %s sitt innlegg"
+#: ../../boot.php:1735
+msgid "Events this week:"
+msgstr "Hendelser denne uken:"
 
-#: ../../mod/ping.php:259
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} likte %s sitt innlegg"
+#: ../../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} likte ikke %s sitt innlegg"
+#: ../../boot.php:1975
+msgid "Status Messages and Posts"
+msgstr "Status meldinger og innlegg"
 
-#: ../../mod/ping.php:269
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} er nå venner med %s"
+#: ../../boot.php:1982
+msgid "Profile Details"
+msgstr "Profildetaljer"
 
-#: ../../mod/ping.php:274
-msgid "{0} posted"
-msgstr "{0} postet et innlegg"
+#: ../../boot.php:1993 ../../boot.php:1996
+msgid "Videos"
+msgstr "Videoer"
 
-#: ../../mod/ping.php:279
-#, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} merket %s sitt innlegg med #%s"
+#: ../../boot.php:2006
+msgid "Events and Calendar"
+msgstr "Hendelser og kalender"
 
-#: ../../mod/ping.php:285
-msgid "{0} mentioned you in a post"
-msgstr "{0} nevnte deg i et innlegg"
+#: ../../boot.php:2013
+msgid "Only You Can See This"
+msgstr "Bare du kan se dette"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID protokollfeil. Ingen ID kom i retur."
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Generelle egenskaper"
 
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Kontoen ble ikke funnet og OpenID-registrering er ikke tillat på dette nettstedet."
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Flere profiler"
 
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "Innlogging mislyktes."
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Mulighet for å lage flere profiler"
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Ugyldig forespørselsidentifikator."
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Funksjoner for å skrive innlegg"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Forkast"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Rik tekstredigering"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "System"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Skru på rik tekstredigering"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:142
-msgid "Network"
-msgstr "Nettverk"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Forhåndsvisning av innlegg"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:151
-msgid "Introductions"
-msgstr "Introduksjoner"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Tillat forhåndsvisning av innlegg og kommentarer før publisering"
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Vis ignorerte forespørsler"
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "Auto-nevning av forum"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Skjul ignorerte forespørsler"
+#: ../../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."
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Beskjedtype:"
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Småprogrammer i sidestolpen for Nettverk"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Venneforslag"
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Søk etter dato"
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "foreslått av %s"
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Mulighet for å velge innlegg etter datoområder"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Post om en ny venn"
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Gruppefilter"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "hvis gyldig"
+#: ../../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"
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Påstår å kjenne deg:"
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Nettverksfilter"
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "ja"
+#: ../../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"
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "ei"
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Lagre søkeuttrykk for gjenbruk"
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Godkjenn som:"
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Nettverksfaner"
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Venn"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Nettverk personlig fane"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Deler"
+#: ../../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"
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fan/Beundrer"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Nettverk Ny fane"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Venn/kontakt-forespørsel"
+#: ../../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)"
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Ny følgesvenn"
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "Nettverk Delte lenker fane"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Ingen introduksjoner."
+#: ../../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"
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:152
-msgid "Notifications"
-msgstr "Varslinger"
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Innleggs-/kommentarverktøy"
 
-#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
-#: ../../mod/notifications.php:469
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s likte %s sitt innlegg"
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Slett flere"
 
-#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s mislikte %s sitt innlegg"
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Velg og slett flere innlegg/kommentarer på en gang"
 
-#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
-#: ../../mod/notifications.php:492
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s er nå venner med %s"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Endre sendte innlegg"
 
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#, php-format
-msgid "%s created a new post"
-msgstr "%s skrev et nytt innlegg"
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Endre og korriger innlegg og kommentarer etter sending"
 
-#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
-#: ../../mod/notifications.php:501
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s kommenterte på %s sitt innlegg"
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Merking"
 
-#: ../../mod/notifications.php:302
-msgid "No more network notifications."
-msgstr "Ingen flere nettverksvarslinger."
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Mulighet til å merke eksisterende innlegg"
 
-#: ../../mod/notifications.php:306
-msgid "Network Notifications"
-msgstr "Nettverksvarslinger"
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Innleggskategorier"
 
-#: ../../mod/notifications.php:427
-msgid "No more personal notifications."
-msgstr "Ingen flere personlige varsler."
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Legg til kategorier til dine innlegg"
 
-#: ../../mod/notifications.php:431
-msgid "Personal Notifications"
-msgstr "Personlige varsler"
+#: ../../include/features.php:60 ../../include/contact_widgets.php:103
+msgid "Saved Folders"
+msgstr "Lagrede mapper"
 
-#: ../../mod/notifications.php:508
-msgid "No more home notifications."
-msgstr "Ingen flere hjemmevarsler."
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Mulighet til å sortere innlegg i mapper"
 
-#: ../../mod/notifications.php:512
-msgid "Home Notifications"
-msgstr "Hjemmevarsler"
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Liker ikke innlegg"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Grensen for totalt antall invitasjoner er overskredet."
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Mulighet til å ikke like innlegg/kommentarer"
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Ugyldig e-postadresse."
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Stjerneinnlegg"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Vær med oss på Friendica"
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Mulighet til å merke spesielle innlegg med en stjerneindikator"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Invitasjonsgrense overskredet. Vennligst kontakt administrator på ditt nettsted."
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Logget ut."
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: Mislyktes med å levere meldingen."
+#: ../../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 "Vi støtte på et problem under innloggingen med OpenID-en du oppgav. Vennligst sjekk at du stavet ID-en riktig."
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "one: %d melding sendt."
-msgstr[1] "other: %d meldinger sendt."
+#: ../../include/auth.php:128 ../../include/user.php:66
+msgid "The error message was:"
+msgstr "Feilmeldingen var:"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Du har ingen flere tilgjengelige invitasjoner"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
+msgid "Starts:"
+msgstr "Starter:"
 
-#: ../../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 "Besøk %s for en liste med offentlige nettsteder du kan bli med i. Friendica-medlemmer ved andre nettsteder kan alle opprette forbindelse til hverandre, og i tillegg til medlemmer av mange andre sosiale nettverk."
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
+msgid "Finishes:"
+msgstr "Slutter:"
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "For å akseptere denne invitasjonen, vær så snill å besøk og registrer deg hos %s eller et hvilket som helst annet offentlig Friendica-nettsted."
+#: ../../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-nettsteder er alle forbundet med hverandre for å lage et personvern-forbedret sosialt nettverk  som eies og kontrolleres av medlemmene selv. De kan også forbindes med mange tradisjonelle sosiale nettverk. Se %s for en liste over alternative Friendica-nettsteder du kan bli med i."
+#: ../../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 "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer."
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Fødselsdag:"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Send invitasjoner"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Alder:"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Skriv e-postadresser, en per linje:"
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "for %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 er herved hjertelig invitert til å bli med meg og andre nære venner på Friendica - hjelp oss å skape en bedre sosial web."
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Merkelapper:"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Du må oppgi denne invitasjonskoden: $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 "Når du har registrert, vennligst kontakt meg via min profilside på:"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Hobbyer/Interesser:"
 
-#: ../../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 "For mer informasjon om Friendica-prosjektet og hvorfor vi mener det er viktig, vennligst besøk http://friendica.com"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformasjon og sosiale nettverk:"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Behandle identiteter og/eller sider"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Musikksmak:"
 
-#: ../../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 "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Bøker, litteratur:"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Velg en identitet å behandle:"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "TV:"
 
-#: ../../mod/home.php:34
-#, php-format
-msgid "Welcome to %s"
-msgstr "Velkommen til %s"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/dans/kultur/underholdning:"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Venner av %s"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Kjærlighet/romanse:"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Ingen venner å vise."
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Arbeid/ansatt hos:"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Legg til ny kontakt"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Skole/utdanning:"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Skriv adresse eller web-plassering"
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[ikke noe emne]"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Eksempel: ole@eksempel.no, http://eksempel.no/kari"
+#: ../../include/Scrape.php:584
+msgid " on Last.fm"
+msgstr "på Last.fm"
 
-#: ../../include/contact_widgets.php:23
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invitasjon tilgjengelig"
-msgstr[1] "%d invitasjoner tilgjengelig"
+#: ../../include/text.php:296
+msgid "newer"
+msgstr "nyere"
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
-msgstr "Finn personer"
+#: ../../include/text.php:298
+msgid "older"
+msgstr "eldre"
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
-msgstr "Skriv navn eller interesse"
+#: ../../include/text.php:303
+msgid "prev"
+msgstr "forrige"
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
-msgstr "Koble/Følg"
+#: ../../include/text.php:305
+msgid "first"
+msgstr "første"
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Eksempler: Robert Morgenstein, fisking"
+#: ../../include/text.php:337
+msgid "last"
+msgstr "siste"
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
-msgstr "Tilfeldig profil"
+#: ../../include/text.php:340
+msgid "next"
+msgstr "neste"
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
-msgstr "Nettverk"
+#: ../../include/text.php:853
+msgid "No contacts"
+msgstr "Ingen kontakter"
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
-msgstr "Alle nettverk"
+#: ../../include/text.php:862
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d kontakt"
+msgstr[1] "%d kontakter"
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:60
-msgid "Saved Folders"
-msgstr "Lagrede mapper"
+#: ../../include/text.php:1003
+msgid "poke"
+msgstr "dytt"
 
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
-msgstr "Alt"
+#: ../../include/text.php:1003 ../../include/conversation.php:211
+msgid "poked"
+msgstr "dyttet"
 
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
-msgstr "Kategorier"
+#: ../../include/text.php:1004
+msgid "ping"
+msgstr "ping"
 
-#: ../../include/plugin.php:454 ../../include/plugin.php:456
-msgid "Click here to upgrade."
-msgstr "Klikk her for oppgradere."
+#: ../../include/text.php:1004
+msgid "pinged"
+msgstr "pinget"
 
-#: ../../include/plugin.php:462
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Denne handlingen overstiger grensene satt i din abonnementsplan."
+#: ../../include/text.php:1005
+msgid "prod"
+msgstr "dult"
 
-#: ../../include/plugin.php:467
-msgid "This action is not available under your subscription plan."
-msgstr "Denne handlingen er ikke tilgjengelig i henhold til din abonnementsplan."
+#: ../../include/text.php:1005
+msgid "prodded"
+msgstr "dultet"
 
-#: ../../include/api.php:263 ../../include/api.php:274
-#: ../../include/api.php:375
-msgid "User not found."
-msgstr "Brukeren ble ikke funnet."
+#: ../../include/text.php:1006
+msgid "slap"
+msgstr "klaske"
 
-#: ../../include/api.php:1123
-msgid "There is no status with this id."
-msgstr "Det er ingen status tilknyttet denne id-en."
+#: ../../include/text.php:1006
+msgid "slapped"
+msgstr "klasket"
 
-#: ../../include/api.php:1193
-msgid "There is no conversation with this id."
-msgstr "Det finnes ingen samtale med denne id-en."
+#: ../../include/text.php:1007
+msgid "finger"
+msgstr "fingre"
 
-#: ../../include/network.php:886
-msgid "view full size"
-msgstr "Vis i full størrelse"
+#: ../../include/text.php:1007
+msgid "fingered"
+msgstr "fingret"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
-msgid "Starts:"
-msgstr "Starter:"
+#: ../../include/text.php:1008
+msgid "rebuff"
+msgstr "avslå"
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
-msgid "Finishes:"
-msgstr "Slutter:"
+#: ../../include/text.php:1008
+msgid "rebuffed"
+msgstr "avslo"
 
-#: ../../include/notifier.php:774 ../../include/delivery.php:456
-msgid "(no subject)"
-msgstr "(uten emne)"
+#: ../../include/text.php:1022
+msgid "happy"
+msgstr "glad"
 
-#: ../../include/notifier.php:784 ../../include/enotify.php:28
-#: ../../include/delivery.php:467
-msgid "noreply"
-msgstr "ikke svar"
+#: ../../include/text.php:1023
+msgid "sad"
+msgstr "trist"
 
-#: ../../include/user.php:39
-msgid "An invitation is required."
-msgstr "En invitasjon er nødvendig."
+#: ../../include/text.php:1024
+msgid "mellow"
+msgstr "dempet"
 
-#: ../../include/user.php:44
-msgid "Invitation could not be verified."
-msgstr "Invitasjon kunne ikke bekreftes."
+#: ../../include/text.php:1025
+msgid "tired"
+msgstr "trøtt"
 
-#: ../../include/user.php:52
-msgid "Invalid OpenID url"
-msgstr "Ugyldig OpenID URL"
+#: ../../include/text.php:1026
+msgid "perky"
+msgstr "oppkvikket"
 
-#: ../../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 "Vi støtte på et problem under innloggingen med OpenID-en du oppgav. Vennligst sjekk at du stavet ID-en riktig."
+#: ../../include/text.php:1027
+msgid "angry"
+msgstr "sint"
 
-#: ../../include/user.php:66 ../../include/auth.php:128
-msgid "The error message was:"
-msgstr "Feilmeldingen var:"
+#: ../../include/text.php:1028
+msgid "stupified"
+msgstr "tanketom"
 
-#: ../../include/user.php:73
-msgid "Please enter the required information."
-msgstr "Vennligst skriv inn den nødvendige informasjonen."
+#: ../../include/text.php:1029
+msgid "puzzled"
+msgstr "forundret"
 
-#: ../../include/user.php:87
-msgid "Please use a shorter name."
-msgstr "Vennligst bruk et kortere navn."
+#: ../../include/text.php:1030
+msgid "interested"
+msgstr "interessert"
 
-#: ../../include/user.php:89
-msgid "Name too short."
-msgstr "Navnet er for kort."
+#: ../../include/text.php:1031
+msgid "bitter"
+msgstr "bitter"
 
-#: ../../include/user.php:104
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn)."
+#: ../../include/text.php:1032
+msgid "cheerful"
+msgstr "munter"
 
-#: ../../include/user.php:109
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Ditt e-postdomene er ikke blant de som er tillat på dette stedet."
+#: ../../include/text.php:1033
+msgid "alive"
+msgstr "livlig"
 
-#: ../../include/user.php:112
-msgid "Not a valid email address."
-msgstr "Ugyldig e-postadresse."
+#: ../../include/text.php:1034
+msgid "annoyed"
+msgstr "irritert"
 
-#: ../../include/user.php:125
-msgid "Cannot use that email."
-msgstr "Kan ikke bruke den e-postadressen."
+#: ../../include/text.php:1035
+msgid "anxious"
+msgstr "nervøs"
 
-#: ../../include/user.php:131
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav."
+#: ../../include/text.php:1036
+msgid "cranky"
+msgstr "grinete"
 
-#: ../../include/user.php:137 ../../include/user.php:235
-msgid "Nickname is already registered. Please choose another."
-msgstr "Kallenavnet er allerede registrert. Vennligst velg et annet."
+#: ../../include/text.php:1037
+msgid "disturbed"
+msgstr "forstyrret"
 
-#: ../../include/user.php:147
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Kallenavnet ble registrert her en gang og kan ikke brukes om igjen. Vennligst velg et annet."
+#: ../../include/text.php:1038
+msgid "frustrated"
+msgstr "frustrert"
 
-#: ../../include/user.php:163
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler."
+#: ../../include/text.php:1039
+msgid "motivated"
+msgstr "motivert"
 
-#: ../../include/user.php:221
-msgid "An error occurred during registration. Please try again."
-msgstr "En feil oppstod under registreringen. Vennligst prøv igjen."
+#: ../../include/text.php:1040
+msgid "relaxed"
+msgstr "avslappet"
 
-#: ../../include/user.php:256
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen."
+#: ../../include/text.php:1041
+msgid "surprised"
+msgstr "overrasket"
 
-#: ../../include/user.php:288 ../../include/user.php:292
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Venner"
+#: ../../include/text.php:1209
+msgid "Monday"
+msgstr "mandag"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s dyttet %2$s"
+#: ../../include/text.php:1209
+msgid "Tuesday"
+msgstr "tirsdag"
 
-#: ../../include/conversation.php:211 ../../include/text.php:990
-msgid "poked"
-msgstr "dyttet"
+#: ../../include/text.php:1209
+msgid "Wednesday"
+msgstr "onsdag"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "innlegg/element"
+#: ../../include/text.php:1209
+msgid "Thursday"
+msgstr "torsdag"
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s merket %2$s's %3$s som en favoritt"
+#: ../../include/text.php:1209
+msgid "Friday"
+msgstr "fredag"
 
-#: ../../include/conversation.php:770
-msgid "remove"
-msgstr "slett"
+#: ../../include/text.php:1209
+msgid "Saturday"
+msgstr "lørdag"
 
-#: ../../include/conversation.php:774
-msgid "Delete Selected Items"
-msgstr "Slette valgte elementer"
+#: ../../include/text.php:1209
+msgid "Sunday"
+msgstr "søndag"
 
-#: ../../include/conversation.php:873
-msgid "Follow Thread"
-msgstr "Følg tråd"
+#: ../../include/text.php:1213
+msgid "January"
+msgstr "januar"
 
-#: ../../include/conversation.php:874 ../../include/Contact.php:229
-msgid "View Status"
-msgstr "Vis status"
+#: ../../include/text.php:1213
+msgid "February"
+msgstr "februar"
 
-#: ../../include/conversation.php:875 ../../include/Contact.php:230
-msgid "View Profile"
-msgstr "Vis profil"
+#: ../../include/text.php:1213
+msgid "March"
+msgstr "mars"
 
-#: ../../include/conversation.php:876 ../../include/Contact.php:231
-msgid "View Photos"
-msgstr "Vis bilder"
+#: ../../include/text.php:1213
+msgid "April"
+msgstr "april"
 
-#: ../../include/conversation.php:877 ../../include/Contact.php:232
-#: ../../include/Contact.php:255
-msgid "Network Posts"
-msgstr "Nettverksinnlegg"
+#: ../../include/text.php:1213
+msgid "May"
+msgstr "mai"
 
-#: ../../include/conversation.php:878 ../../include/Contact.php:233
-#: ../../include/Contact.php:255
-msgid "Edit Contact"
-msgstr "Endre kontakt"
+#: ../../include/text.php:1213
+msgid "June"
+msgstr "juni"
 
-#: ../../include/conversation.php:879 ../../include/Contact.php:235
-#: ../../include/Contact.php:255
-msgid "Send PM"
-msgstr "Send privat melding"
+#: ../../include/text.php:1213
+msgid "July"
+msgstr "juli"
 
-#: ../../include/conversation.php:880 ../../include/Contact.php:228
-msgid "Poke"
-msgstr "Dytt"
+#: ../../include/text.php:1213
+msgid "August"
+msgstr "august"
 
-#: ../../include/conversation.php:942
-#, php-format
-msgid "%s likes this."
-msgstr "%s liker dette."
+#: ../../include/text.php:1213
+msgid "September"
+msgstr "september"
 
-#: ../../include/conversation.php:942
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s liker ikke dette."
+#: ../../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 personer</span> liker dette"
+#: ../../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 personer</span> liker ikke dette"
+#: ../../include/text.php:1213
+msgid "December"
+msgstr "desember"
 
-#: ../../include/conversation.php:964
-msgid "and"
-msgstr "og"
+#: ../../include/text.php:1432
+msgid "bytes"
+msgstr "bytes"
 
-#: ../../include/conversation.php:970
-#, php-format
-msgid ", and %d other people"
-msgstr ", og %d andre personer"
+#: ../../include/text.php:1456 ../../include/text.php:1468
+msgid "Click to open/close"
+msgstr "Klikk for å åpne/lukke"
 
-#: ../../include/conversation.php:972
-#, php-format
-msgid "%s like this."
-msgstr "%s liker dette."
+#: ../../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 liker ikke dette."
+#: ../../include/text.php:1701
+msgid "Select an alternate language"
+msgstr "Velg et annet språk"
 
-#: ../../include/conversation.php:999 ../../include/conversation.php:1017
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Synlig for <strong>alle</strong>"
+#: ../../include/text.php:1957
+msgid "activity"
+msgstr "aktivitet"
 
-#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
-msgid "Please enter a video link/URL:"
-msgstr "Vennligst skriv inn en videolenke/-URL:"
+#: ../../include/text.php:1960
+msgid "post"
+msgstr "innlegg"
 
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Please enter an audio link/URL:"
-msgstr "Vennligst skriv inn en lydlenke/-URL:"
+#: ../../include/text.php:2128
+msgid "Item filed"
+msgstr "Element arkivert"
 
-#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
-msgid "Tag term:"
-msgstr "Merkelapp begrep:"
+#: ../../include/api.php:263 ../../include/api.php:274
+#: ../../include/api.php:375
+msgid "User not found."
+msgstr "Brukeren ble ikke funnet."
 
-#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
-msgid "Where are you right now?"
-msgstr "Hvor er du akkurat nå?"
+#: ../../include/api.php:1123
+msgid "There is no status with this id."
+msgstr "Det er ingen status tilknyttet denne id-en."
 
-#: ../../include/conversation.php:1006
-msgid "Delete item(s)?"
-msgstr "Slett element(er)?"
+#: ../../include/api.php:1193
+msgid "There is no conversation with this id."
+msgstr "Det finnes ingen samtale med denne id-en."
 
-#: ../../include/conversation.php:1048
-msgid "Post to Email"
-msgstr "Innlegg til e-post"
+#: ../../include/dba.php:51 ../../include/dba_pdo.php:72
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Kan ikke finne DNS informasjon for databasetjeneren '%s' "
 
-#: ../../include/conversation.php:1104
-msgid "permissions"
-msgstr "tillatelser"
+#: ../../include/items.php:1981 ../../include/datetime.php:472
+#, php-format
+msgid "%s's birthday"
+msgstr "%s sin bursdag"
 
-#: ../../include/conversation.php:1128
-msgid "Post to Groups"
-msgstr "Innlegg til grupper"
+#: ../../include/items.php:1982 ../../include/datetime.php:473
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Gratulerer med dagen, %s"
 
-#: ../../include/conversation.php:1129
-msgid "Post to Contacts"
-msgstr "Innlegg til kontakter"
+#: ../../include/items.php:3710
+msgid "A new person is sharing with you at "
+msgstr "En ny person deler med deg hos"
 
-#: ../../include/conversation.php:1130
-msgid "Private post"
-msgstr "Privat innlegg"
+#: ../../include/items.php:3710
+msgid "You have a new follower at "
+msgstr "Du har en ny følgesvenn på "
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Logget ut."
+#: ../../include/items.php:4233
+msgid "Do you really want to delete this item?"
+msgstr "Ønsker du virkelig å slette dette elementet?"
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Feil ved dekoding av kontofil"
+#: ../../include/items.php:4460
+msgid "Archives"
+msgstr "Arkiverer"
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Feil! Ingen versjonsdata i filen! Dette er ikke en Friendica kontofil?"
+#: ../../include/delivery.php:456 ../../include/notifier.php:774
+msgid "(no subject)"
+msgstr "(uten emne)"
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Feil! Kan ikke sjekke kallenavn"
+#: ../../include/delivery.php:467 ../../include/notifier.php:784
+#: ../../include/enotify.php:28
+msgid "noreply"
+msgstr "ikke svar"
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Brukeren '%s' finnes allerede på denne tjeneren!"
+#: ../../include/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
+msgstr "Dele varslinger fra Diaspora nettverket"
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Feil ved oppretting av bruker"
+#: ../../include/diaspora.php:2299
+msgid "Attachments:"
+msgstr "Vedlegg:"
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Feil ved opprettelsen av brukerprofil"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "Forbindelses-URL mangler."
 
-#: ../../include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d kontakt ikke importert"
-msgstr[1] "%d kontakter ikke importert"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk."
 
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Ferdig. Du kan nå logge inn med ditt brukernavn og passord"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget."
 
-#: ../../include/text.php:304
-msgid "newer"
-msgstr "nyere"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "Den angitte profiladressen inneholder for lite information."
 
-#: ../../include/text.php:306
-msgid "older"
-msgstr "eldre"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Fant ingen forfatter eller navn."
 
-#: ../../include/text.php:311
-msgid "prev"
-msgstr "forrige"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Ingen nettleser-URL passet med denne adressen."
 
-#: ../../include/text.php:313
-msgid "first"
-msgstr "første"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Finner ikke samsvar mellom @-stilens identitetsadresse og en kjent protokoll eller e-postkontakt."
 
-#: ../../include/text.php:345
-msgid "last"
-msgstr "siste"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Bruk mailto: foran adresser for å tvinge e-postsjekk."
 
-#: ../../include/text.php:348
-msgid "next"
-msgstr "neste"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet."
 
-#: ../../include/text.php:840
-msgid "No contacts"
-msgstr "Ingen kontakter"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg."
 
-#: ../../include/text.php:849
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d kontakt"
-msgstr[1] "%d kontakter"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Ikke i stand til å hente kontaktinformasjon."
 
-#: ../../include/text.php:990
-msgid "poke"
-msgstr "dytt"
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "følger"
 
-#: ../../include/text.php:991
-msgid "ping"
-msgstr "ping"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Velkommen"
 
-#: ../../include/text.php:991
-msgid "pinged"
-msgstr "pinget"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Vennligst last opp et profilbilde."
 
-#: ../../include/text.php:992
-msgid "prod"
-msgstr "dult"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Velkommen tilbake"
 
-#: ../../include/text.php:992
-msgid "prodded"
-msgstr "dultet"
+#: ../../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 "Skjemaets sikkerhetsnøkkel var ikke riktig. Dette skjedde antakelig fordi skjemaet har stått åpent for lenge (>3 timer) før innsending."
 
-#: ../../include/text.php:993
-msgid "slap"
-msgstr "klaske"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Mann"
 
-#: ../../include/text.php:993
-msgid "slapped"
-msgstr "klasket"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Kvinne"
 
-#: ../../include/text.php:994
-msgid "finger"
-msgstr "fingre"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "For øyeblikket mann"
 
-#: ../../include/text.php:994
-msgid "fingered"
-msgstr "fingret"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "For øyeblikket kvinne"
 
-#: ../../include/text.php:995
-msgid "rebuff"
-msgstr "avslå"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Stort sett mann"
 
-#: ../../include/text.php:995
-msgid "rebuffed"
-msgstr "avslo"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Stort sett kvinne"
 
-#: ../../include/text.php:1009
-msgid "happy"
-msgstr "glad"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transkjønnet"
 
-#: ../../include/text.php:1010
-msgid "sad"
-msgstr "trist"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Tvekjønnet"
 
-#: ../../include/text.php:1011
-msgid "mellow"
-msgstr "dempet"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transseksuell"
 
-#: ../../include/text.php:1012
-msgid "tired"
-msgstr "trøtt"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermafroditt"
 
-#: ../../include/text.php:1013
-msgid "perky"
-msgstr "oppkvikket"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Intetkjønn"
 
-#: ../../include/text.php:1014
-msgid "angry"
-msgstr "sint"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Ikke spesifisert"
 
-#: ../../include/text.php:1015
-msgid "stupified"
-msgstr "tanketom"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Annet"
 
-#: ../../include/text.php:1016
-msgid "puzzled"
-msgstr "forundret"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Ubestemt"
 
-#: ../../include/text.php:1017
-msgid "interested"
-msgstr "interessert"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Menn"
 
-#: ../../include/text.php:1018
-msgid "bitter"
-msgstr "bitter"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Kvinner"
 
-#: ../../include/text.php:1019
-msgid "cheerful"
-msgstr "munter"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Homse"
 
-#: ../../include/text.php:1020
-msgid "alive"
-msgstr "livlig"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbe"
 
-#: ../../include/text.php:1021
-msgid "annoyed"
-msgstr "irritert"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Ingen preferanse"
 
-#: ../../include/text.php:1022
-msgid "anxious"
-msgstr "nervøs"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Biseksuell"
 
-#: ../../include/text.php:1023
-msgid "cranky"
-msgstr "grinete"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autoseksuell"
 
-#: ../../include/text.php:1024
-msgid "disturbed"
-msgstr "forstyrret"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Avholdende"
 
-#: ../../include/text.php:1025
-msgid "frustrated"
-msgstr "frustrert"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Jomfru"
 
-#: ../../include/text.php:1026
-msgid "motivated"
-msgstr "motivert"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Avvikende"
 
-#: ../../include/text.php:1027
-msgid "relaxed"
-msgstr "avslappet"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetisj"
 
-#: ../../include/text.php:1028
-msgid "surprised"
-msgstr "overrasket"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Mange"
 
-#: ../../include/text.php:1196
-msgid "Monday"
-msgstr "mandag"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Aseksuell"
 
-#: ../../include/text.php:1196
-msgid "Tuesday"
-msgstr "tirsdag"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Alene"
 
-#: ../../include/text.php:1196
-msgid "Wednesday"
-msgstr "onsdag"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Ensom"
 
-#: ../../include/text.php:1196
-msgid "Thursday"
-msgstr "torsdag"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Tilgjengelig"
 
-#: ../../include/text.php:1196
-msgid "Friday"
-msgstr "fredag"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Ikke tilgjengelig"
 
-#: ../../include/text.php:1196
-msgid "Saturday"
-msgstr "lørdag"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Er forelsket"
 
-#: ../../include/text.php:1196
-msgid "Sunday"
-msgstr "søndag"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Betatt"
 
-#: ../../include/text.php:1200
-msgid "January"
-msgstr "januar"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Stevnemøter/dater"
 
-#: ../../include/text.php:1200
-msgid "February"
-msgstr "februar"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Utro"
 
-#: ../../include/text.php:1200
-msgid "March"
-msgstr "mars"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sexavhengig"
 
-#: ../../include/text.php:1200
-msgid "April"
-msgstr "april"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:288
+#: ../../include/user.php:292
+msgid "Friends"
+msgstr "Venner"
 
-#: ../../include/text.php:1200
-msgid "May"
-msgstr "mai"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Venner med fordeler"
 
-#: ../../include/text.php:1200
-msgid "June"
-msgstr "juni"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Tilfeldig"
 
-#: ../../include/text.php:1200
-msgid "July"
-msgstr "juli"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Forlovet"
 
-#: ../../include/text.php:1200
-msgid "August"
-msgstr "august"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Gift"
 
-#: ../../include/text.php:1200
-msgid "September"
-msgstr "september"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Fantasiekteskap"
 
-#: ../../include/text.php:1200
-msgid "October"
-msgstr "oktober"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partnere"
 
-#: ../../include/text.php:1200
-msgid "November"
-msgstr "november"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Samboere"
 
-#: ../../include/text.php:1200
-msgid "December"
-msgstr "desember"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Samboer"
 
-#: ../../include/text.php:1419
-msgid "bytes"
-msgstr "bytes"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Lykkelig"
 
-#: ../../include/text.php:1443 ../../include/text.php:1455
-msgid "Click to open/close"
-msgstr "Klikk for å åpne/lukke"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Ikke på utkikk"
 
-#: ../../include/text.php:1688
-msgid "Select an alternate language"
-msgstr "Velg et annet språk"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Partnerbytte/swinger"
 
-#: ../../include/text.php:1944
-msgid "activity"
-msgstr "aktivitet"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Bedratt"
 
-#: ../../include/text.php:1947
-msgid "post"
-msgstr "innlegg"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Separert"
 
-#: ../../include/text.php:2115
-msgid "Item filed"
-msgstr "Element arkivert"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Ustabil"
 
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
-msgstr "Friendica varsel"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Skilt"
 
-#: ../../include/enotify.php:19
-msgid "Thank You,"
-msgstr "Mange takk,"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Fantasiskilt"
 
-#: ../../include/enotify.php:21
-#, php-format
-msgid "%s Administrator"
-msgstr "%s administrator"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Enke/enkemann"
 
-#: ../../include/enotify.php:40
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Usikker"
 
-#: ../../include/enotify.php:44
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notify] Ny melding mottatt hos %s"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Det er komplisert"
 
-#: ../../include/enotify.php:46
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s sendte deg en ny privat melding hos %2$s."
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Uinteressert"
 
-#: ../../include/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s sendte deg %2$s."
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Spør meg"
 
-#: ../../include/enotify.php:47
-msgid "a private message"
-msgstr "en privat melding"
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Feil ved dekoding av kontofil"
 
-#: ../../include/enotify.php:48
-#, php-format
-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/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Feil! Ingen versjonsdata i filen! Dette er ikke en Friendica kontofil?"
 
-#: ../../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/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Feil! Kan ikke sjekke kallenavn"
 
-#: ../../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 kommenterte på [url=%2$s]%3$s sin %4$s[/url]"
+msgid "User '%s' already exists on this server!"
+msgstr "Brukeren '%s' finnes allerede på denne tjeneren!"
 
-#: ../../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/uimport.php:153
+msgid "User creation error"
+msgstr "Feil ved oppretting av bruker"
 
-#: ../../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/uimport.php:171
+msgid "User profile creation error"
+msgstr "Feil ved opprettelsen av brukerprofil"
 
-#: ../../include/enotify.php:117
+#: ../../include/uimport.php:220
 #, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s kommenterte på et element/en samtale du har fulgt."
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d kontakt ikke importert"
+msgstr[1] "%d kontakter ikke importert"
 
-#: ../../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/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Ferdig. Du kan nå logge inn med ditt brukernavn og passord"
 
-#: ../../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/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Klikk her for oppgradere."
 
-#: ../../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/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Denne handlingen overstiger grensene satt i din abonnementsplan."
 
-#: ../../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/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Denne handlingen er ikke tilgjengelig i henhold til din abonnementsplan."
 
-#: ../../include/enotify.php:142
+#: ../../include/conversation.php:207
 #, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notify] %s merket deg"
+msgid "%1$s poked %2$s"
+msgstr "%1$s dyttet %2$s"
 
-#: ../../include/enotify.php:143
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s merket deg %2$s"
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr "innlegg/element"
 
-#: ../../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]merket deg[/url]."
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s merket %2$s's %3$s som en favoritt"
 
-#: ../../include/enotify.php:155
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notify] %s delte et nytt innlegg"
+#: ../../include/conversation.php:770
+msgid "remove"
+msgstr "slett"
 
-#: ../../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/conversation.php:774
+msgid "Delete Selected Items"
+msgstr "Slette valgte elementer"
 
-#: ../../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/conversation.php:873
+msgid "Follow Thread"
+msgstr "Følg tråd"
 
-#: ../../include/enotify.php:169
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s dyttet deg"
+#: ../../include/conversation.php:874 ../../include/Contact.php:229
+msgid "View Status"
+msgstr "Vis status"
 
-#: ../../include/enotify.php:170
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s dyttet deg %2$s"
+#: ../../include/conversation.php:875 ../../include/Contact.php:230
+msgid "View Profile"
+msgstr "Vis profil"
 
-#: ../../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/conversation.php:876 ../../include/Contact.php:231
+msgid "View Photos"
+msgstr "Vis bilder"
 
-#: ../../include/enotify.php:186
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notify] %s merket ditt innlegg"
+#: ../../include/conversation.php:877 ../../include/Contact.php:232
+#: ../../include/Contact.php:255
+msgid "Network Posts"
+msgstr "Nettverksinnlegg"
 
-#: ../../include/enotify.php:187
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s merket ditt innlegg %2$s"
+#: ../../include/conversation.php:878 ../../include/Contact.php:233
+#: ../../include/Contact.php:255
+msgid "Edit Contact"
+msgstr "Endre kontakt"
 
-#: ../../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/conversation.php:879 ../../include/Contact.php:235
+#: ../../include/Contact.php:255
+msgid "Send PM"
+msgstr "Send privat melding"
 
-#: ../../include/enotify.php:199
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notify] Introduksjon mottatt"
+#: ../../include/conversation.php:880 ../../include/Contact.php:228
+msgid "Poke"
+msgstr "Dytt"
 
-#: ../../include/enotify.php:200
+#: ../../include/conversation.php:942
 #, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Du mottok en introduksjon fra '%1$s'  %2$s"
+msgid "%s likes this."
+msgstr "%s liker dette."
 
-#: ../../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 mottok [url=%1$s]en introduksjon[/url] fra %2$s."
+msgid "%s doesn't like this."
+msgstr "%s liker ikke dette."
 
-#: ../../include/enotify.php:204 ../../include/enotify.php:222
+#: ../../include/conversation.php:947
 #, php-format
-msgid "You may visit their profile at %s"
-msgstr "Du kan besøke profilen deres på %s"
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span %1$s>%2$d personer</span> liker dette"
 
-#: ../../include/enotify.php:206
+#: ../../include/conversation.php:950
 #, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Vennligst besøk %s for å godkjenne eller avslå introduksjonen."
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span %1$s>%2$d personer</span> liker ikke dette"
 
-#: ../../include/enotify.php:213
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notify] Venneforslag mottatt"
+#: ../../include/conversation.php:964
+msgid "and"
+msgstr "og"
 
-#: ../../include/enotify.php:214
+#: ../../include/conversation.php:970
+#, php-format
+msgid ", and %d other people"
+msgstr ", og %d andre personer"
+
+#: ../../include/conversation.php:972
 #, 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"
+msgid "%s like this."
+msgstr "%s liker dette."
 
-#: ../../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 mottok  [url=%1$s]et venneforslag[/url] om %2$s fra %3$s."
+msgid "%s don't like this."
+msgstr "%s liker ikke dette."
 
-#: ../../include/enotify.php:220
-msgid "Name:"
-msgstr "Navn:"
+#: ../../include/conversation.php:999 ../../include/conversation.php:1017
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Synlig for <strong>alle</strong>"
 
-#: ../../include/enotify.php:221
-msgid "Photo:"
-msgstr "Bilde:"
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+msgid "Please enter a video link/URL:"
+msgstr "Vennligst skriv inn en videolenke/-URL:"
 
-#: ../../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/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter an audio link/URL:"
+msgstr "Vennligst skriv inn en lydlenke/-URL:"
 
-#: ../../include/Scrape.php:584
-msgid " on Last.fm"
-msgstr "på Last.fm"
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Tag term:"
+msgstr "Merkelapp begrep:"
 
-#: ../../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 "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende elementtillatelser <strong>kan</strong> gjelde for denne gruppen og fremtidige medlemmer. Hvis det ikke var dette du ønsket, vær snill å opprette en annen gruppe med et annet navn."
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+msgid "Where are you right now?"
+msgstr "Hvor er du akkurat nå?"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Standard personverngruppe for nye kontakter"
+#: ../../include/conversation.php:1006
+msgid "Delete item(s)?"
+msgstr "Slett element(er)?"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Alle"
+#: ../../include/conversation.php:1049
+msgid "Post to Email"
+msgstr "Innlegg til e-post"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "endre"
+#: ../../include/conversation.php:1054
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Koblinger avskrudd, siden \"%s\" er påskrudd."
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Endre gruppe"
+#: ../../include/conversation.php:1109
+msgid "permissions"
+msgstr "tillatelser"
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Lag en ny gruppe"
+#: ../../include/conversation.php:1133
+msgid "Post to Groups"
+msgstr "Innlegg til grupper"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Kontakter som ikke er i noen gruppe"
+#: ../../include/conversation.php:1134
+msgid "Post to Contacts"
+msgstr "Innlegg til kontakter"
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "Forbindelses-URL mangler."
+#: ../../include/conversation.php:1135
+msgid "Private post"
+msgstr "Privat innlegg"
 
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk."
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Legg til ny kontakt"
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget."
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Skriv adresse eller web-plassering"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "Den angitte profiladressen inneholder for lite information."
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Eksempel: ole@eksempel.no, http://eksempel.no/kari"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Fant ingen forfatter eller navn."
+#: ../../include/contact_widgets.php:23
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invitasjon tilgjengelig"
+msgstr[1] "%d invitasjoner tilgjengelig"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Ingen nettleser-URL passet med denne adressen."
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "Finn personer"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Finner ikke samsvar mellom @-stilens identitetsadresse og en kjent protokoll eller e-postkontakt."
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "Skriv navn eller interesse"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Bruk mailto: foran adresser for å tvinge e-postsjekk."
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "Koble/Følg"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet."
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Eksempler: Robert Morgenstein, fisking"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg."
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr "Tilfeldig profil"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Ikke i stand til å hente kontaktinformasjon."
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
+msgstr "Nettverk"
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "følger"
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
+msgstr "Alle nettverk"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[ikke noe emne]"
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
+msgstr "Alt"
+
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
+msgstr "Kategorier"
 
 #: ../../include/nav.php:73
 msgid "End this session"
@@ -6668,110 +6833,21 @@ msgstr "Kontoinnstillinger"
 msgid "Manage/Edit Profiles"
 msgstr "Behandle/endre profiler"
 
-#: ../../include/nav.php:173
-msgid "Manage/edit friends and contacts"
-msgstr "Behandle/endre venner og kontakter"
-
-#: ../../include/nav.php:180
-msgid "Site setup and configuration"
-msgstr "Nettstedsoppsett og konfigurasjon"
-
-#: ../../include/nav.php:184
-msgid "Navigation"
-msgstr "Navigasjon"
-
-#: ../../include/nav.php:184
-msgid "Site map"
-msgstr "Nettstedskart"
-
-#: ../../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 "Fødselsdag:"
-
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Alder:"
-
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "for %1$d %2$s"
-
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Merkelapper:"
-
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religion:"
-
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Hobbyer/Interesser:"
-
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformasjon og sosiale nettverk:"
-
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Musikksmak:"
-
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Bøker, litteratur:"
-
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "TV:"
-
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/dans/kultur/underholdning:"
-
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Kjærlighet/romanse:"
-
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Arbeid/ansatt hos:"
-
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Skole/utdanning:"
-
-#: ../../include/bbcode.php:284 ../../include/bbcode.php:917
-#: ../../include/bbcode.php:918
-msgid "Image/photo"
-msgstr "Bilde/fotografi"
-
-#: ../../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> skrev følgende <a href=\"%s\" target=\"_blank\">innlegg</a>"
+#: ../../include/nav.php:173
+msgid "Manage/edit friends and contacts"
+msgstr "Behandle/endre venner og kontakter"
 
-#: ../../include/bbcode.php:453
-msgid "<span><b>"
-msgstr "<span><b>"
+#: ../../include/nav.php:180
+msgid "Site setup and configuration"
+msgstr "Nettstedsoppsett og konfigurasjon"
 
-#: ../../include/bbcode.php:881 ../../include/bbcode.php:901
-msgid "$1 wrote:"
-msgstr "$1 skrev:"
+#: ../../include/nav.php:184
+msgid "Navigation"
+msgstr "Navigasjon"
 
-#: ../../include/bbcode.php:932 ../../include/bbcode.php:933
-msgid "Encrypted content"
-msgstr "Kryptert innhold"
+#: ../../include/nav.php:184
+msgid "Site map"
+msgstr "Nettstedskart"
 
 #: ../../include/contact_selectors.php:32
 msgid "Unknown | Not categorised"
@@ -6849,537 +6925,424 @@ msgstr "Diaspora-forbindelse"
 msgid "Statusnet"
 msgstr "StatusNet"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Diverse"
-
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr "år"
-
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "måned"
-
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr "dag"
-
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "aldri"
-
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "for mindre enn ett sekund siden"
-
-#: ../../include/datetime.php:285
-msgid "years"
-msgstr "år"
-
-#: ../../include/datetime.php:286
-msgid "months"
-msgstr "måneder"
-
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "uke"
-
-#: ../../include/datetime.php:287
-msgid "weeks"
-msgstr "uker"
-
-#: ../../include/datetime.php:288
-msgid "days"
-msgstr "dager"
-
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "time"
-
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "timer"
-
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "minutt"
-
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "minutter"
-
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr "sekund"
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr "Friendica varsel"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "sekunder"
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr "Mange takk,"
 
-#: ../../include/datetime.php:300
+#: ../../include/enotify.php:21
 #, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s siden"
+msgid "%s Administrator"
+msgstr "%s administrator"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1964
+#: ../../include/enotify.php:40
 #, php-format
-msgid "%s's birthday"
-msgstr "%s sin bursdag"
+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 "Gratulerer med dagen, %s"
-
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Generelle egenskaper"
-
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Flere profiler"
-
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Mulighet for å lage flere profiler"
-
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Funksjoner for å skrive innlegg"
-
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Rik tekstredigering"
-
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Skru på rik tekstredigering"
-
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Forhåndsvisning av innlegg"
-
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Tillat forhåndsvisning av innlegg og kommentarer før publisering"
-
-#: ../../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:39
-msgid "Search by Date"
-msgstr "Søk etter dato"
-
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr "Mulighet for å velge innlegg etter datoområder"
-
-#: ../../include/features.php:40
-msgid "Group Filter"
-msgstr "Gruppefilter"
-
-#: ../../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:41
-msgid "Network Filter"
-msgstr "Nettverksfilter"
-
-#: ../../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:42
-msgid "Save search terms for re-use"
-msgstr "Lagre søkeuttrykk for gjenbruk"
-
-#: ../../include/features.php:47
-msgid "Network Tabs"
-msgstr "Nettverksfaner"
-
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
-msgstr "Nettverk personlig fane"
-
-#: ../../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:49
-msgid "Network New Tab"
-msgstr "Nettverk Ny fane"
-
-#: ../../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:50
-msgid "Network Shared Links Tab"
-msgstr "Nettverk Delte lenker fane"
-
-#: ../../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:55
-msgid "Post/Comment Tools"
-msgstr "Innleggs-/kommentarverktøy"
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notify] Ny melding mottatt hos %s"
 
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr "Slett flere"
+#: ../../include/enotify.php:46
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s sendte deg en ny privat melding hos %2$s."
 
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Velg og slett flere innlegg/kommentarer på en gang"
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s sendte deg %2$s."
 
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
-msgstr "Endre sendte innlegg"
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr "en privat melding"
 
-#: ../../include/features.php:57
-msgid "Edit and correct posts and comments after sending"
-msgstr "Endre og korriger innlegg og kommentarer etter sending"
+#: ../../include/enotify.php:48
+#, php-format
+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/features.php:58
-msgid "Tagging"
-msgstr "Merking"
+#: ../../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/features.php:58
-msgid "Ability to tag existing posts"
-msgstr "Mulighet til å merke eksisterende innlegg"
+#: ../../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/features.php:59
-msgid "Post Categories"
-msgstr "Innleggskategorier"
+#: ../../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/features.php:59
-msgid "Add categories to your posts"
-msgstr "Legg til kategorier til dine innlegg"
+#: ../../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/features.php:60
-msgid "Ability to file posts under folders"
-msgstr "Mulighet til å sortere innlegg i mapper"
+#: ../../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/features.php:61
-msgid "Dislike Posts"
-msgstr "Liker ikke innlegg"
+#: ../../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/features.php:61
-msgid "Ability to dislike posts/comments"
-msgstr "Mulighet til å ikke like innlegg/kommentarer"
+#: ../../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/features.php:62
-msgid "Star Posts"
-msgstr "Stjerneinnlegg"
+#: ../../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/features.php:62
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Mulighet til å merke spesielle innlegg med en stjerneindikator"
+#: ../../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/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
-msgstr "Dele varslinger fra Diaspora nettverket"
+#: ../../include/enotify.php:142
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notify] %s merket deg"
 
-#: ../../include/diaspora.php:2299
-msgid "Attachments:"
-msgstr "Vedlegg:"
+#: ../../include/enotify.php:143
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s merket deg %2$s"
 
-#: ../../include/acl_selectors.php:326
-msgid "Visible to everybody"
-msgstr "Synlig for alle"
+#: ../../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/items.php:3693
-msgid "A new person is sharing with you at "
-msgstr "En ny person deler med deg hos"
+#: ../../include/enotify.php:155
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notify] %s delte et nytt innlegg"
 
-#: ../../include/items.php:3693
-msgid "You have a new follower at "
-msgstr "Du har en ny følgesvenn på "
+#: ../../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/items.php:4216
-msgid "Do you really want to delete this item?"
-msgstr "Ønsker du virkelig å slette dette elementet?"
+#: ../../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/items.php:4443
-msgid "Archives"
-msgstr "Arkiverer"
+#: ../../include/enotify.php:169
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s dyttet deg"
 
-#: ../../include/oembed.php:174
-msgid "Embedded content"
-msgstr "Innebygd innhold"
+#: ../../include/enotify.php:170
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s dyttet deg %2$s"
 
-#: ../../include/oembed.php:183
-msgid "Embedding disabled"
-msgstr "Innebygging avskrudd"
+#: ../../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/security.php:22
-msgid "Welcome "
-msgstr "Velkommen"
+#: ../../include/enotify.php:186
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notify] %s merket ditt innlegg"
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Vennligst last opp et profilbilde."
+#: ../../include/enotify.php:187
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s merket ditt innlegg %2$s"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Velkommen tilbake"
+#: ../../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/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 "Skjemaets sikkerhetsnøkkel var ikke riktig. Dette skjedde antakelig fordi skjemaet har stått åpent for lenge (>3 timer) før innsending."
+#: ../../include/enotify.php:199
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notify] Introduksjon mottatt"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Mann"
+#: ../../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/profile_selectors.php:6
-msgid "Female"
-msgstr "Kvinne"
+#: ../../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/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "For øyeblikket mann"
+#: ../../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/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "For øyeblikket kvinne"
+#: ../../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/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Stort sett mann"
+#: ../../include/enotify.php:213
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notify] Venneforslag mottatt"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Stort sett kvinne"
+#: ../../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/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transkjønnet"
+#: ../../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/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Tvekjønnet"
+#: ../../include/enotify.php:220
+msgid "Name:"
+msgstr "Navn:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transseksuell"
+#: ../../include/enotify.php:221
+msgid "Photo:"
+msgstr "Bilde:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermafroditt"
+#: ../../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/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Intetkjønn"
+#: ../../include/user.php:39
+msgid "An invitation is required."
+msgstr "En invitasjon er nødvendig."
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Ikke spesifisert"
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
+msgstr "Invitasjon kunne ikke bekreftes."
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Annet"
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
+msgstr "Ugyldig OpenID URL"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Ubestemt"
+#: ../../include/user.php:73
+msgid "Please enter the required information."
+msgstr "Vennligst skriv inn den nødvendige informasjonen."
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Menn"
+#: ../../include/user.php:87
+msgid "Please use a shorter name."
+msgstr "Vennligst bruk et kortere navn."
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Kvinner"
+#: ../../include/user.php:89
+msgid "Name too short."
+msgstr "Navnet er for kort."
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Homse"
+#: ../../include/user.php:104
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn)."
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbe"
+#: ../../include/user.php:109
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Ditt e-postdomene er ikke blant de som er tillat på dette stedet."
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Ingen preferanse"
+#: ../../include/user.php:112
+msgid "Not a valid email address."
+msgstr "Ugyldig e-postadresse."
+
+#: ../../include/user.php:125
+msgid "Cannot use that email."
+msgstr "Kan ikke bruke den e-postadressen."
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Biseksuell"
+#: ../../include/user.php:131
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav."
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autoseksuell"
+#: ../../include/user.php:137 ../../include/user.php:235
+msgid "Nickname is already registered. Please choose another."
+msgstr "Kallenavnet er allerede registrert. Vennligst velg et annet."
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Avholdende"
+#: ../../include/user.php:147
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Kallenavnet ble registrert her en gang og kan ikke brukes om igjen. Vennligst velg et annet."
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Jomfru"
+#: ../../include/user.php:163
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler."
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Avvikende"
+#: ../../include/user.php:221
+msgid "An error occurred during registration. Please try again."
+msgstr "En feil oppstod under registreringen. Vennligst prøv igjen."
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetisj"
+#: ../../include/user.php:256
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen."
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Mange"
+#: ../../include/acl_selectors.php:326
+msgid "Visible to everybody"
+msgstr "Synlig for alle"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Aseksuell"
+#: ../../include/bbcode.php:287 ../../include/bbcode.php:920
+#: ../../include/bbcode.php:921
+msgid "Image/photo"
+msgstr "Bilde/fotografi"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Alene"
+#: ../../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> skrev følgende <a href=\"%s\" target=\"_blank\">innlegg</a>"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Ensom"
+#: ../../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 "Tilgjengelig"
+#: ../../include/bbcode.php:884 ../../include/bbcode.php:904
+msgid "$1 wrote:"
+msgstr "$1 skrev:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Ikke tilgjengelig"
+#: ../../include/bbcode.php:935 ../../include/bbcode.php:936
+msgid "Encrypted content"
+msgstr "Kryptert innhold"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Er forelsket"
+#: ../../include/oembed.php:174
+msgid "Embedded content"
+msgstr "Innebygd innhold"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Betatt"
+#: ../../include/oembed.php:183
+msgid "Embedding disabled"
+msgstr "Innebygging avskrudd"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Stevnemøter/dater"
+#: ../../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 "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende elementtillatelser <strong>kan</strong> gjelde for denne gruppen og fremtidige medlemmer. Hvis det ikke var dette du ønsket, vær snill å opprette en annen gruppe med et annet navn."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Utro"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Standard personverngruppe for nye kontakter"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sexavhengig"
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Alle"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Venner med fordeler"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "endre"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Tilfeldig"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Endre gruppe"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Forlovet"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Lag en ny gruppe"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Gift"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Kontakter som ikke er i noen gruppe"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Fantasiekteskap"
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "sluttet å følge"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partnere"
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
+msgstr "Fjern kontakt"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Samboere"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Diverse"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Samboer"
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "år"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Lykkelig"
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr "måned"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Ikke på utkikk"
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr "dag"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Partnerbytte/swinger"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "aldri"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Bedratt"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "for mindre enn ett sekund siden"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Separert"
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr "år"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Ustabil"
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr "måneder"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Skilt"
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "uke"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Fantasiskilt"
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "uker"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Enke/enkemann"
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr "dager"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Usikker"
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "time"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Det er komplisert"
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "timer"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Uinteressert"
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "minutt"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Spør meg"
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "minutter"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "sluttet å følge"
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr "sekund"
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr "Fjern kontakt"
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "sekunder"
 
-#: ../../include/dba.php:45
+#: ../../include/datetime.php:300
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kan ikke finne DNS informasjon for databasetjeneren '%s' "
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s siden"
+
+#: ../../include/network.php:886
+msgid "view full size"
+msgstr "Vis i full størrelse"
index 235dfff9f4a1bf81bb41c48041da3a73ec59dc50..5f6041b6b2b4e72a2a8891d38878344506303837 100644 (file)
@@ -58,350 +58,136 @@ $a->strings["Page not found."] = "Fant ikke siden.";
 $a->strings["Permission denied"] = "Tilgang nektet";
 $a->strings["Permission denied."] = "Ingen tilgang.";
 $a->strings["toggle mobile"] = "Velg mobilvisning";
+$a->strings["[Embedded content - reload page to view]"] = "[Innebygget innhold - hent siden på nytt for å se det]";
+$a->strings["Contact not found."] = "Kontakt ikke funnet.";
+$a->strings["Friend suggestion sent."] = "Venneforslag sendt.";
+$a->strings["Suggest Friends"] = "Foreslå venner";
+$a->strings["Suggest a friend for %s"] = "Foreslå en venn for %s";
+$a->strings["This introduction has already been accepted."] = "Denne introduksjonen har allerede blitt akseptert.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Advarsel: profilstedet har ikke identifiserbart eiernavn.";
+$a->strings["Warning: profile location has no profile photo."] = "Advarsel: profilstedet har ikke noe profilbilde.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "one: %d nødvendig parameter ble ikke funnet på angitt sted",
+       1 => "other: %d nødvendige parametre ble ikke funnet på angitt sted",
+);
+$a->strings["Introduction complete."] = "Introduksjon ferdig.";
+$a->strings["Unrecoverable protocol error."] = "Uopprettelig protokollfeil.";
+$a->strings["Profile unavailable."] = "Profil utilgjengelig.";
+$a->strings["%s has received too many connection requests today."] = "%s har mottatt for mange kontaktforespørsler idag.";
+$a->strings["Spam protection measures have been invoked."] = "Tiltak mot søppelpost har blitt iverksatt.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Venner anbefales å prøve igjen om 24 timer.";
+$a->strings["Invalid locator"] = "Ugyldig stedsangivelse";
+$a->strings["Invalid email address."] = "Ugyldig e-postadresse.";
+$a->strings["This account has not been configured for email. Request failed."] = "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes.";
+$a->strings["Unable to resolve your name at the provided location."] = "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet.";
+$a->strings["You have already introduced yourself here."] = "Du har allerede introdusert deg selv her.";
+$a->strings["Apparently you are already friends with %s."] = "Du er visst allerede venn med %s.";
+$a->strings["Invalid profile URL."] = "Ugyldig profil-URL.";
+$a->strings["Disallowed profile URL."] = "Underkjent profil-URL.";
+$a->strings["Failed to update contact record."] = "Mislyktes med å oppdatere kontaktposten.";
+$a->strings["Your introduction has been sent."] = "Din introduksjon er sendt.";
+$a->strings["Please login to confirm introduction."] = "Vennligst logg inn for å bekrefte introduksjonen.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i <strong>denne</strong> profilen.";
+$a->strings["Hide this contact"] = "Skjul denne kontakten";
+$a->strings["Welcome home %s."] = "Velkommen hjem %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s.";
+$a->strings["Confirm"] = "Bekreft";
+$a->strings["[Name Withheld]"] = "[Navnet tilbakeholdt]";
+$a->strings["Public access denied."] = "Offentlig tilgang ikke tillatt.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vennligst skriv inn din identitetsadresse fra en av følgende støttede sosiale nettverk:";
+$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Koble til som en e-postfølgesvenn</strike> (Kommer snart)";
+$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>."] = "Hvis du ennå ikke er en del av den frie sosiale webben, <a href=\"http://dir.friendica.com/siteinfo\">følg denne lenken for å finne et offentlig Friendica-nettsted og bli med oss idag</a>.";
+$a->strings["Friend/Connection Request"] = "Venne-/Koblings-forespørsel";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Eksempler: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Vennligst svar på følgende:";
+$a->strings["Does %s know you?"] = "Kjenner %s deg?";
+$a->strings["Yes"] = "Ja";
+$a->strings["No"] = "Nei";
+$a->strings["Add a personal note:"] = "Legg til en personlig melding:";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federeated Social Web";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "- vennligst ikke bruk dette skjemaet. I stedet skriver du %s inn søkelinjen i Diaspora.";
+$a->strings["Your Identity Address:"] = "Din identitetsadresse:";
+$a->strings["Submit Request"] = "Send forespørsel";
+$a->strings["Cancel"] = "Avbryt";
+$a->strings["View Video"] = "Vis video";
+$a->strings["Requested profile is not available."] = "Profil utilgjengelig.";
+$a->strings["Access to this profile has been restricted."] = "Tilgang til denne profilen er blitt begrenset.";
+$a->strings["Tips for New Members"] = "Tips til nye medlemmer";
+$a->strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator.";
+$a->strings["Discard"] = "Forkast";
+$a->strings["Ignore"] = "Ignorer";
+$a->strings["System"] = "System";
+$a->strings["Network"] = "Nettverk";
+$a->strings["Personal"] = "Personlig";
 $a->strings["Home"] = "Hjem";
-$a->strings["Your posts and conversations"] = "Dine innlegg og samtaler";
-$a->strings["Profile"] = "Profil";
-$a->strings["Your profile page"] = "Din profilside";
-$a->strings["Photos"] = "Bilder";
-$a->strings["Your photos"] = "Dine bilder";
-$a->strings["Events"] = "Hendelser";
-$a->strings["Your events"] = "Dine hendelser";
-$a->strings["Personal notes"] = "Personlige notater";
-$a->strings["Your personal photos"] = "Dine personlige bilder";
-$a->strings["Community"] = "Fellesskap";
-$a->strings["don't show"] = "ikke vis";
-$a->strings["show"] = "vis";
-$a->strings["Theme settings"] = "Temainnstillinger";
-$a->strings["Set font-size for posts and comments"] = "Angi skriftstørrelse for innlegg og kommentarer";
-$a->strings["Set line-height for posts and comments"] = "Angi linjeavstand for innlegg og kommentarer";
-$a->strings["Set resolution for middle column"] = "Angi oppløsning for midtkolonnen";
-$a->strings["Contacts"] = "Kontakter";
-$a->strings["Your contacts"] = "Dine kontakter";
-$a->strings["Community Pages"] = "Felleskapssider";
-$a->strings["Community Profiles"] = "Fellesskapsprofiler";
-$a->strings["Last users"] = "Siste brukere";
-$a->strings["Last likes"] = "Siste liker";
-$a->strings["event"] = "hendelse";
-$a->strings["status"] = "status";
+$a->strings["Introductions"] = "Introduksjoner";
+$a->strings["Messages"] = "Meldinger";
+$a->strings["Show Ignored Requests"] = "Vis ignorerte forespørsler";
+$a->strings["Hide Ignored Requests"] = "Skjul ignorerte forespørsler";
+$a->strings["Notification type: "] = "Beskjedtype:";
+$a->strings["Friend Suggestion"] = "Venneforslag";
+$a->strings["suggested by %s"] = "foreslått av %s";
+$a->strings["Hide this contact from others"] = "Skjul denne kontakten for andre";
+$a->strings["Post a new friend activity"] = "Post om en ny venn";
+$a->strings["if applicable"] = "hvis gyldig";
+$a->strings["Approve"] = "Godkjenn";
+$a->strings["Claims to be known to you: "] = "Påstår å kjenne deg:";
+$a->strings["yes"] = "ja";
+$a->strings["no"] = "ei";
+$a->strings["Approve as: "] = "Godkjenn som:";
+$a->strings["Friend"] = "Venn";
+$a->strings["Sharer"] = "Deler";
+$a->strings["Fan/Admirer"] = "Fan/Beundrer";
+$a->strings["Friend/Connect Request"] = "Venn/kontakt-forespørsel";
+$a->strings["New Follower"] = "Ny følgesvenn";
+$a->strings["No introductions."] = "Ingen introduksjoner.";
+$a->strings["Notifications"] = "Varslinger";
+$a->strings["%s liked %s's post"] = "%s likte %s sitt innlegg";
+$a->strings["%s disliked %s's post"] = "%s mislikte %s sitt innlegg";
+$a->strings["%s is now friends with %s"] = "%s er nå venner med %s";
+$a->strings["%s created a new post"] = "%s skrev et nytt innlegg";
+$a->strings["%s commented on %s's post"] = "%s kommenterte på %s sitt innlegg";
+$a->strings["No more network notifications."] = "Ingen flere nettverksvarslinger.";
+$a->strings["Network Notifications"] = "Nettverksvarslinger";
+$a->strings["No more system notifications."] = "Ingen flere systemvarsler.";
+$a->strings["System Notifications"] = "Systemvarsler";
+$a->strings["No more personal notifications."] = "Ingen flere personlige varsler.";
+$a->strings["Personal Notifications"] = "Personlige varsler";
+$a->strings["No more home notifications."] = "Ingen flere hjemmevarsler.";
+$a->strings["Home Notifications"] = "Hjemmevarsler";
 $a->strings["photo"] = "bilde";
+$a->strings["status"] = "status";
 $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s's %3\$s";
-$a->strings["Last photos"] = "Siste bilder";
-$a->strings["Contact Photos"] = "Kontaktbilder";
-$a->strings["Profile Photos"] = "Profilbilder";
-$a->strings["Find Friends"] = "Finn venner";
-$a->strings["Local Directory"] = "Lokal katalog";
-$a->strings["Global Directory"] = "Global katalog";
-$a->strings["Similar Interests"] = "Liknende interesser";
-$a->strings["Friend Suggestions"] = "Venneforslag";
-$a->strings["Invite Friends"] = "Inviterer venner";
-$a->strings["Settings"] = "Innstillinger";
-$a->strings["Earth Layers"] = "Earth Layers";
-$a->strings["Set zoomfactor for Earth Layers"] = "Angi zoomfaktor for Earth Layers";
-$a->strings["Set longitude (X) for Earth Layers"] = "Angi lengdegrad (X) for Earth Layers";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Angi breddegrad (Y) for Earth Layers";
-$a->strings["Help or @NewHere ?"] = "Hjelp eller @NewHere ?";
-$a->strings["Connect Services"] = "Forbindelse til tjenester";
-$a->strings["Show/hide boxes at right-hand column:"] = "Vis/skjul bokser i kolonnen til høyre:";
-$a->strings["Set color scheme"] = "Angi fargekart";
-$a->strings["Set zoomfactor for Earth Layer"] = "Angi zoomfaktor for Earth Layer";
-$a->strings["Alignment"] = "Justering";
-$a->strings["Left"] = "Venstre";
-$a->strings["Center"] = "Midtstilt";
-$a->strings["Color scheme"] = "Fargekart";
-$a->strings["Posts font size"] = "Skriftstørrelse for innlegg";
-$a->strings["Textareas font size"] = "Skriftstørrelse for tekstområder";
-$a->strings["Set colour scheme"] = "Angi fargekart";
-$a->strings["default"] = "standard";
-$a->strings["Background Image"] = "Bakgrunnsbilde";
-$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "URL-en til et bilde (for eksempel fra ditt fotoalbum) som skal brukes som bakgrunnsbilde";
-$a->strings["Background Color"] = "Bakgrunnsfarge";
-$a->strings["HEX value for the background color. Don't include the #"] = "HEX-verdi til bakgrunnsfargen. Ikke ta med #";
-$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.";
-$a->strings["Update Error at %s"] = "Oppdateringsfeil i %s";
-$a->strings["Create a New Account"] = "Lag en ny konto";
-$a->strings["Register"] = "Registrer";
-$a->strings["Logout"] = "Logg ut";
-$a->strings["Login"] = "Logg inn";
-$a->strings["Nickname or Email address: "] = "Kallenavn eller epostadresse: ";
-$a->strings["Password: "] = "Passord: ";
-$a->strings["Remember me"] = "Husk meg";
-$a->strings["Or login using OpenID: "] = "Eller logg inn med OpenID:";
-$a->strings["Forgot your password?"] = "Glemt passordet?";
-$a->strings["Password Reset"] = "Passord tilbakestilling";
-$a->strings["Website Terms of Service"] = "Nettstedets bruksbetingelser";
-$a->strings["terms of service"] = "bruksbetingelser";
-$a->strings["Website Privacy Policy"] = "Nettstedets retningslinjer for personvern";
-$a->strings["privacy policy"] = "retningslinjer for personvern";
-$a->strings["Requested account is not available."] = "Profil utilgjengelig.";
-$a->strings["Requested profile is not available."] = "Profil utilgjengelig.";
-$a->strings["Edit profile"] = "Rediger profil";
-$a->strings["Connect"] = "Forbindelse";
-$a->strings["Message"] = "Melding";
-$a->strings["Profiles"] = "Profiler";
-$a->strings["Manage/edit profiles"] = "Behandle/endre profiler";
-$a->strings["Change profile photo"] = "Endre profilbilde";
-$a->strings["Create New Profile"] = "Lag ny profil";
-$a->strings["Profile Image"] = "Profilbilde";
-$a->strings["visible to everybody"] = "synlig for alle";
-$a->strings["Edit visibility"] = "Endre synlighet";
-$a->strings["Location:"] = "Plassering:";
-$a->strings["Gender:"] = "Kjønn:";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Hjemmeside:";
-$a->strings["g A l F d"] = "g A l F d";
-$a->strings["F d"] = "F d";
-$a->strings["[today]"] = "[idag]";
-$a->strings["Birthday Reminders"] = "Fødselsdager";
-$a->strings["Birthdays this week:"] = "Fødselsdager denne uken:";
-$a->strings["[No description]"] = "[Ingen beskrivelse]";
-$a->strings["Event Reminders"] = "Påminnelser om hendelser";
-$a->strings["Events this week:"] = "Hendelser denne uken:";
-$a->strings["Status"] = "Status";
-$a->strings["Status Messages and Posts"] = "Status meldinger og innlegg";
-$a->strings["Profile Details"] = "Profildetaljer";
-$a->strings["Photo Albums"] = "Fotoalbum";
-$a->strings["Videos"] = "Videoer";
-$a->strings["Events and Calendar"] = "Hendelser og kalender";
-$a->strings["Personal Notes"] = "Personlige notater";
-$a->strings["Only You Can See This"] = "Bare du kan se dette";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s er for øyeblikket %2\$s";
-$a->strings["Mood"] = "Stemning";
-$a->strings["Set your current mood and tell your friends"] = "Angi din stemning og fortell dine venner";
-$a->strings["Public access denied."] = "Offentlig tilgang ikke tillatt.";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s's %3\$s";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID kom i retur.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Kontoen ble ikke funnet og OpenID-registrering er ikke tillat på dette nettstedet.";
+$a->strings["Login failed."] = "Innlogging mislyktes.";
+$a->strings["Source (bbcode) text:"] = "BBcode kildetekst:";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Diaspora kildetekst å konvertere til BBcode:";
+$a->strings["Source input: "] = "Kilde-input:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (rå 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): "] = "Diaspora-formatert kilde-input:";
+$a->strings["diaspora2bb: "] = "diaspora2bb:";
+$a->strings["Theme settings updated."] = "Temainnstillinger oppdatert.";
+$a->strings["Site"] = "Nettsted";
+$a->strings["Users"] = "Brukere";
+$a->strings["Plugins"] = "Tillegg";
+$a->strings["Themes"] = "Tema";
+$a->strings["DB updates"] = "Databaseoppdateringer";
+$a->strings["Logs"] = "Logger";
+$a->strings["Admin"] = "Administrator";
+$a->strings["Plugin Features"] = "Utvidelse - egenskaper";
+$a->strings["User registrations waiting for confirmation"] = "Brukerregistreringer venter på bekreftelse";
 $a->strings["Item not found."] = "Enheten ble ikke funnet.";
-$a->strings["Access to this profile has been restricted."] = "Tilgang til denne profilen er blitt begrenset.";
-$a->strings["Item has been removed."] = "Elementet har blitt slettet.";
-$a->strings["Access denied."] = "Tilgang avslått.";
-$a->strings["This is Friendica, version"] = "Dette er Friendica, versjon";
-$a->strings["running at web location"] = "kjører på web-plassering";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Vennligst besøk <a href=\"http://friendica.com\">Friendica.com</a> for å lære mer om Friendica-prosjektet.";
-$a->strings["Bug reports and issues: please visit"] = "Feilrapporter og problemer: vennligst besøk";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Forslag, ros, donasjoner, og så videre - vennligst send e-post til \"Info\" alfakrøll Friendica punktum com";
-$a->strings["Installed plugins/addons/apps:"] = "Installerte plugins/tillegg/apper:";
-$a->strings["No installed plugins/addons/apps"] = "Ingen installerte plugins/tillegg/apper";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s hilser %2\$s";
-$a->strings["Registration details for %s"] = "Registeringsdetaljer for %s";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner.";
-$a->strings["Failed to send email message. Here is the message that failed."] = "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes.";
-$a->strings["Your registration can not be processed."] = "Din registrering kan ikke behandles.";
-$a->strings["Registration request at %s"] = "Henvendelse om registrering ved %s";
-$a->strings["Your registration is pending approval by the site owner."] = "Din registrering venter på godkjenning fra eier av stedet.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Dette nettstedet har overskredet antallet tillate daglige kontoregistreringer. Vennligst prøv igjen imorgen.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\".";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene.";
-$a->strings["Your OpenID (optional): "] = "Din OpenID (valgfritt):";
-$a->strings["Include your profile in member directory?"] = "Legg til profilen din i medlemskatalogen?";
-$a->strings["Yes"] = "Ja";
-$a->strings["No"] = "Nei";
-$a->strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer bare på invitasjon.";
-$a->strings["Your invitation ID: "] = "Din invitasjons-ID:";
-$a->strings["Registration"] = "Registrering";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Ditt fulle navn (f.eks. Ola Nordmann):";
-$a->strings["Your Email Address: "] = "Din e-postadresse:";
-$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>'."] = "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"<strong>kallenavn@\$sitename</strong>\".";
-$a->strings["Choose a nickname: "] = "Velg et kallenavn:";
-$a->strings["Import"] = "Importer";
-$a->strings["Import your profile to this friendica instance"] = "Importer din profil til denne Friendica-instansen.";
-$a->strings["Profile not found."] = "Fant ikke profilen.";
-$a->strings["Contact not found."] = "Kontakt ikke funnet.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Denne kan skje innimellom hvis kontakt ble forespurt av begge personer og den allerede er godkjent.";
-$a->strings["Response from remote site was not understood."] = "Forstod ikke svaret fra det andre stedet.";
-$a->strings["Unexpected response from remote site: "] = "Uventet svar fra det andre stedet:";
-$a->strings["Confirmation completed successfully."] = "Sending av bekreftelse var vellykket. ";
-$a->strings["Remote site reported: "] = "Det andre stedet rapporterte:";
-$a->strings["Temporary failure. Please wait and try again."] = "Midlertidig feil. Vennligst vent og prøv igjen.";
-$a->strings["Introduction failed or was revoked."] = "Introduksjon mislyktes eller ble trukket tilbake.";
-$a->strings["Unable to set contact photo."] = "Fikk ikke satt kontaktbilde.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s er nå venner med %2\$s";
-$a->strings["No user record found for '%s' "] = "Ingen brukerregistrering funnet for '%s'";
-$a->strings["Our site encryption key is apparently messed up."] = "Krypteringsnøkkelen til nettstedet vårt ser ut til å være ødelagt.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "En tom nettsteds-URL ble oppgitt eller URL-en kunne ikke dekrypteres av oss.";
-$a->strings["Contact record was not found for you on our site."] = "Kontaktinformasjon om deg ble ikke funnet på vårt nettsted.";
-$a->strings["Site public key not available in contact record for URL %s."] = "Nettstedets offentlige nøkkel er ikke tilgjengelig i kontaktregisteret for URL %s.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID-en som ble oppgitt av ditt system har en duplikat i vårt system. Det bør virke hvis du prøver igjen.";
-$a->strings["Unable to set your contact credentials on our system."] = "Får ikke lagret din kontaktlegitamasjon på vårt system.";
-$a->strings["Unable to update your contact profile details on our system"] = "Får ikke oppdatert kontaktdetaljene dine på vårt system.";
-$a->strings["Connection accepted at %s"] = "Tilkobling godtatt på %s";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s har blitt med %2\$s";
-$a->strings["Authorize application connection"] = "Tillat forbindelse til program";
-$a->strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:";
-$a->strings["Please login to continue."] = "Vennligst logg inn for å fortsette.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate at dette programmet får tilgang til dine innlegg og kontakter, og/eller kan opprette nye innlegg for deg?";
-$a->strings["No valid account found."] = "Fant ingen gyldig konto.";
-$a->strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er sendt. Sjekk e-posten din.";
-$a->strings["Password reset requested at %s"] = "Forespørsel om tilbakestilling av passord ved %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes.";
-$a->strings["Your password has been reset as requested."] = "Ditt passord er tilbakestilt som forespurt.";
-$a->strings["Your new password is"] = "Ditt nye passord er";
-$a->strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter";
-$a->strings["click here to login"] = "klikk her for å logge inn";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Passordet ditt kan endres fra siden <em>Innstillinger</em> etter vellykket logg inn.";
-$a->strings["Your password has been changed at %s"] = "Ditt passord har blitt endret %s";
-$a->strings["Forgot your Password?"] = "Glemte du passordet?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv inn e-postadressen og send inn for å tilbakestille passordet ditt. Sjekk deretter e-posten din for nærmere forklaring.";
-$a->strings["Nickname or Email: "] = "Kallenavn eller e-post:";
-$a->strings["Reset"] = "Tilbakestill";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes.";
-$a->strings["No recipient selected."] = "Ingen mottaker valgt.";
-$a->strings["Unable to check your home location."] = "Ikke i stand til avgjøre plasseringen til ditt hjemsted.";
-$a->strings["Message could not be sent."] = "Meldingen kunne ikke sendes.";
-$a->strings["Message collection failure."] = "Meldingsinnsamling mislyktes.";
-$a->strings["Message sent."] = "Melding sendt.";
-$a->strings["No recipient."] = "Ingen mottaker.";
-$a->strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:";
-$a->strings["Send Private Message"] = "Send privat melding";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Hvis du ønsker å la %s få svare, vennligst sjekk om personverninnstillingene på ditt nettsted tillater private post fra ukjente avsendere.";
-$a->strings["To:"] = "Til:";
-$a->strings["Subject:"] = "Emne:";
-$a->strings["Your message:"] = "Din melding:";
-$a->strings["Upload photo"] = "Last opp bilde";
-$a->strings["Insert web link"] = "Sett inn web-adresse";
-$a->strings["Welcome to Friendica"] = "Velkommen til Friendica";
-$a->strings["New Member Checklist"] = "Sjekkliste for nye medlemmer";
-$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."] = "Vi vil gjerne gi noe noen tips og lenker for å hjelpe deg til en hyggelig opplevelse. Klikk på et element for å besøke den relevante siden. En lenke til denne siden vil være synlig på din hovedside i to uker etter at du registrerte deg og så vil den bli borte av seg selv.";
-$a->strings["Getting Started"] = "Komme igang";
-$a->strings["Friendica Walk-Through"] = "Friendica gjennomgang";
-$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."] = "På <em>Hurtigstart</em>-siden din, så finner du en kort introduksjon til profilen din og nettverksfanen, hvordan du oppretter nye forbindelser, og hvordan du finner grupper å bli med i.";
-$a->strings["Go to Your Settings"] = "Gå til Dine innstillinger";
-$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."] = "På siden <em>Innstillinger</em> - bytt passordet du fikk. Merk deg også Din identitetsadresse. Denne ser ut som en vanlig e-postadresse, og er nyttig for å bli venner i den frie sosiale web'en.";
-$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."] = "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg.";
-$a->strings["Upload Profile Photo"] = "Last opp profilbilde";
-$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."] = "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier viser at folk som har ekte bilde av seg selv har ti ganger større sannsynlighet for å få venner enn folk som ikke gjør det.";
-$a->strings["Edit Your Profile"] = "Endre profilen din";
-$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."] = "Du kan endre <strong>standardprofilen</strong> din slik du ønsker. Se over innstillingene som lar deg skjule vennelisten og skjule profilen fra ukjente besøkende.";
-$a->strings["Profile Keywords"] = "Profilnøkkelord";
-$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."] = "Legg til noen offentlige nøkkelord til standardprofilen din som beskriver dine interesser. Det kan hende vi klarer å finne andre folk med liknende interesser og foreslå vennskap.";
-$a->strings["Connecting"] = "Kobling";
-$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."] = "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgfritt) importere alle dine Facebook-venner og samtaler.";
-$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>Hvis</em> dette er din egen personlige tjener, så kan installasjon av Facebook-tillegget gjøre overgangen til den frie sosiale web'en lettere.";
-$a->strings["Importing Emails"] = "Importere e-post";
-$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"] = "Skriv inn tilgangsinformasjon til e-posten din på siden for Koblingsinnstillinger, hvis du ønsker å importere og samhandle med venner eller e-postlister fra din e-post INNBOKS";
-$a->strings["Go to Your Contacts Page"] = "Gå til Dine kontakter-siden";
-$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."] = "Dine kontakter-siden er der du håndterer vennskap og skaper forbindelser med venner på andre nettverk. Vanligvis skriver du deres adresse eller nettsteds-URL i dialogboksen <em>Legg til ny kontakt</em>";
-$a->strings["Go to Your Site's Directory"] = "Gå til Din lokale katalog";
-$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."] = "Katalog-siden lar deg finne andre folk i dette nettverket eller andre forente nettsteder. Se etter en <em>Connect</em> eller <em>Follow</em> lenke på profilsiden deres. Oppgi din egen identitetsadresse hvis du blir forespurt om det.";
-$a->strings["Finding New People"] = "Finn nye personer";
-$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."] = "I sidepanelet på Kontakter-siden er flere verktøy for å finne nye venner. Vi kan matche personer utfra interesse, slå opp personer på navn eller interesse, og gi forslag basert på nettverksforbindelser. På et helt nytt nettsted, så vil venneforslag vanligvis dukke opp innen 24 timer.";
-$a->strings["Groups"] = "Grupper";
-$a->strings["Group Your Contacts"] = "Kontaktgrupper";
-$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."] = "Når du har fått noen venner, så kan du organisere dem i private samtalegrupper i sidefeltet på Kontakt-siden din, og deretter kan du samhandle med hver gruppe privat på din Nettverk-side.";
-$a->strings["Why Aren't My Posts Public?"] = "Hvorfor er ikke mine innlegg offentlige?";
-$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 respekterer ditt privatliv. Som standard, så vil dine innlegg bare vises til personer du har lagt til som venner. For mer informasjon, se Hjelp-siden fra lenken ovenfor.";
-$a->strings["Getting Help"] = "Få hjelp";
-$a->strings["Go to the Help Section"] = "Gå til Hjelp-siden";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Våre <strong>hjelpesider</strong> kan leses for flere detaljer og ressurser om andre egenskaper ved programmet.";
-$a->strings["Do you really want to delete this suggestion?"] = "Vil du virkelig slette dette forslaget?";
-$a->strings["Cancel"] = "Avbryt";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ingen forslag tilgjengelig. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer.";
-$a->strings["Ignore/Hide"] = "Ignorér/Skjul";
-$a->strings["Search Results For:"] = "Søkeresultater for:";
-$a->strings["Remove term"] = "Fjern uttrykk";
-$a->strings["Saved Searches"] = "Lagrede søk";
-$a->strings["add"] = "legg til";
-$a->strings["Commented Order"] = "Etter kommentarer";
-$a->strings["Sort by Comment Date"] = "Sorter etter kommentardato";
-$a->strings["Posted Order"] = "Etter innlegg";
-$a->strings["Sort by Post Date"] = "Sorter etter innleggsdato";
-$a->strings["Personal"] = "Personlig";
-$a->strings["Posts that mention or involve you"] = "Innlegg som nevner eller involverer deg";
-$a->strings["New"] = "Ny";
-$a->strings["Activity Stream - by date"] = "Aktivitetsstrøm - etter dato";
-$a->strings["Shared Links"] = "Delte lenker";
-$a->strings["Interesting Links"] = "Interessante lenker";
-$a->strings["Starred"] = "Med stjerne";
-$a->strings["Favourite Posts"] = "Favorittinnlegg";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk.",
-       1 => "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk.",
-);
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Private meldinger til denne gruppen risikerer å bli offentliggjort.";
-$a->strings["No such group"] = "Gruppen finnes ikke";
-$a->strings["Group is empty"] = "Gruppen er tom";
-$a->strings["Group: "] = "Gruppe:";
-$a->strings["Contact: "] = "Kontakt:";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Private meldinger til denne personen risikerer å bli offentliggjort.";
-$a->strings["Invalid contact."] = "Ugyldig kontakt.";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica kommunikasjonstjeneste - oppsett";
-$a->strings["Could not connect to database."] = "Kunne ikke koble til database.";
-$a->strings["Could not create table."] = "Kunne ikke lage tabell.";
-$a->strings["Your Friendica site database has been installed."] = "Databasen til Friendica-nettstedet ditt har blitt installert.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Vennligst se filen \"INSTALL.txt\".";
-$a->strings["System check"] = "Systemsjekk";
-$a->strings["Next"] = "Neste";
-$a->strings["Check again"] = "Sjekk på nytt";
-$a->strings["Database connection"] = "Databaseforbindelse";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "For å installere Friendica må vi vite hvordan man kan koble seg til din database.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter.";
-$a->strings["Database Server Name"] = "Databasetjenerens navn";
-$a->strings["Database Login Name"] = "Database brukernavn";
-$a->strings["Database Login Password"] = "Database passord";
-$a->strings["Database Name"] = "Databasenavn";
-$a->strings["Site administrator email address"] = "Nettstedsadministrator sin e-postadresse";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Din kontos e-postadresse må stemme med denne for å kunne bruke panelet for webadministrasjon.";
-$a->strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted";
-$a->strings["Site settings"] = "Innstillinger for nettstedet";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens PATH.";
-$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>"] = "Hvis du ikke har installert kommandolinjeversjonen av PHP på tjeneren, så vil du ikke kunne kjøre bakgrunnsspørring via cron. Se <a href='http://friendica.com/node/27'>'Aktivere tidsstyrte oppgaver'</a>";
-$a->strings["PHP executable path"] = "PHP kjørefil sin sti";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Skriv inn hele stien til php kjørefilen. Du kan la denne stå blank for å fortsette installasjonen.";
-$a->strings["Command line PHP"] = "Kommandolinje PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP kjørefilen er ikke php cli binærfil (kan være cgi-fgci versjon)";
-$a->strings["Found PHP version: "] = "Fant PHP-versjon:";
-$a->strings["PHP cli binary"] = "PHP cli binærfil";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert.";
-$a->strings["This is required for message delivery to work."] = "Dette er nødvendig for at meldingslevering skal virke.";
-$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"] = "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Lag krypteringsnøkler";
-$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."] = "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modulen er påkrevet, men er ikke installert.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modulen er påkrevet men ikke installert.";
-$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."] = "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette.";
-$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."] = "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan.";
-$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."] = "På slutten av denne prosedyren, så gir vi deg en tekst å lagre i en fil kalt .htconfig.php i din Friendica sin toppmappe.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Du kan alternativt hoppe over denne prosedyren og utføre en manuell installasjon. Vennligst se filen \"INSTALL.txt\" for instruksjoner.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php er skrivbar";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica bruker Smarty3 malmotor for å gjengi sine webvisninger. Smarty3 kompilerer maler til PHP for å gjøre gjengivelse raskere.";
-$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."] = "For å lagre disse kompilerte malene må webtjenesten ha skrivetilgang til katalogen view/smarty3/ som er under Friendica sin toppnivåmappe.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vennligst sjekk at brukeren din webtjeneste kjører som (for eksempel www-data) har skrivetilgang til denne mappen.";
-$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."] = "Merknad: som et sikkerhetstiltak, du bør gi webtjenesten skrivetilgang kun til view/smarty3/ - ikke til malfilene (.tpl) som den inneholder.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 er skrivbar";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL omskriving i .htaccess virker ikke. Sjekk konfigurasjonen til webtjenesten.";
-$a->strings["Url rewrite is working"] = "URL omskriving virker";
-$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."] = "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener.";
-$a->strings["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller.";
-$a->strings["<h1>What next</h1>"] = "<h1>Hva nå</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering.";
-$a->strings["Theme settings updated."] = "Temainnstillinger oppdatert.";
-$a->strings["Site"] = "Nettsted";
-$a->strings["Users"] = "Brukere";
-$a->strings["Plugins"] = "Tillegg";
-$a->strings["Themes"] = "Tema";
-$a->strings["DB updates"] = "Databaseoppdateringer";
-$a->strings["Logs"] = "Logger";
-$a->strings["Admin"] = "Administrator";
-$a->strings["Plugin Features"] = "Utvidelse - egenskaper";
-$a->strings["User registrations waiting for confirmation"] = "Brukerregistreringer venter på bekreftelse";
 $a->strings["Normal Account"] = "Vanlig konto";
 $a->strings["Soapbox Account"] = "Talerstol-konto";
 $a->strings["Community/Celebrity Account"] = "Gruppe-/kjendiskonto";
@@ -432,6 +218,7 @@ $a->strings["No SSL policy, links will track page SSL state"] = "Ingen SSL-retni
 $a->strings["Force all links to use SSL"] = "Tving alle lenker til å bruke SSL";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selvsignert sertifikat, bruk SSL bare til lokale lenker (ikke anbefalt)";
 $a->strings["Save Settings"] = "Lagre innstillinger";
+$a->strings["Registration"] = "Registrering";
 $a->strings["File upload"] = "Last opp fil";
 $a->strings["Policies"] = "Retningslinjer";
 $a->strings["Advanced"] = "Avansert";
@@ -540,6 +327,7 @@ $a->strings["Failed Updates"] = "Mislykkede oppdateringer";
 $a->strings["This does not include updates prior to 1139, which did not return a status."] = "Dette inkluderer ikke oppdateringer som kom før 1139, som ikke returnerer en status.";
 $a->strings["Mark success (if update was manually applied)"] = "Marker vellykket (hvis oppdatering ble iverksatt manuelt)";
 $a->strings["Attempt to execute this update step automatically"] = "Forsøk å utføre dette oppdateringspunktet automatisk";
+$a->strings["Registration details for %s"] = "Registeringsdetaljer for %s";
 $a->strings["Registration successful. Email send to user"] = "Vellykket registrering. E-post er sendt til bruker";
 $a->strings["%s user blocked/unblocked"] = array(
        0 => "%s bruker blokkert/ikke blokkert",
@@ -560,7 +348,6 @@ $a->strings["Request date"] = "Forespørselsdato";
 $a->strings["Name"] = "Navn";
 $a->strings["Email"] = "E-post";
 $a->strings["No registrations."] = "Ingen registreringer.";
-$a->strings["Approve"] = "Godkjenn";
 $a->strings["Deny"] = "Nekt";
 $a->strings["Block"] = "Blokker";
 $a->strings["Unblock"] = "Ikke blokker";
@@ -583,6 +370,7 @@ $a->strings["Plugin %s enabled."] = "Tillegget %s er aktivert.";
 $a->strings["Disable"] = "Skru av";
 $a->strings["Enable"] = "Aktiver";
 $a->strings["Toggle"] = "Veksle";
+$a->strings["Settings"] = "Innstillinger";
 $a->strings["Author: "] = "Forfatter:";
 $a->strings["Maintainer: "] = "Vedlikeholder:";
 $a->strings["No themes found."] = "Ingen temaer funnet.";
@@ -601,11 +389,36 @@ $a->strings["FTP Host"] = "FTP-tjener";
 $a->strings["FTP Path"] = "FTP-sti";
 $a->strings["FTP User"] = "FTP-bruker";
 $a->strings["FTP Password"] = "FTP-passord";
-$a->strings["Search"] = "Søk";
-$a->strings["No results."] = "Fant ikke noe.";
-$a->strings["Tips for New Members"] = "Tips til nye medlemmer";
-$a->strings["link"] = "lenke";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %2\$s sitt %3\$s med %4\$s";
+$a->strings["New Message"] = "Ny melding";
+$a->strings["No recipient selected."] = "Ingen mottaker valgt.";
+$a->strings["Unable to locate contact information."] = "Mislyktes med å finne kontaktinformasjon.";
+$a->strings["Message could not be sent."] = "Meldingen kunne ikke sendes.";
+$a->strings["Message collection failure."] = "Meldingsinnsamling mislyktes.";
+$a->strings["Message sent."] = "Melding sendt.";
+$a->strings["Do you really want to delete this message?"] = "Ønsker du virkelig å slette denne meldingen?";
+$a->strings["Message deleted."] = "Melding slettet.";
+$a->strings["Conversation removed."] = "Samtale slettet.";
+$a->strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:";
+$a->strings["Send Private Message"] = "Send privat melding";
+$a->strings["To:"] = "Til:";
+$a->strings["Subject:"] = "Emne:";
+$a->strings["Your message:"] = "Din melding:";
+$a->strings["Upload photo"] = "Last opp bilde";
+$a->strings["Insert web link"] = "Sett inn web-adresse";
+$a->strings["No messages."] = "Ingen meldinger.";
+$a->strings["Unknown sender - %s"] = "Ukjent avsender - %s";
+$a->strings["You and %s"] = "Du og %s";
+$a->strings["%s and You"] = "%s og du";
+$a->strings["Delete conversation"] = "Slett samtale";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d melding",
+       1 => "%d meldinger",
+);
+$a->strings["Message not available."] = "Melding utilgjengelig.";
+$a->strings["Delete message"] = "Slett melding";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Ingen sikker kommunikasjon tilgjengelig. Du <strong>kan kanskje</strong> svare fra senderens profilside.";
+$a->strings["Send Reply"] = "Send svar";
 $a->strings["Item not found"] = "Fant ikke elementet";
 $a->strings["Edit post"] = "Endre innlegg";
 $a->strings["upload photo"] = "last opp bilde";
@@ -626,95 +439,169 @@ $a->strings["Public post"] = "Offentlig innlegg";
 $a->strings["Set title"] = "Lagre tittel";
 $a->strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)";
 $a->strings["Example: bob@example.com, mary@example.com"] = "Eksempel: ola@example.com, kari@example.com";
-$a->strings["Item not available."] = "Elementet er ikke tilgjengelig.";
-$a->strings["Item was not found."] = "Elementet ble ikke funnet.";
-$a->strings["Account approved."] = "Konto godkjent.";
-$a->strings["Registration revoked for %s"] = "Registreringen til  %s er trukket tilbake";
-$a->strings["Please login."] = "Vennligst logg inn.";
-$a->strings["Find on this site"] = "Finn på dette nettstedet";
-$a->strings["Finding: "] = "Fant:";
-$a->strings["Site Directory"] = "Stedets katalog";
-$a->strings["Find"] = "Finn";
-$a->strings["Age: "] = "Alder:";
-$a->strings["Gender: "] = "Kjønn:";
-$a->strings["About:"] = "Om:";
-$a->strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjulte).";
-$a->strings["Contact settings applied."] = "Kontaktinnstillinger i bruk.";
-$a->strings["Contact update failed."] = "Kontaktoppdatering mislyktes.";
-$a->strings["Repair Contact Settings"] = "Reparer kontaktinnstillinger";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ADVARSEL: Dette er meget avansert</strong> og hvis du skriver feil informasjon her, så kan kommunikasjonen med denne kontakten slutte å virke.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Vennligst bruk Tilbake-knappen i nettleseren din <strong>nå</strong> hvis du er usikker på hva du bør gjøre på denne siden.";
-$a->strings["Return to contact editor"] = "Gå tilbake til å endre kontakt";
-$a->strings["Account Nickname"] = "Konto Kallenavn";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Merkelappnavn - overstyrer Navn/Kallenavn";
-$a->strings["Account URL"] = "Konto URL";
-$a->strings["Friend Request URL"] = "Venneforespørsel URL";
-$a->strings["Friend Confirm URL"] = "Vennebekreftelse URL";
-$a->strings["Notification Endpoint URL"] = "Endepunkt URL for beskjed";
-$a->strings["Poll/Feed URL"] = "Poll/Feed URL";
-$a->strings["New photo from this URL"] = "Nytt bilde fra denne URL-en";
-$a->strings["Remote Self"] = "Fjernbetjent selv";
-$a->strings["Mirror postings from this contact"] = "Speil innlegg fra denne kontakten";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Merk denne kontakten som remote_self, da vil Friendica omposte nye innlegg fra denne kontakten.";
-$a->strings["Move account"] = "Flytt konto";
-$a->strings["You can import an account from another Friendica server."] = "Du kan importere en konto fra en annen Friendica-tjener.";
-$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 må eksportere din konto fra den gamle tjeneren og laste den opp hit. Vi vil gjenskape din gamle konto her med alle dine kontakter. Vi vil også forsøke å informere dine venner at du har flyttet hit.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Denne egenskapen er eksperimentell. Vi kan ikke importere kontakter fra OStatus-nettverk (statusnet/identi.ca) eller fra Diaspora";
-$a->strings["Account file"] = "Kontofil";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "For å eksportere din konto, gå til \"Innstillinger -> Eksporter dine personlige data\" og velg \"Eksporter konto\"";
+$a->strings["Profile not found."] = "Fant ikke profilen.";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Denne kan skje innimellom hvis kontakt ble forespurt av begge personer og den allerede er godkjent.";
+$a->strings["Response from remote site was not understood."] = "Forstod ikke svaret fra det andre stedet.";
+$a->strings["Unexpected response from remote site: "] = "Uventet svar fra det andre stedet:";
+$a->strings["Confirmation completed successfully."] = "Sending av bekreftelse var vellykket. ";
+$a->strings["Remote site reported: "] = "Det andre stedet rapporterte:";
+$a->strings["Temporary failure. Please wait and try again."] = "Midlertidig feil. Vennligst vent og prøv igjen.";
+$a->strings["Introduction failed or was revoked."] = "Introduksjon mislyktes eller ble trukket tilbake.";
+$a->strings["Unable to set contact photo."] = "Fikk ikke satt kontaktbilde.";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s er nå venner med %2\$s";
+$a->strings["No user record found for '%s' "] = "Ingen brukerregistrering funnet for '%s'";
+$a->strings["Our site encryption key is apparently messed up."] = "Krypteringsnøkkelen til nettstedet vårt ser ut til å være ødelagt.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "En tom nettsteds-URL ble oppgitt eller URL-en kunne ikke dekrypteres av oss.";
+$a->strings["Contact record was not found for you on our site."] = "Kontaktinformasjon om deg ble ikke funnet på vårt nettsted.";
+$a->strings["Site public key not available in contact record for URL %s."] = "Nettstedets offentlige nøkkel er ikke tilgjengelig i kontaktregisteret for URL %s.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID-en som ble oppgitt av ditt system har en duplikat i vårt system. Det bør virke hvis du prøver igjen.";
+$a->strings["Unable to set your contact credentials on our system."] = "Får ikke lagret din kontaktlegitamasjon på vårt system.";
+$a->strings["Unable to update your contact profile details on our system"] = "Får ikke oppdatert kontaktdetaljene dine på vårt system.";
+$a->strings["Connection accepted at %s"] = "Tilkobling godtatt på %s";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s har blitt med %2\$s";
+$a->strings["Event title and start time are required."] = "Hendelsens tittel og starttidspunkt er påkrevet.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Rediger hendelse";
+$a->strings["link to source"] = "lenke til kilde";
+$a->strings["Events"] = "Hendelser";
+$a->strings["Create New Event"] = "Lag ny hendelse";
+$a->strings["Previous"] = "Forrige";
+$a->strings["Next"] = "Neste";
+$a->strings["hour:minute"] = "time:minutt";
+$a->strings["Event details"] = "Hendelsesdetaljer";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Formatet er  %s %s. Startdato og tittel er påkrevet.";
+$a->strings["Event Starts:"] = "Hendelsen  starter:";
+$a->strings["Required"] = "Påkrevet";
+$a->strings["Finish date/time is not known or not relevant"] = "Avslutningsdato/-tid er ukjent eller ikke relevant";
+$a->strings["Event Finishes:"] = "Hendelsen slutter:";
+$a->strings["Adjust for viewer timezone"] = "Tilpass til iakttakerens tidssone";
+$a->strings["Description:"] = "Beskrivelse:";
+$a->strings["Location:"] = "Plassering:";
+$a->strings["Title:"] = "Tittel:";
+$a->strings["Share this event"] = "Del denne hendelsen";
+$a->strings["Photos"] = "Bilder";
+$a->strings["Files"] = "Filer";
+$a->strings["Welcome to %s"] = "Velkommen til %s";
 $a->strings["Remote privacy information not available."] = "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig.";
 $a->strings["Visible to:"] = "Synlig for:";
-$a->strings["Save"] = "Lagre";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes.";
+$a->strings["Unable to check your home location."] = "Ikke i stand til avgjøre plasseringen til ditt hjemsted.";
+$a->strings["No recipient."] = "Ingen mottaker.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Hvis du ønsker å la %s få svare, vennligst sjekk om personverninnstillingene på ditt nettsted tillater private post fra ukjente avsendere.";
+$a->strings["Visit %s's profile [%s]"] = "Besøk %ss profil [%s]";
+$a->strings["Edit contact"] = "Endre kontakt";
+$a->strings["Contacts who are not members of a group"] = "Kontakter som ikke er medlemmer av en gruppe";
+$a->strings["This is Friendica, version"] = "Dette er Friendica, versjon";
+$a->strings["running at web location"] = "kjører på web-plassering";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Vennligst besøk <a href=\"http://friendica.com\">Friendica.com</a> for å lære mer om Friendica-prosjektet.";
+$a->strings["Bug reports and issues: please visit"] = "Feilrapporter og problemer: vennligst besøk";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Forslag, ros, donasjoner, og så videre - vennligst send e-post til \"Info\" alfakrøll Friendica punktum com";
+$a->strings["Installed plugins/addons/apps:"] = "Installerte plugins/tillegg/apper:";
+$a->strings["No installed plugins/addons/apps"] = "Ingen installerte plugins/tillegg/apper";
+$a->strings["Remove My Account"] = "Slett min konto";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes.";
+$a->strings["Please enter your password for verification:"] = "Vennligst skriv inn ditt passord for å bekrefte:";
+$a->strings["Image exceeds size limit of %d"] = "Bildets størrelse overstiger størrelsesbegrensningen på %d";
+$a->strings["Unable to process image."] = "Ikke i stand til å behandle bildet.";
+$a->strings["Wall Photos"] = "Veggbilder";
+$a->strings["Image upload failed."] = "Mislyktes med å laste opp bilde.";
+$a->strings["Authorize application connection"] = "Tillat forbindelse til program";
+$a->strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:";
+$a->strings["Please login to continue."] = "Vennligst logg inn for å fortsette.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate at dette programmet får tilgang til dine innlegg og kontakter, og/eller kan opprette nye innlegg for deg?";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %2\$s sitt %3\$s med %4\$s";
+$a->strings["Photo Albums"] = "Fotoalbum";
+$a->strings["Contact Photos"] = "Kontaktbilder";
+$a->strings["Upload New Photos"] = "Last opp nye bilder";
+$a->strings["everybody"] = "alle";
+$a->strings["Contact information unavailable"] = "Kontaktinformasjon utilgjengelig";
+$a->strings["Profile Photos"] = "Profilbilder";
+$a->strings["Album not found."] = "Album ble ikke funnet.";
+$a->strings["Delete Album"] = "Slett album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Ønsker du virkelig å slette dette fotoalbumet og alle bildene i det?";
+$a->strings["Delete Photo"] = "Slett bilde";
+$a->strings["Do you really want to delete this photo?"] = "Ønsker du virkelig å slette dette bildet?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s ble merket i %2\$s av %3\$s";
+$a->strings["a photo"] = "et bilde";
+$a->strings["Image exceeds size limit of "] = "Bilde overstiger størrelsesbegrensningen på ";
+$a->strings["Image file is empty."] = "Bildefilen er tom.";
+$a->strings["No photos selected"] = "Ingen bilder er valgt";
+$a->strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du har brukt %1$.2f Mbytes av %2$.2f Mbytes bildelagring.";
+$a->strings["Upload Photos"] = "Last opp bilder";
+$a->strings["New album name: "] = "Nytt albumnavn:";
+$a->strings["or existing album name: "] = "eller eksisterende albumnavn:";
+$a->strings["Do not show a status post for this upload"] = "Ikke vis statusoppdatering for denne opplastingen";
+$a->strings["Permissions"] = "Tillatelser";
+$a->strings["Show to Groups"] = "Vis til grupper";
+$a->strings["Show to Contacts"] = "Vis til kontakter";
+$a->strings["Private Photo"] = "Privat bilde";
+$a->strings["Public Photo"] = "Offentlig bilde";
+$a->strings["Edit Album"] = "Endre album";
+$a->strings["Show Newest First"] = "Vis nyeste først";
+$a->strings["Show Oldest First"] = "Vis eldste først";
+$a->strings["View Photo"] = "Vis bilde";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Tilgang nektet. Tilgang til dette elementet kan være begrenset.";
+$a->strings["Photo not available"] = "Bilde ikke tilgjengelig";
+$a->strings["View photo"] = "Vis foto";
+$a->strings["Edit photo"] = "Endre bilde";
+$a->strings["Use as profile photo"] = "Bruk som profilbilde";
+$a->strings["View Full Size"] = "Vis i full størrelse";
+$a->strings["Tags: "] = "Tagger:";
+$a->strings["[Remove any tag]"] = "[Fjern en tag]";
+$a->strings["Rotate CW (right)"] = "Roter med klokka (høyre)";
+$a->strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)";
+$a->strings["New album name"] = "Nytt albumnavn";
+$a->strings["Caption"] = "Overskrift";
+$a->strings["Add a Tag"] = "Legg til tag";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Private photo"] = "Privat bilde";
+$a->strings["Public photo"] = "Offentlig bilde";
+$a->strings["Share"] = "Del";
+$a->strings["View Album"] = "Vis album";
+$a->strings["Recent Photos"] = "Nye bilder";
+$a->strings["No profile"] = "Ingen profil";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner.";
+$a->strings["Failed to send email message. Here is the message that failed."] = "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes.";
+$a->strings["Your registration can not be processed."] = "Din registrering kan ikke behandles.";
+$a->strings["Registration request at %s"] = "Henvendelse om registrering ved %s";
+$a->strings["Your registration is pending approval by the site owner."] = "Din registrering venter på godkjenning fra eier av stedet.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Dette nettstedet har overskredet antallet tillate daglige kontoregistreringer. Vennligst prøv igjen imorgen.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\".";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene.";
+$a->strings["Your OpenID (optional): "] = "Din OpenID (valgfritt):";
+$a->strings["Include your profile in member directory?"] = "Legg til profilen din i medlemskatalogen?";
+$a->strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer bare på invitasjon.";
+$a->strings["Your invitation ID: "] = "Din invitasjons-ID:";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Ditt fulle navn (f.eks. Ola Nordmann):";
+$a->strings["Your Email Address: "] = "Din e-postadresse:";
+$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>'."] = "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"<strong>kallenavn@\$sitename</strong>\".";
+$a->strings["Choose a nickname: "] = "Velg et kallenavn:";
+$a->strings["Register"] = "Registrer";
+$a->strings["Import"] = "Importer";
+$a->strings["Import your profile to this friendica instance"] = "Importer din profil til denne Friendica-instansen.";
+$a->strings["No valid account found."] = "Fant ingen gyldig konto.";
+$a->strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er sendt. Sjekk e-posten din.";
+$a->strings["Password reset requested at %s"] = "Forespørsel om tilbakestilling av passord ved %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes.";
+$a->strings["Password Reset"] = "Passord tilbakestilling";
+$a->strings["Your password has been reset as requested."] = "Ditt passord er tilbakestilt som forespurt.";
+$a->strings["Your new password is"] = "Ditt nye passord er";
+$a->strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter";
+$a->strings["click here to login"] = "klikk her for å logge inn";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Passordet ditt kan endres fra siden <em>Innstillinger</em> etter vellykket logg inn.";
+$a->strings["Your password has been changed at %s"] = "Ditt passord har blitt endret %s";
+$a->strings["Forgot your Password?"] = "Glemte du passordet?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv inn e-postadressen og send inn for å tilbakestille passordet ditt. Sjekk deretter e-posten din for nærmere forklaring.";
+$a->strings["Nickname or Email: "] = "Kallenavn eller e-post:";
+$a->strings["Reset"] = "Tilbakestill";
+$a->strings["System down for maintenance"] = "Systemet er nede for vedlikehold";
+$a->strings["Item not available."] = "Elementet er ikke tilgjengelig.";
+$a->strings["Item was not found."] = "Elementet ble ikke funnet.";
+$a->strings["Applications"] = "Programmer";
+$a->strings["No installed applications."] = "Ingen installerte programmer.";
 $a->strings["Help:"] = "Hjelp:";
 $a->strings["Help"] = "Hjelp";
-$a->strings["No profile"] = "Ingen profil";
-$a->strings["This introduction has already been accepted."] = "Denne introduksjonen har allerede blitt akseptert.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Advarsel: profilstedet har ikke identifiserbart eiernavn.";
-$a->strings["Warning: profile location has no profile photo."] = "Advarsel: profilstedet har ikke noe profilbilde.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "one: %d nødvendig parameter ble ikke funnet på angitt sted",
-       1 => "other: %d nødvendige parametre ble ikke funnet på angitt sted",
-);
-$a->strings["Introduction complete."] = "Introduksjon ferdig.";
-$a->strings["Unrecoverable protocol error."] = "Uopprettelig protokollfeil.";
-$a->strings["Profile unavailable."] = "Profil utilgjengelig.";
-$a->strings["%s has received too many connection requests today."] = "%s har mottatt for mange kontaktforespørsler idag.";
-$a->strings["Spam protection measures have been invoked."] = "Tiltak mot søppelpost har blitt iverksatt.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Venner anbefales å prøve igjen om 24 timer.";
-$a->strings["Invalid locator"] = "Ugyldig stedsangivelse";
-$a->strings["Invalid email address."] = "Ugyldig e-postadresse.";
-$a->strings["This account has not been configured for email. Request failed."] = "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes.";
-$a->strings["Unable to resolve your name at the provided location."] = "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet.";
-$a->strings["You have already introduced yourself here."] = "Du har allerede introdusert deg selv her.";
-$a->strings["Apparently you are already friends with %s."] = "Du er visst allerede venn med %s.";
-$a->strings["Invalid profile URL."] = "Ugyldig profil-URL.";
-$a->strings["Disallowed profile URL."] = "Underkjent profil-URL.";
-$a->strings["Failed to update contact record."] = "Mislyktes med å oppdatere kontaktposten.";
-$a->strings["Your introduction has been sent."] = "Din introduksjon er sendt.";
-$a->strings["Please login to confirm introduction."] = "Vennligst logg inn for å bekrefte introduksjonen.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i <strong>denne</strong> profilen.";
-$a->strings["Hide this contact"] = "Skjul denne kontakten";
-$a->strings["Welcome home %s."] = "Velkommen hjem %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s.";
-$a->strings["Confirm"] = "Bekreft";
-$a->strings["[Name Withheld]"] = "[Navnet tilbakeholdt]";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vennligst skriv inn din identitetsadresse fra en av følgende støttede sosiale nettverk:";
-$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Koble til som en e-postfølgesvenn</strike> (Kommer snart)";
-$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>."] = "Hvis du ennå ikke er en del av den frie sosiale webben, <a href=\"http://dir.friendica.com/siteinfo\">følg denne lenken for å finne et offentlig Friendica-nettsted og bli med oss idag</a>.";
-$a->strings["Friend/Connection Request"] = "Venne-/Koblings-forespørsel";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Eksempler: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Vennligst svar på følgende:";
-$a->strings["Does %s know you?"] = "Kjenner %s deg?";
-$a->strings["Add a personal note:"] = "Legg til en personlig melding:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federeated Social Web";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "- vennligst ikke bruk dette skjemaet. I stedet skriver du %s inn søkelinjen i Diaspora.";
-$a->strings["Your Identity Address:"] = "Din identitetsadresse:";
-$a->strings["Submit Request"] = "Send forespørsel";
-$a->strings["[Embedded content - reload page to view]"] = "[Innebygget innhold - hent siden på nytt for å se det]";
-$a->strings["View in context"] = "Vis i sammenheng";
 $a->strings["%d contact edited."] = array(
        0 => "%d kontakt redigert.",
        1 => "%d kontakter redigert",
@@ -745,7 +632,6 @@ $a->strings["%d contact in common"] = array(
 $a->strings["View all contacts"] = "Vis alle kontakter";
 $a->strings["Toggle Blocked status"] = "Veksle blokkeringsstatus";
 $a->strings["Unignore"] = "Fjern ignorering";
-$a->strings["Ignore"] = "Ignorer";
 $a->strings["Toggle Ignored status"] = "Veksle ingnorertstatus";
 $a->strings["Unarchive"] = "Hent ut av arkivet";
 $a->strings["Archive"] = "Arkiver";
@@ -758,7 +644,6 @@ $a->strings["Profile Visibility"] = "Profilens synlighet";
 $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vennligst velg profilen du ønsker å vise til %s når denne ser profilen på en sikret måte.";
 $a->strings["Contact Information / Notes"] = "Kontaktinformasjon/-notater";
 $a->strings["Edit contact notes"] = "Endre kontaktnotater";
-$a->strings["Visit %s's profile [%s]"] = "Besøk %ss profil [%s]";
 $a->strings["Block/Unblock contact"] = "Blokker kontakt/fjern blokkering for kontakt";
 $a->strings["Ignore contact"] = "Ignorer kontakt";
 $a->strings["Repair URL settings"] = "Reparer URL-innstillinger";
@@ -769,7 +654,6 @@ $a->strings["Update public posts"] = "Oppdater offentlige innlegg";
 $a->strings["Currently blocked"] = "Blokkert nå";
 $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";
@@ -791,27 +675,107 @@ $a->strings["Only show hidden contacts"] = "Bare vis skjulte kontakter";
 $a->strings["Mutual Friendship"] = "Gjensidig vennskap";
 $a->strings["is a fan of yours"] = "er en tilhenger av deg";
 $a->strings["you are a fan of"] = "du er en tilhenger av";
-$a->strings["Edit contact"] = "Endre kontakt";
+$a->strings["Contacts"] = "Kontakter";
 $a->strings["Search your contacts"] = "Søk i dine kontakter";
+$a->strings["Finding: "] = "Fant:";
+$a->strings["Find"] = "Finn";
 $a->strings["Update"] = "Oppdater";
-$a->strings["everybody"] = "alle";
-$a->strings["Additional features"] = "Tilleggsfunksjoner";
-$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";
-$a->strings["Missing some important data!"] = "Mangler noen viktige data!";
-$a->strings["Failed to connect with email account using the settings provided."] = "Mislyktes i å opprette forbindelse med e-postkontoen med de oppgitte innstillingene.";
-$a->strings["Email settings updated."] = "E-postinnstillinger er oppdatert.";
-$a->strings["Features updated"] = "Funksjoner oppdatert";
-$a->strings["Relocate message has been send to your contacts"] = "Omplasseringsmelding har blitt sendt til dine kontakter";
-$a->strings["Passwords do not match. Password unchanged."] = "Passordene er ikke like. Passord uendret.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke lov. Passord uendret.";
-$a->strings["Wrong password."] = "Feil passord.";
-$a->strings["Password changed."] = "Passord endret.";
-$a->strings["Password update failed. Please try again."] = "Passordoppdatering mislyktes. Vennligst prøv igjen.";
+$a->strings["No videos selected"] = "Ingen videoer er valgt";
+$a->strings["Recent Videos"] = "Nye videoer";
+$a->strings["Upload New Videos"] = "Last opp nye videoer";
+$a->strings["Common Friends"] = "Felles venner";
+$a->strings["No contacts in common."] = "Ingen kontakter felles.";
+$a->strings["Contact added"] = "Kontakt lagt til ";
+$a->strings["Move account"] = "Flytt konto";
+$a->strings["You can import an account from another Friendica server."] = "Du kan importere en konto fra en annen Friendica-tjener.";
+$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 må eksportere din konto fra den gamle tjeneren og laste den opp hit. Vi vil gjenskape din gamle konto her med alle dine kontakter. Vi vil også forsøke å informere dine venner at du har flyttet hit.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Denne egenskapen er eksperimentell. Vi kan ikke importere kontakter fra OStatus-nettverk (statusnet/identi.ca) eller fra Diaspora";
+$a->strings["Account file"] = "Kontofil";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "For å eksportere din konto, gå til \"Innstillinger -> Eksporter dine personlige data\" og velg \"Eksporter konto\"";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s følger %2\$s sin %3\$s";
+$a->strings["Friends of %s"] = "Venner av %s";
+$a->strings["No friends to display."] = "Ingen venner å vise.";
+$a->strings["Tag removed"] = "Fjernet tag";
+$a->strings["Remove Item Tag"] = "Fjern tag";
+$a->strings["Select a tag to remove: "] = "Velg en tag å fjerne:";
+$a->strings["Remove"] = "Slett";
+$a->strings["Welcome to Friendica"] = "Velkommen til Friendica";
+$a->strings["New Member Checklist"] = "Sjekkliste for nye medlemmer";
+$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."] = "Vi vil gjerne gi noe noen tips og lenker for å hjelpe deg til en hyggelig opplevelse. Klikk på et element for å besøke den relevante siden. En lenke til denne siden vil være synlig på din hovedside i to uker etter at du registrerte deg og så vil den bli borte av seg selv.";
+$a->strings["Getting Started"] = "Komme igang";
+$a->strings["Friendica Walk-Through"] = "Friendica gjennomgang";
+$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."] = "På <em>Hurtigstart</em>-siden din, så finner du en kort introduksjon til profilen din og nettverksfanen, hvordan du oppretter nye forbindelser, og hvordan du finner grupper å bli med i.";
+$a->strings["Go to Your Settings"] = "Gå til Dine innstillinger";
+$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."] = "På siden <em>Innstillinger</em> - bytt passordet du fikk. Merk deg også Din identitetsadresse. Denne ser ut som en vanlig e-postadresse, og er nyttig for å bli venner i den frie sosiale web'en.";
+$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."] = "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg.";
+$a->strings["Profile"] = "Profil";
+$a->strings["Upload Profile Photo"] = "Last opp profilbilde";
+$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."] = "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier viser at folk som har ekte bilde av seg selv har ti ganger større sannsynlighet for å få venner enn folk som ikke gjør det.";
+$a->strings["Edit Your Profile"] = "Endre profilen din";
+$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."] = "Du kan endre <strong>standardprofilen</strong> din slik du ønsker. Se over innstillingene som lar deg skjule vennelisten og skjule profilen fra ukjente besøkende.";
+$a->strings["Profile Keywords"] = "Profilnøkkelord";
+$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."] = "Legg til noen offentlige nøkkelord til standardprofilen din som beskriver dine interesser. Det kan hende vi klarer å finne andre folk med liknende interesser og foreslå vennskap.";
+$a->strings["Connecting"] = "Kobling";
+$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."] = "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgfritt) importere alle dine Facebook-venner og samtaler.";
+$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>Hvis</em> dette er din egen personlige tjener, så kan installasjon av Facebook-tillegget gjøre overgangen til den frie sosiale web'en lettere.";
+$a->strings["Importing Emails"] = "Importere e-post";
+$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"] = "Skriv inn tilgangsinformasjon til e-posten din på siden for Koblingsinnstillinger, hvis du ønsker å importere og samhandle med venner eller e-postlister fra din e-post INNBOKS";
+$a->strings["Go to Your Contacts Page"] = "Gå til Dine kontakter-siden";
+$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."] = "Dine kontakter-siden er der du håndterer vennskap og skaper forbindelser med venner på andre nettverk. Vanligvis skriver du deres adresse eller nettsteds-URL i dialogboksen <em>Legg til ny kontakt</em>";
+$a->strings["Go to Your Site's Directory"] = "Gå til Din lokale katalog";
+$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."] = "Katalog-siden lar deg finne andre folk i dette nettverket eller andre forente nettsteder. Se etter en <em>Connect</em> eller <em>Follow</em> lenke på profilsiden deres. Oppgi din egen identitetsadresse hvis du blir forespurt om det.";
+$a->strings["Finding New People"] = "Finn nye personer";
+$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."] = "I sidepanelet på Kontakter-siden er flere verktøy for å finne nye venner. Vi kan matche personer utfra interesse, slå opp personer på navn eller interesse, og gi forslag basert på nettverksforbindelser. På et helt nytt nettsted, så vil venneforslag vanligvis dukke opp innen 24 timer.";
+$a->strings["Groups"] = "Grupper";
+$a->strings["Group Your Contacts"] = "Kontaktgrupper";
+$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."] = "Når du har fått noen venner, så kan du organisere dem i private samtalegrupper i sidefeltet på Kontakt-siden din, og deretter kan du samhandle med hver gruppe privat på din Nettverk-side.";
+$a->strings["Why Aren't My Posts Public?"] = "Hvorfor er ikke mine innlegg offentlige?";
+$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 respekterer ditt privatliv. Som standard, så vil dine innlegg bare vises til personer du har lagt til som venner. For mer informasjon, se Hjelp-siden fra lenken ovenfor.";
+$a->strings["Getting Help"] = "Få hjelp";
+$a->strings["Go to the Help Section"] = "Gå til Hjelp-siden";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Våre <strong>hjelpesider</strong> kan leses for flere detaljer og ressurser om andre egenskaper ved programmet.";
+$a->strings["Remove term"] = "Fjern uttrykk";
+$a->strings["Saved Searches"] = "Lagrede søk";
+$a->strings["Search"] = "Søk";
+$a->strings["No results."] = "Fant ikke noe.";
+$a->strings["Total invitation limit exceeded."] = "Grensen for totalt antall invitasjoner er overskredet.";
+$a->strings["%s : Not a valid email address."] = "%s: Ugyldig e-postadresse.";
+$a->strings["Please join us on Friendica"] = "Vær med oss på Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitasjonsgrense overskredet. Vennligst kontakt administrator på ditt nettsted.";
+$a->strings["%s : Message delivery failed."] = "%s: Mislyktes med å levere meldingen.";
+$a->strings["%d message sent."] = array(
+       0 => "one: %d melding sendt.",
+       1 => "other: %d meldinger sendt.",
+);
+$a->strings["You have no more invitations available"] = "Du har ingen flere tilgjengelige invitasjoner";
+$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."] = "Besøk %s for en liste med offentlige nettsteder du kan bli med i. Friendica-medlemmer ved andre nettsteder kan alle opprette forbindelse til hverandre, og i tillegg til medlemmer av mange andre sosiale nettverk.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "For å akseptere denne invitasjonen, vær så snill å besøk og registrer deg hos %s eller et hvilket som helst annet offentlig Friendica-nettsted.";
+$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-nettsteder er alle forbundet med hverandre for å lage et personvern-forbedret sosialt nettverk  som eies og kontrolleres av medlemmene selv. De kan også forbindes med mange tradisjonelle sosiale nettverk. Se %s for en liste over alternative Friendica-nettsteder du kan bli med i.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer.";
+$a->strings["Send invitations"] = "Send invitasjoner";
+$a->strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:";
+$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 er herved hjertelig invitert til å bli med meg og andre nære venner på Friendica - hjelp oss å skape en bedre sosial web.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du må oppgi denne invitasjonskoden: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Når du har registrert, vennligst kontakt meg via min profilside på:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "For mer informasjon om Friendica-prosjektet og hvorfor vi mener det er viktig, vennligst besøk http://friendica.com";
+$a->strings["Additional features"] = "Tilleggsfunksjoner";
+$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";
+$a->strings["Missing some important data!"] = "Mangler noen viktige data!";
+$a->strings["Failed to connect with email account using the settings provided."] = "Mislyktes i å opprette forbindelse med e-postkontoen med de oppgitte innstillingene.";
+$a->strings["Email settings updated."] = "E-postinnstillinger er oppdatert.";
+$a->strings["Features updated"] = "Funksjoner oppdatert";
+$a->strings["Relocate message has been send to your contacts"] = "Omplasseringsmelding har blitt sendt til dine kontakter";
+$a->strings["Passwords do not match. Password unchanged."] = "Passordene er ikke like. Passord uendret.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke lov. Passord uendret.";
+$a->strings["Wrong password."] = "Feil passord.";
+$a->strings["Password changed."] = "Passord endret.";
+$a->strings["Password update failed. Please try again."] = "Passordoppdatering mislyktes. Vennligst prøv igjen.";
 $a->strings[" Please use a shorter name."] = "Vennligst bruk et kortere navn.";
 $a->strings[" Name too short."] = "Navnet er for kort.";
 $a->strings["Wrong Password"] = "Feil passord";
@@ -866,6 +830,8 @@ $a->strings["Number of items to display per page when viewed from mobile device:
 $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["User Types"] = "Brukerkategorier";
+$a->strings["Community Types"] = "Felleskapskategorier";
 $a->strings["Normal Account Page"] = "Vanlig konto-side";
 $a->strings["This account is a normal personal profile"] = "Denne kontoen er en vanlig personlig profil";
 $a->strings["Soapbox Page"] = "Talerstol-side";
@@ -917,8 +883,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maksimum venneforespørsler/dag:"
 $a->strings["(to prevent spam abuse)"] = "(for å forhindre søppelpost)";
 $a->strings["Default Post Permissions"] = "Standardtillatelser ved posting";
 $a->strings["(click to open/close)"] = "(klikk for å åpne/lukke)";
-$a->strings["Show to Groups"] = "Vis til grupper";
-$a->strings["Show to Contacts"] = "Vis til kontakter";
 $a->strings["Default Private Post"] = "Standard privat innlegg";
 $a->strings["Default Public Post"] = "Standard offentlig innlegg";
 $a->strings["Default Permissions for New Posts"] = "Standard tillatelser for nye innlegg";
@@ -942,6 +906,9 @@ $a->strings["Change the behaviour of this account for special situations"] = "En
 $a->strings["Relocate"] = "Omplasser";
 $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."] = "Hvis du har flyttet denne profilen fra en annen tjener, og noen av dine kontakter ikke mottar dine oppdateringer, prøv å trykke denne knappen.";
 $a->strings["Resend relocate message to contacts"] = "Send omplasseringsmelding på nytt til kontakter";
+$a->strings["Item has been removed."] = "Elementet har blitt slettet.";
+$a->strings["People Search"] = "Personsøk";
+$a->strings["No matches"] = "Ingen treff";
 $a->strings["Profile deleted."] = "Profil slettet.";
 $a->strings["Profile-"] = "Profil-";
 $a->strings["New profile created."] = "Ny profil opprettet.";
@@ -1010,7 +977,162 @@ $a->strings["Love/romance"] = "Kjærlighet/romanse";
 $a->strings["Work/employment"] = "Arbeid/ansatt hos";
 $a->strings["School/education"] = "Skole/utdanning";
 $a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dette er din <strong>offentlige</strong> profil.<br>Den <strong>kan</strong> ses av alle på Internet.";
+$a->strings["Age: "] = "Alder:";
 $a->strings["Edit/Manage Profiles"] = "Rediger/Behandle profiler";
+$a->strings["Change profile photo"] = "Endre profilbilde";
+$a->strings["Create New Profile"] = "Lag ny profil";
+$a->strings["Profile Image"] = "Profilbilde";
+$a->strings["visible to everybody"] = "synlig for alle";
+$a->strings["Edit visibility"] = "Endre synlighet";
+$a->strings["link"] = "lenke";
+$a->strings["Export account"] = "Eksporter konto";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Eksporter din kontos informasjon og kontakter. Bruk denne til å ta en sikkerhetskopi av kontoen din og/eller for å flytte til en annen tjener.";
+$a->strings["Export all"] = "Eksporter alt";
+$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)"] = "Eksporter din kontoinformasjon, kontakter og alle dine elementer som JSON. Det kan bli en svært stor fil, og kan ta lang tid. Bruk denne til å gjøre en full sikkerhetskopi av kontoen din (bilder blir ikke eksportert)";
+$a->strings["{0} wants to be your friend"] = "{0} ønsker å bli din venn";
+$a->strings["{0} sent you a message"] = "{0} sendte deg en melding";
+$a->strings["{0} requested registration"] = "{0} forespurte om registrering";
+$a->strings["{0} commented %s's post"] = "{0} kommenterte %s sitt innlegg";
+$a->strings["{0} liked %s's post"] = "{0} likte %s sitt innlegg";
+$a->strings["{0} disliked %s's post"] = "{0} likte ikke %s sitt innlegg";
+$a->strings["{0} is now friends with %s"] = "{0} er nå venner med %s";
+$a->strings["{0} posted"] = "{0} postet et innlegg";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} merket %s sitt innlegg med #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} nevnte deg i et innlegg";
+$a->strings["Nothing new here"] = "Ikke noe nytt her";
+$a->strings["Clear notifications"] = "Fjern varslinger";
+$a->strings["Not available."] = "Ikke tilgjengelig.";
+$a->strings["Community"] = "Fellesskap";
+$a->strings["Save to Folder:"] = "Lagre til mappe:";
+$a->strings["- select -"] = "- velg -";
+$a->strings["Save"] = "Lagre";
+$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["Invalid profile identifier."] = "Ugyldig profilidentifikator.";
+$a->strings["Profile Visibility Editor"] = "Behandle profilsynlighet";
+$a->strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne.";
+$a->strings["Visible To"] = "Synlig for";
+$a->strings["All Contacts (with secure profile access)"] = "Alle kontakter (med sikret profiltilgang)";
+$a->strings["Do you really want to delete this suggestion?"] = "Vil du virkelig slette dette forslaget?";
+$a->strings["Friend Suggestions"] = "Venneforslag";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ingen forslag tilgjengelig. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer.";
+$a->strings["Connect"] = "Forbindelse";
+$a->strings["Ignore/Hide"] = "Ignorér/Skjul";
+$a->strings["Access denied."] = "Tilgang avslått.";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s hilser %2\$s";
+$a->strings["Manage Identities and/or Pages"] = "Behandle identiteter og/eller sider";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser";
+$a->strings["Select an identity to manage: "] = "Velg en identitet å behandle:";
+$a->strings["No potential page delegates located."] = "Fant ingen potensielle sidedelegater.";
+$a->strings["Delegate Page Management"] = "Deleger sidebehandling";
+$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."] = "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å.";
+$a->strings["Existing Page Managers"] = "Eksisterende sidebehandlere";
+$a->strings["Existing Page Delegates"] = "Eksisterende sidedelegater";
+$a->strings["Potential Delegates"] = "Mulige delegater";
+$a->strings["Add"] = "Legg til";
+$a->strings["No entries."] = "Ingen oppføringer";
+$a->strings["No contacts."] = "Ingen kontakter.";
+$a->strings["View Contacts"] = "Vis kontakter";
+$a->strings["Personal Notes"] = "Personlige notater";
+$a->strings["Poke/Prod"] = "Dytt/dult";
+$a->strings["poke, prod or do other things to somebody"] = "dytt, dult eller gjør andre ting med noen";
+$a->strings["Recipient"] = "Mottaker";
+$a->strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren";
+$a->strings["Make this post private"] = "Gjør dette innlegget privat";
+$a->strings["Global Directory"] = "Global katalog";
+$a->strings["Find on this site"] = "Finn på dette nettstedet";
+$a->strings["Site Directory"] = "Stedets katalog";
+$a->strings["Gender: "] = "Kjønn:";
+$a->strings["Gender:"] = "Kjønn:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Hjemmeside:";
+$a->strings["About:"] = "Om:";
+$a->strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjulte).";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Time Conversion"] = "Tidskonvertering";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica har denne tjenesten for å dele hendelser med andre nettverk og venner i ukjente tidssoner.";
+$a->strings["UTC time: %s"] = "UTC tid: %s";
+$a->strings["Current timezone: %s"] = "Gjeldende tidssone: %s";
+$a->strings["Converted localtime: %s"] = "Konvertert lokaltid: %s";
+$a->strings["Please select your timezone:"] = "Vennligst velg din tidssone:";
+$a->strings["Post successful."] = "Innlegg vellykket.";
+$a->strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjæringen mislyktes.";
+$a->strings["Image size reduction [%s] failed."] = "Reduksjon av bildestørrelse [%s] mislyktes.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-last-siden-på-nytt eller slett mellomlagret i nettleseren hvis det nye bildet ikke vises umiddelbart.";
+$a->strings["Unable to process image"] = "Mislyktes med å behandle bilde";
+$a->strings["Upload File:"] = "Last opp fil:";
+$a->strings["Select a profile:"] = "Velg en profil:";
+$a->strings["Upload"] = "Last opp";
+$a->strings["skip this step"] = "hopp over dette steget";
+$a->strings["select a photo from your photo albums"] = "velg et bilde fra dine fotoalbum";
+$a->strings["Crop Image"] = "Beskjær bilde";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster beskjæringen av bildet for optimal visning.";
+$a->strings["Done Editing"] = "Behandling ferdig";
+$a->strings["Image uploaded successfully."] = "Bilde ble lastet opp.";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica kommunikasjonstjeneste - oppsett";
+$a->strings["Could not connect to database."] = "Kunne ikke koble til database.";
+$a->strings["Could not create table."] = "Kunne ikke lage tabell.";
+$a->strings["Your Friendica site database has been installed."] = "Databasen til Friendica-nettstedet ditt har blitt installert.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Vennligst se filen \"INSTALL.txt\".";
+$a->strings["System check"] = "Systemsjekk";
+$a->strings["Check again"] = "Sjekk på nytt";
+$a->strings["Database connection"] = "Databaseforbindelse";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "For å installere Friendica må vi vite hvordan man kan koble seg til din database.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter.";
+$a->strings["Database Server Name"] = "Databasetjenerens navn";
+$a->strings["Database Login Name"] = "Database brukernavn";
+$a->strings["Database Login Password"] = "Database passord";
+$a->strings["Database Name"] = "Databasenavn";
+$a->strings["Site administrator email address"] = "Nettstedsadministrator sin e-postadresse";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Din kontos e-postadresse må stemme med denne for å kunne bruke panelet for webadministrasjon.";
+$a->strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted";
+$a->strings["Site settings"] = "Innstillinger for nettstedet";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens PATH.";
+$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>"] = "Hvis du ikke har installert kommandolinjeversjonen av PHP på tjeneren, så vil du ikke kunne kjøre bakgrunnsspørring via cron. Se <a href='http://friendica.com/node/27'>'Aktivere tidsstyrte oppgaver'</a>";
+$a->strings["PHP executable path"] = "PHP kjørefil sin sti";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Skriv inn hele stien til php kjørefilen. Du kan la denne stå blank for å fortsette installasjonen.";
+$a->strings["Command line PHP"] = "Kommandolinje PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP kjørefilen er ikke php cli binærfil (kan være cgi-fgci versjon)";
+$a->strings["Found PHP version: "] = "Fant PHP-versjon:";
+$a->strings["PHP cli binary"] = "PHP cli binærfil";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert.";
+$a->strings["This is required for message delivery to work."] = "Dette er nødvendig for at meldingslevering skal virke.";
+$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"] = "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Lag krypteringsnøkler";
+$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."] = "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modulen er påkrevet, men er ikke installert.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modulen er påkrevet men ikke installert.";
+$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."] = "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette.";
+$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."] = "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan.";
+$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."] = "På slutten av denne prosedyren, så gir vi deg en tekst å lagre i en fil kalt .htconfig.php i din Friendica sin toppmappe.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Du kan alternativt hoppe over denne prosedyren og utføre en manuell installasjon. Vennligst se filen \"INSTALL.txt\" for instruksjoner.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php er skrivbar";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica bruker Smarty3 malmotor for å gjengi sine webvisninger. Smarty3 kompilerer maler til PHP for å gjøre gjengivelse raskere.";
+$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."] = "For å lagre disse kompilerte malene må webtjenesten ha skrivetilgang til katalogen view/smarty3/ som er under Friendica sin toppnivåmappe.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vennligst sjekk at brukeren din webtjeneste kjører som (for eksempel www-data) har skrivetilgang til denne mappen.";
+$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."] = "Merknad: som et sikkerhetstiltak, du bør gi webtjenesten skrivetilgang kun til view/smarty3/ - ikke til malfilene (.tpl) som den inneholder.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 er skrivbar";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL omskriving i .htaccess virker ikke. Sjekk konfigurasjonen til webtjenesten.";
+$a->strings["Url rewrite is working"] = "URL omskriving virker";
+$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."] = "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener.";
+$a->strings["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller.";
+$a->strings["<h1>What next</h1>"] = "<h1>Hva nå</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering.";
 $a->strings["Group created."] = "Gruppen er laget.";
 $a->strings["Could not create group."] = "Kunne ikke lage gruppen.";
 $a->strings["Group not found."] = "Fant ikke gruppen.";
@@ -1022,188 +1144,16 @@ $a->strings["Group removed."] = "Gruppe fjernet.";
 $a->strings["Unable to remove group."] = "Mislyktes med å fjerne gruppe.";
 $a->strings["Group Editor"] = "Gruppebehandler";
 $a->strings["Members"] = "Medlemmer";
-$a->strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne.";
-$a->strings["Source (bbcode) text:"] = "BBcode kildetekst:";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Diaspora kildetekst å konvertere til BBcode:";
-$a->strings["Source input: "] = "Kilde-input:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (rå 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): "] = "Diaspora-formatert kilde-input:";
-$a->strings["diaspora2bb: "] = "diaspora2bb:";
-$a->strings["Not available."] = "Ikke tilgjengelig.";
-$a->strings["Contact added"] = "Kontakt lagt til ";
-$a->strings["No more system notifications."] = "Ingen flere systemvarsler.";
-$a->strings["System Notifications"] = "Systemvarsler";
-$a->strings["New Message"] = "Ny melding";
-$a->strings["Unable to locate contact information."] = "Mislyktes med å finne kontaktinformasjon.";
-$a->strings["Messages"] = "Meldinger";
-$a->strings["Do you really want to delete this message?"] = "Ønsker du virkelig å slette denne meldingen?";
-$a->strings["Message deleted."] = "Melding slettet.";
-$a->strings["Conversation removed."] = "Samtale slettet.";
-$a->strings["No messages."] = "Ingen meldinger.";
-$a->strings["Unknown sender - %s"] = "Ukjent avsender - %s";
-$a->strings["You and %s"] = "Du og %s";
-$a->strings["%s and You"] = "%s og du";
-$a->strings["Delete conversation"] = "Slett samtale";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d melding",
-       1 => "%d meldinger",
-);
-$a->strings["Message not available."] = "Melding utilgjengelig.";
-$a->strings["Delete message"] = "Slett melding";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Ingen sikker kommunikasjon tilgjengelig. Du <strong>kan kanskje</strong> svare fra senderens profilside.";
-$a->strings["Send Reply"] = "Send svar";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s's %3\$s";
-$a->strings["Post successful."] = "Innlegg vellykket.";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-$a->strings["Time Conversion"] = "Tidskonvertering";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica har denne tjenesten for å dele hendelser med andre nettverk og venner i ukjente tidssoner.";
-$a->strings["UTC time: %s"] = "UTC tid: %s";
-$a->strings["Current timezone: %s"] = "Gjeldende tidssone: %s";
-$a->strings["Converted localtime: %s"] = "Konvertert lokaltid: %s";
-$a->strings["Please select your timezone:"] = "Vennligst velg din tidssone:";
-$a->strings["Save to Folder:"] = "Lagre til mappe:";
-$a->strings["- select -"] = "- velg -";
-$a->strings["Invalid profile identifier."] = "Ugyldig profilidentifikator.";
-$a->strings["Profile Visibility Editor"] = "Behandle profilsynlighet";
-$a->strings["Visible To"] = "Synlig for";
-$a->strings["All Contacts (with secure profile access)"] = "Alle kontakter (med sikret profiltilgang)";
-$a->strings["No contacts."] = "Ingen kontakter.";
-$a->strings["View Contacts"] = "Vis kontakter";
-$a->strings["People Search"] = "Personsøk";
-$a->strings["No matches"] = "Ingen treff";
-$a->strings["Upload New Photos"] = "Last opp nye bilder";
-$a->strings["Contact information unavailable"] = "Kontaktinformasjon utilgjengelig";
-$a->strings["Album not found."] = "Album ble ikke funnet.";
-$a->strings["Delete Album"] = "Slett album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Ønsker du virkelig å slette dette fotoalbumet og alle bildene i det?";
-$a->strings["Delete Photo"] = "Slett bilde";
-$a->strings["Do you really want to delete this photo?"] = "Ønsker du virkelig å slette dette bildet?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s ble merket i %2\$s av %3\$s";
-$a->strings["a photo"] = "et bilde";
-$a->strings["Image exceeds size limit of "] = "Bilde overstiger størrelsesbegrensningen på ";
-$a->strings["Image file is empty."] = "Bildefilen er tom.";
-$a->strings["Unable to process image."] = "Ikke i stand til å behandle bildet.";
-$a->strings["Image upload failed."] = "Mislyktes med å laste opp bilde.";
-$a->strings["No photos selected"] = "Ingen bilder er valgt";
-$a->strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du har brukt %1$.2f Mbytes av %2$.2f Mbytes bildelagring.";
-$a->strings["Upload Photos"] = "Last opp bilder";
-$a->strings["New album name: "] = "Nytt albumnavn:";
-$a->strings["or existing album name: "] = "eller eksisterende albumnavn:";
-$a->strings["Do not show a status post for this upload"] = "Ikke vis statusoppdatering for denne opplastingen";
-$a->strings["Permissions"] = "Tillatelser";
-$a->strings["Private Photo"] = "Privat bilde";
-$a->strings["Public Photo"] = "Offentlig bilde";
-$a->strings["Edit Album"] = "Endre album";
-$a->strings["Show Newest First"] = "Vis nyeste først";
-$a->strings["Show Oldest First"] = "Vis eldste først";
-$a->strings["View Photo"] = "Vis bilde";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Tilgang nektet. Tilgang til dette elementet kan være begrenset.";
-$a->strings["Photo not available"] = "Bilde ikke tilgjengelig";
-$a->strings["View photo"] = "Vis foto";
-$a->strings["Edit photo"] = "Endre bilde";
-$a->strings["Use as profile photo"] = "Bruk som profilbilde";
-$a->strings["View Full Size"] = "Vis i full størrelse";
-$a->strings["Tags: "] = "Tagger:";
-$a->strings["[Remove any tag]"] = "[Fjern en tag]";
-$a->strings["Rotate CW (right)"] = "Roter med klokka (høyre)";
-$a->strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)";
-$a->strings["New album name"] = "Nytt albumnavn";
-$a->strings["Caption"] = "Overskrift";
-$a->strings["Add a Tag"] = "Legg til tag";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Private photo"] = "Privat bilde";
-$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";
-$a->strings["View Video"] = "Vis video";
-$a->strings["Recent Videos"] = "Nye videoer";
-$a->strings["Upload New Videos"] = "Last opp nye videoer";
-$a->strings["Poke/Prod"] = "Dytt/dult";
-$a->strings["poke, prod or do other things to somebody"] = "dytt, dult eller gjør andre ting med noen";
-$a->strings["Recipient"] = "Mottaker";
-$a->strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren";
-$a->strings["Make this post private"] = "Gjør dette innlegget privat";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s følger %2\$s sin %3\$s";
-$a->strings["Export account"] = "Eksporter konto";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Eksporter din kontos informasjon og kontakter. Bruk denne til å ta en sikkerhetskopi av kontoen din og/eller for å flytte til en annen tjener.";
-$a->strings["Export all"] = "Eksporter alt";
-$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)"] = "Eksporter din kontoinformasjon, kontakter og alle dine elementer som JSON. Det kan bli en svært stor fil, og kan ta lang tid. Bruk denne til å gjøre en full sikkerhetskopi av kontoen din (bilder blir ikke eksportert)";
-$a->strings["Common Friends"] = "Felles venner";
-$a->strings["No contacts in common."] = "Ingen kontakter felles.";
-$a->strings["Image exceeds size limit of %d"] = "Bildets størrelse overstiger størrelsesbegrensningen på %d";
-$a->strings["Wall Photos"] = "Veggbilder";
-$a->strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjæringen mislyktes.";
-$a->strings["Image size reduction [%s] failed."] = "Reduksjon av bildestørrelse [%s] mislyktes.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-last-siden-på-nytt eller slett mellomlagret i nettleseren hvis det nye bildet ikke vises umiddelbart.";
-$a->strings["Unable to process image"] = "Mislyktes med å behandle bilde";
-$a->strings["Upload File:"] = "Last opp fil:";
-$a->strings["Select a profile:"] = "Velg en profil:";
-$a->strings["Upload"] = "Last opp";
-$a->strings["skip this step"] = "hopp over dette steget";
-$a->strings["select a photo from your photo albums"] = "velg et bilde fra dine fotoalbum";
-$a->strings["Crop Image"] = "Beskjær bilde";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster beskjæringen av bildet for optimal visning.";
-$a->strings["Done Editing"] = "Behandling ferdig";
-$a->strings["Image uploaded successfully."] = "Bilde ble lastet opp.";
-$a->strings["Applications"] = "Programmer";
-$a->strings["No installed applications."] = "Ingen installerte programmer.";
-$a->strings["Nothing new here"] = "Ikke noe nytt her";
-$a->strings["Clear notifications"] = "Fjern varslinger";
+$a->strings["No such group"] = "Gruppen finnes ikke";
+$a->strings["Group is empty"] = "Gruppen er tom";
+$a->strings["Group: "] = "Gruppe:";
+$a->strings["View in context"] = "Vis i sammenheng";
+$a->strings["Account approved."] = "Konto godkjent.";
+$a->strings["Registration revoked for %s"] = "Registreringen til  %s er trukket tilbake";
+$a->strings["Please login."] = "Vennligst logg inn.";
 $a->strings["Profile Match"] = "Profiltreff";
 $a->strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord i din standardprofil.";
 $a->strings["is interested in:"] = "er interessert i:";
-$a->strings["Tag removed"] = "Fjernet tag";
-$a->strings["Remove Item Tag"] = "Fjern tag";
-$a->strings["Select a tag to remove: "] = "Velg en tag å fjerne:";
-$a->strings["Remove"] = "Slett";
-$a->strings["Event title and start time are required."] = "Hendelsens tittel og starttidspunkt er påkrevet.";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Rediger hendelse";
-$a->strings["link to source"] = "lenke til kilde";
-$a->strings["Create New Event"] = "Lag ny hendelse";
-$a->strings["Previous"] = "Forrige";
-$a->strings["hour:minute"] = "time:minutt";
-$a->strings["Event details"] = "Hendelsesdetaljer";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "Formatet er  %s %s. Startdato og tittel er påkrevet.";
-$a->strings["Event Starts:"] = "Hendelsen  starter:";
-$a->strings["Required"] = "Påkrevet";
-$a->strings["Finish date/time is not known or not relevant"] = "Avslutningsdato/-tid er ukjent eller ikke relevant";
-$a->strings["Event Finishes:"] = "Hendelsen slutter:";
-$a->strings["Adjust for viewer timezone"] = "Tilpass til iakttakerens tidssone";
-$a->strings["Description:"] = "Beskrivelse:";
-$a->strings["Title:"] = "Tittel:";
-$a->strings["Share this event"] = "Del denne hendelsen";
-$a->strings["No potential page delegates located."] = "Fant ingen potensielle sidedelegater.";
-$a->strings["Delegate Page Management"] = "Deleger sidebehandling";
-$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."] = "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å.";
-$a->strings["Existing Page Managers"] = "Eksisterende sidebehandlere";
-$a->strings["Existing Page Delegates"] = "Eksisterende sidedelegater";
-$a->strings["Potential Delegates"] = "Mulige delegater";
-$a->strings["Add"] = "Legg til";
-$a->strings["No entries."] = "Ingen oppføringer";
-$a->strings["Contacts who are not members of a group"] = "Kontakter som ikke er medlemmer av en gruppe";
-$a->strings["Files"] = "Filer";
-$a->strings["System down for maintenance"] = "Systemet er nede for vedlikehold";
-$a->strings["Remove My Account"] = "Slett min konto";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes.";
-$a->strings["Please enter your password for verification:"] = "Vennligst skriv inn ditt passord for å bekrefte:";
-$a->strings["Friend suggestion sent."] = "Venneforslag sendt.";
-$a->strings["Suggest Friends"] = "Foreslå venner";
-$a->strings["Suggest a friend for %s"] = "Foreslå en venn for %s";
 $a->strings["Unable to locate original post."] = "Mislyktes med å lokalisere opprinnelig melding.";
 $a->strings["Empty post discarded."] = "Tom melding forkastet.";
 $a->strings["System error. Post not saved."] = "Systemfeil. Meldingen ble ikke lagret.";
@@ -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 kan besøke dem online på %s";
 $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Vennligst kontakt avsenderen ved å svare på denne meldingen hvis du ikke ønsker å motta disse meldingene.";
 $a->strings["%s posted an update."] = "%s postet en oppdatering.";
-$a->strings["{0} wants to be your friend"] = "{0} ønsker å bli din venn";
-$a->strings["{0} sent you a message"] = "{0} sendte deg en melding";
-$a->strings["{0} requested registration"] = "{0} forespurte om registrering";
-$a->strings["{0} commented %s's post"] = "{0} kommenterte %s sitt innlegg";
-$a->strings["{0} liked %s's post"] = "{0} likte %s sitt innlegg";
-$a->strings["{0} disliked %s's post"] = "{0} likte ikke %s sitt innlegg";
-$a->strings["{0} is now friends with %s"] = "{0} er nå venner med %s";
-$a->strings["{0} posted"] = "{0} postet et innlegg";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} merket %s sitt innlegg med #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} nevnte deg i et innlegg";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID kom i retur.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Kontoen ble ikke funnet og OpenID-registrering er ikke tillat på dette nettstedet.";
-$a->strings["Login failed."] = "Innlogging mislyktes.";
-$a->strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator.";
-$a->strings["Discard"] = "Forkast";
-$a->strings["System"] = "System";
-$a->strings["Network"] = "Nettverk";
-$a->strings["Introductions"] = "Introduksjoner";
-$a->strings["Show Ignored Requests"] = "Vis ignorerte forespørsler";
-$a->strings["Hide Ignored Requests"] = "Skjul ignorerte forespørsler";
-$a->strings["Notification type: "] = "Beskjedtype:";
-$a->strings["Friend Suggestion"] = "Venneforslag";
-$a->strings["suggested by %s"] = "foreslått av %s";
-$a->strings["Post a new friend activity"] = "Post om en ny venn";
-$a->strings["if applicable"] = "hvis gyldig";
-$a->strings["Claims to be known to you: "] = "Påstår å kjenne deg:";
-$a->strings["yes"] = "ja";
-$a->strings["no"] = "ei";
-$a->strings["Approve as: "] = "Godkjenn som:";
-$a->strings["Friend"] = "Venn";
-$a->strings["Sharer"] = "Deler";
-$a->strings["Fan/Admirer"] = "Fan/Beundrer";
-$a->strings["Friend/Connect Request"] = "Venn/kontakt-forespørsel";
-$a->strings["New Follower"] = "Ny følgesvenn";
-$a->strings["No introductions."] = "Ingen introduksjoner.";
-$a->strings["Notifications"] = "Varslinger";
-$a->strings["%s liked %s's post"] = "%s likte %s sitt innlegg";
-$a->strings["%s disliked %s's post"] = "%s mislikte %s sitt innlegg";
-$a->strings["%s is now friends with %s"] = "%s er nå venner med %s";
-$a->strings["%s created a new post"] = "%s skrev et nytt innlegg";
-$a->strings["%s commented on %s's post"] = "%s kommenterte på %s sitt innlegg";
-$a->strings["No more network notifications."] = "Ingen flere nettverksvarslinger.";
-$a->strings["Network Notifications"] = "Nettverksvarslinger";
-$a->strings["No more personal notifications."] = "Ingen flere personlige varsler.";
-$a->strings["Personal Notifications"] = "Personlige varsler";
-$a->strings["No more home notifications."] = "Ingen flere hjemmevarsler.";
-$a->strings["Home Notifications"] = "Hjemmevarsler";
-$a->strings["Total invitation limit exceeded."] = "Grensen for totalt antall invitasjoner er overskredet.";
-$a->strings["%s : Not a valid email address."] = "%s: Ugyldig e-postadresse.";
-$a->strings["Please join us on Friendica"] = "Vær med oss på Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitasjonsgrense overskredet. Vennligst kontakt administrator på ditt nettsted.";
-$a->strings["%s : Message delivery failed."] = "%s: Mislyktes med å levere meldingen.";
-$a->strings["%d message sent."] = array(
-       0 => "one: %d melding sendt.",
-       1 => "other: %d meldinger sendt.",
-);
-$a->strings["You have no more invitations available"] = "Du har ingen flere tilgjengelige invitasjoner";
-$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."] = "Besøk %s for en liste med offentlige nettsteder du kan bli med i. Friendica-medlemmer ved andre nettsteder kan alle opprette forbindelse til hverandre, og i tillegg til medlemmer av mange andre sosiale nettverk.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "For å akseptere denne invitasjonen, vær så snill å besøk og registrer deg hos %s eller et hvilket som helst annet offentlig Friendica-nettsted.";
-$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-nettsteder er alle forbundet med hverandre for å lage et personvern-forbedret sosialt nettverk  som eies og kontrolleres av medlemmene selv. De kan også forbindes med mange tradisjonelle sosiale nettverk. Se %s for en liste over alternative Friendica-nettsteder du kan bli med i.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer.";
-$a->strings["Send invitations"] = "Send invitasjoner";
-$a->strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:";
-$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 er herved hjertelig invitert til å bli med meg og andre nære venner på Friendica - hjelp oss å skape en bedre sosial web.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du må oppgi denne invitasjonskoden: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Når du har registrert, vennligst kontakt meg via min profilside på:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "For mer informasjon om Friendica-prosjektet og hvorfor vi mener det er viktig, vennligst besøk http://friendica.com";
-$a->strings["Manage Identities and/or Pages"] = "Behandle identiteter og/eller sider";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser";
-$a->strings["Select an identity to manage: "] = "Velg en identitet å behandle:";
-$a->strings["Welcome to %s"] = "Velkommen til %s";
-$a->strings["Friends of %s"] = "Venner av %s";
-$a->strings["No friends to display."] = "Ingen venner å vise.";
-$a->strings["Add New Contact"] = "Legg til ny kontakt";
-$a->strings["Enter address or web location"] = "Skriv adresse eller web-plassering";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Eksempel: ole@eksempel.no, http://eksempel.no/kari";
-$a->strings["%d invitation available"] = array(
-       0 => "%d invitasjon tilgjengelig",
-       1 => "%d invitasjoner tilgjengelig",
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s er for øyeblikket %2\$s";
+$a->strings["Mood"] = "Stemning";
+$a->strings["Set your current mood and tell your friends"] = "Angi din stemning og fortell dine venner";
+$a->strings["Search Results For:"] = "Søkeresultater for:";
+$a->strings["add"] = "legg til";
+$a->strings["Commented Order"] = "Etter kommentarer";
+$a->strings["Sort by Comment Date"] = "Sorter etter kommentardato";
+$a->strings["Posted Order"] = "Etter innlegg";
+$a->strings["Sort by Post Date"] = "Sorter etter innleggsdato";
+$a->strings["Posts that mention or involve you"] = "Innlegg som nevner eller involverer deg";
+$a->strings["New"] = "Ny";
+$a->strings["Activity Stream - by date"] = "Aktivitetsstrøm - etter dato";
+$a->strings["Shared Links"] = "Delte lenker";
+$a->strings["Interesting Links"] = "Interessante lenker";
+$a->strings["Starred"] = "Med stjerne";
+$a->strings["Favourite Posts"] = "Favorittinnlegg";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk.",
+       1 => "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk.",
 );
-$a->strings["Find People"] = "Finn personer";
-$a->strings["Enter name or interest"] = "Skriv navn eller interesse";
-$a->strings["Connect/Follow"] = "Koble/Følg";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Robert Morgenstein, fisking";
-$a->strings["Random Profile"] = "Tilfeldig profil";
-$a->strings["Networks"] = "Nettverk";
-$a->strings["All Networks"] = "Alle nettverk";
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Private meldinger til denne gruppen risikerer å bli offentliggjort.";
+$a->strings["Contact: "] = "Kontakt:";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Private meldinger til denne personen risikerer å bli offentliggjort.";
+$a->strings["Invalid contact."] = "Ugyldig kontakt.";
+$a->strings["Contact settings applied."] = "Kontaktinnstillinger i bruk.";
+$a->strings["Contact update failed."] = "Kontaktoppdatering mislyktes.";
+$a->strings["Repair Contact Settings"] = "Reparer kontaktinnstillinger";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ADVARSEL: Dette er meget avansert</strong> og hvis du skriver feil informasjon her, så kan kommunikasjonen med denne kontakten slutte å virke.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Vennligst bruk Tilbake-knappen i nettleseren din <strong>nå</strong> hvis du er usikker på hva du bør gjøre på denne siden.";
+$a->strings["Return to contact editor"] = "Gå tilbake til å endre kontakt";
+$a->strings["Account Nickname"] = "Konto Kallenavn";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Merkelappnavn - overstyrer Navn/Kallenavn";
+$a->strings["Account URL"] = "Konto URL";
+$a->strings["Friend Request URL"] = "Venneforespørsel URL";
+$a->strings["Friend Confirm URL"] = "Vennebekreftelse URL";
+$a->strings["Notification Endpoint URL"] = "Endepunkt URL for beskjed";
+$a->strings["Poll/Feed URL"] = "Poll/Feed URL";
+$a->strings["New photo from this URL"] = "Nytt bilde fra denne URL-en";
+$a->strings["Remote Self"] = "Fjernbetjent selv";
+$a->strings["Mirror postings from this contact"] = "Speil innlegg fra denne kontakten";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Merk denne kontakten som remote_self, da vil Friendica omposte nye innlegg fra denne kontakten.";
+$a->strings["Your posts and conversations"] = "Dine innlegg og samtaler";
+$a->strings["Your profile page"] = "Din profilside";
+$a->strings["Your contacts"] = "Dine kontakter";
+$a->strings["Your photos"] = "Dine bilder";
+$a->strings["Your events"] = "Dine hendelser";
+$a->strings["Personal notes"] = "Personlige notater";
+$a->strings["Your personal photos"] = "Dine personlige bilder";
+$a->strings["Community Pages"] = "Felleskapssider";
+$a->strings["Community Profiles"] = "Fellesskapsprofiler";
+$a->strings["Last users"] = "Siste brukere";
+$a->strings["Last likes"] = "Siste liker";
+$a->strings["event"] = "hendelse";
+$a->strings["Last photos"] = "Siste bilder";
+$a->strings["Find Friends"] = "Finn venner";
+$a->strings["Local Directory"] = "Lokal katalog";
+$a->strings["Similar Interests"] = "Liknende interesser";
+$a->strings["Invite Friends"] = "Inviterer venner";
+$a->strings["Earth Layers"] = "Earth Layers";
+$a->strings["Set zoomfactor for Earth Layers"] = "Angi zoomfaktor for Earth Layers";
+$a->strings["Set longitude (X) for Earth Layers"] = "Angi lengdegrad (X) for Earth Layers";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Angi breddegrad (Y) for Earth Layers";
+$a->strings["Help or @NewHere ?"] = "Hjelp eller @NewHere ?";
+$a->strings["Connect Services"] = "Forbindelse til tjenester";
+$a->strings["don't show"] = "ikke vis";
+$a->strings["show"] = "vis";
+$a->strings["Show/hide boxes at right-hand column:"] = "Vis/skjul bokser i kolonnen til høyre:";
+$a->strings["Theme settings"] = "Temainnstillinger";
+$a->strings["Set font-size for posts and comments"] = "Angi skriftstørrelse for innlegg og kommentarer";
+$a->strings["Set line-height for posts and comments"] = "Angi linjeavstand for innlegg og kommentarer";
+$a->strings["Set resolution for middle column"] = "Angi oppløsning for midtkolonnen";
+$a->strings["Set color scheme"] = "Angi fargekart";
+$a->strings["Set zoomfactor for Earth Layer"] = "Angi zoomfaktor for Earth Layer";
+$a->strings["Set style"] = "Angi stil";
+$a->strings["Set colour scheme"] = "Angi fargekart";
+$a->strings["Alignment"] = "Justering";
+$a->strings["Left"] = "Venstre";
+$a->strings["Center"] = "Midtstilt";
+$a->strings["Color scheme"] = "Fargekart";
+$a->strings["Posts font size"] = "Skriftstørrelse for innlegg";
+$a->strings["Textareas font size"] = "Skriftstørrelse for tekstområder";
+$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["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.";
+$a->strings["Update Error at %s"] = "Oppdateringsfeil i %s";
+$a->strings["Create a New Account"] = "Lag en ny konto";
+$a->strings["Logout"] = "Logg ut";
+$a->strings["Login"] = "Logg inn";
+$a->strings["Nickname or Email address: "] = "Kallenavn eller epostadresse: ";
+$a->strings["Password: "] = "Passord: ";
+$a->strings["Remember me"] = "Husk meg";
+$a->strings["Or login using OpenID: "] = "Eller logg inn med OpenID:";
+$a->strings["Forgot your password?"] = "Glemt passordet?";
+$a->strings["Website Terms of Service"] = "Nettstedets bruksbetingelser";
+$a->strings["terms of service"] = "bruksbetingelser";
+$a->strings["Website Privacy Policy"] = "Nettstedets retningslinjer for personvern";
+$a->strings["privacy policy"] = "retningslinjer for personvern";
+$a->strings["Requested account is not available."] = "Profil utilgjengelig.";
+$a->strings["Edit profile"] = "Rediger profil";
+$a->strings["Message"] = "Melding";
+$a->strings["Profiles"] = "Profiler";
+$a->strings["Manage/edit profiles"] = "Behandle/endre profiler";
+$a->strings["g A l F d"] = "g A l F d";
+$a->strings["F d"] = "F d";
+$a->strings["[today]"] = "[idag]";
+$a->strings["Birthday Reminders"] = "Fødselsdager";
+$a->strings["Birthdays this week:"] = "Fødselsdager denne uken:";
+$a->strings["[No description]"] = "[Ingen beskrivelse]";
+$a->strings["Event Reminders"] = "Påminnelser om hendelser";
+$a->strings["Events this week:"] = "Hendelser denne uken:";
+$a->strings["Status"] = "Status";
+$a->strings["Status Messages and Posts"] = "Status meldinger og innlegg";
+$a->strings["Profile Details"] = "Profildetaljer";
+$a->strings["Videos"] = "Videoer";
+$a->strings["Events and Calendar"] = "Hendelser og kalender";
+$a->strings["Only You Can See This"] = "Bare du kan se dette";
+$a->strings["General Features"] = "Generelle egenskaper";
+$a->strings["Multiple Profiles"] = "Flere profiler";
+$a->strings["Ability to create multiple profiles"] = "Mulighet for å lage flere profiler";
+$a->strings["Post Composition Features"] = "Funksjoner for å skrive innlegg";
+$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";
+$a->strings["Group Filter"] = "Gruppefilter";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Skru på småprogrammet som viser Nettverksinnlegg bare fra den valgte gruppen";
+$a->strings["Network Filter"] = "Nettverksfilter";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Skru på småprogrammet for å vise Nettverksinnlegg bare fra valgt nettverk";
+$a->strings["Save search terms for re-use"] = "Lagre søkeuttrykk for gjenbruk";
+$a->strings["Network Tabs"] = "Nettverksfaner";
+$a->strings["Network Personal Tab"] = "Nettverk personlig fane";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Skru på fane for å vise bare Nettverksinnlegg som du har vært med i";
+$a->strings["Network New Tab"] = "Nettverk Ny fane";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Skru på fane for å vise bare nye Nettverksinnlegg (fra de siste 12 timer)";
+$a->strings["Network Shared Links Tab"] = "Nettverk Delte lenker fane";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Skru på fane for å vise bare Nettverksinnlegg med lenker i dem";
+$a->strings["Post/Comment Tools"] = "Innleggs-/kommentarverktøy";
+$a->strings["Multiple Deletion"] = "Slett flere";
+$a->strings["Select and delete multiple posts/comments at once"] = "Velg og slett flere innlegg/kommentarer på en gang";
+$a->strings["Edit Sent Posts"] = "Endre sendte innlegg";
+$a->strings["Edit and correct posts and comments after sending"] = "Endre og korriger innlegg og kommentarer etter sending";
+$a->strings["Tagging"] = "Merking";
+$a->strings["Ability to tag existing posts"] = "Mulighet til å merke eksisterende innlegg";
+$a->strings["Post Categories"] = "Innleggskategorier";
+$a->strings["Add categories to your posts"] = "Legg til kategorier til dine innlegg";
 $a->strings["Saved Folders"] = "Lagrede mapper";
-$a->strings["Everything"] = "Alt";
-$a->strings["Categories"] = "Kategorier";
-$a->strings["Click here to upgrade."] = "Klikk her for oppgradere.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen overstiger grensene satt i din abonnementsplan.";
-$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:";
-$a->strings["(no subject)"] = "(uten emne)";
-$a->strings["noreply"] = "ikke svar";
-$a->strings["An invitation is required."] = "En invitasjon er nødvendig.";
-$a->strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes.";
-$a->strings["Invalid OpenID url"] = "Ugyldig OpenID URL";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med OpenID-en du oppgav. Vennligst sjekk at du stavet ID-en riktig.";
-$a->strings["The error message was:"] = "Feilmeldingen var:";
-$a->strings["Please enter the required information."] = "Vennligst skriv inn den nødvendige informasjonen.";
-$a->strings["Please use a shorter name."] = "Vennligst bruk et kortere navn.";
-$a->strings["Name too short."] = "Navnet er for kort.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn).";
-$a->strings["Your email domain is not among those allowed on this site."] = "Ditt e-postdomene er ikke blant de som er tillat på dette stedet.";
-$a->strings["Not a valid email address."] = "Ugyldig e-postadresse.";
-$a->strings["Cannot use that email."] = "Kan ikke bruke den e-postadressen.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav.";
-$a->strings["Nickname is already registered. Please choose another."] = "Kallenavnet er allerede registrert. Vennligst velg et annet.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Kallenavnet ble registrert her en gang og kan ikke brukes om igjen. Vennligst velg et annet.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler.";
-$a->strings["An error occurred during registration. Please try again."] = "En feil oppstod under registreringen. Vennligst prøv igjen.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen.";
-$a->strings["Friends"] = "Venner";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s dyttet %2\$s";
-$a->strings["poked"] = "dyttet";
-$a->strings["post/item"] = "innlegg/element";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s merket %2\$s's %3\$s som en favoritt";
-$a->strings["remove"] = "slett";
-$a->strings["Delete Selected Items"] = "Slette valgte elementer";
-$a->strings["Follow Thread"] = "Følg tråd";
-$a->strings["View Status"] = "Vis status";
-$a->strings["View Profile"] = "Vis profil";
-$a->strings["View Photos"] = "Vis bilder";
-$a->strings["Network Posts"] = "Nettverksinnlegg";
-$a->strings["Edit Contact"] = "Endre kontakt";
-$a->strings["Send PM"] = "Send privat melding";
-$a->strings["Poke"] = "Dytt";
-$a->strings["%s likes this."] = "%s liker dette.";
-$a->strings["%s doesn't like this."] = "%s liker ikke dette.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d personer</span> liker dette";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span %1\$s>%2\$d personer</span> liker ikke dette";
-$a->strings["and"] = "og";
-$a->strings[", and %d other people"] = ", og %d andre personer";
-$a->strings["%s like this."] = "%s liker dette.";
-$a->strings["%s don't like this."] = "%s liker ikke dette.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Synlig for <strong>alle</strong>";
-$a->strings["Please enter a video link/URL:"] = "Vennligst skriv inn en videolenke/-URL:";
-$a->strings["Please enter an audio link/URL:"] = "Vennligst skriv inn en lydlenke/-URL:";
-$a->strings["Tag term:"] = "Merkelapp begrep:";
-$a->strings["Where are you right now?"] = "Hvor er du akkurat nå?";
-$a->strings["Delete item(s)?"] = "Slett element(er)?";
-$a->strings["Post to Email"] = "Innlegg til e-post";
-$a->strings["permissions"] = "tillatelser";
-$a->strings["Post to Groups"] = "Innlegg til grupper";
-$a->strings["Post to Contacts"] = "Innlegg til kontakter";
-$a->strings["Private post"] = "Privat innlegg";
+$a->strings["Ability to file posts under folders"] = "Mulighet til å sortere innlegg i mapper";
+$a->strings["Dislike Posts"] = "Liker ikke innlegg";
+$a->strings["Ability to dislike posts/comments"] = "Mulighet til å ikke like innlegg/kommentarer";
+$a->strings["Star Posts"] = "Stjerneinnlegg";
+$a->strings["Ability to mark special posts with a star indicator"] = "Mulighet til å merke spesielle innlegg med en stjerneindikator";
 $a->strings["Logged out."] = "Logget ut.";
-$a->strings["Error decoding account file"] = "Feil ved dekoding av kontofil";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Feil! Ingen versjonsdata i filen! Dette er ikke en Friendica kontofil?";
-$a->strings["Error! Cannot check nickname"] = "Feil! Kan ikke sjekke kallenavn";
-$a->strings["User '%s' already exists on this server!"] = "Brukeren '%s' finnes allerede på denne tjeneren!";
-$a->strings["User creation error"] = "Feil ved oppretting av bruker";
-$a->strings["User profile creation error"] = "Feil ved opprettelsen av brukerprofil";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d kontakt ikke importert",
-       1 => "%d kontakter ikke importert",
-);
-$a->strings["Done. You can now login with your username and password"] = "Ferdig. Du kan nå logge inn med ditt brukernavn og passord";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med OpenID-en du oppgav. Vennligst sjekk at du stavet ID-en riktig.";
+$a->strings["The error message was:"] = "Feilmeldingen var:";
+$a->strings["Starts:"] = "Starter:";
+$a->strings["Finishes:"] = "Slutter:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Fødselsdag:";
+$a->strings["Age:"] = "Alder:";
+$a->strings["for %1\$d %2\$s"] = "for %1\$d %2\$s";
+$a->strings["Tags:"] = "Merkelapper:";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["Hobbies/Interests:"] = "Hobbyer/Interesser:";
+$a->strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:";
+$a->strings["Musical interests:"] = "Musikksmak:";
+$a->strings["Books, literature:"] = "Bøker, litteratur:";
+$a->strings["Television:"] = "TV:";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:";
+$a->strings["Love/Romance:"] = "Kjærlighet/romanse:";
+$a->strings["Work/employment:"] = "Arbeid/ansatt hos:";
+$a->strings["School/education:"] = "Skole/utdanning:";
+$a->strings["[no subject]"] = "[ikke noe emne]";
+$a->strings[" on Last.fm"] = "på Last.fm";
 $a->strings["newer"] = "nyere";
 $a->strings["older"] = "eldre";
 $a->strings["prev"] = "forrige";
@@ -1388,6 +1354,7 @@ $a->strings["%d Contact"] = array(
        1 => "%d kontakter",
 );
 $a->strings["poke"] = "dytt";
+$a->strings["poked"] = "dyttet";
 $a->strings["ping"] = "ping";
 $a->strings["pinged"] = "pinget";
 $a->strings["prod"] = "dult";
@@ -1415,234 +1382,61 @@ $a->strings["anxious"] = "nervøs";
 $a->strings["cranky"] = "grinete";
 $a->strings["disturbed"] = "forstyrret";
 $a->strings["frustrated"] = "frustrert";
-$a->strings["motivated"] = "motivert";
-$a->strings["relaxed"] = "avslappet";
-$a->strings["surprised"] = "overrasket";
-$a->strings["Monday"] = "mandag";
-$a->strings["Tuesday"] = "tirsdag";
-$a->strings["Wednesday"] = "onsdag";
-$a->strings["Thursday"] = "torsdag";
-$a->strings["Friday"] = "fredag";
-$a->strings["Saturday"] = "lørdag";
-$a->strings["Sunday"] = "søndag";
-$a->strings["January"] = "januar";
-$a->strings["February"] = "februar";
-$a->strings["March"] = "mars";
-$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"] = "desember";
-$a->strings["bytes"] = "bytes";
-$a->strings["Click to open/close"] = "Klikk for å åpne/lukke";
-$a->strings["Select an alternate language"] = "Velg et annet språk";
-$a->strings["activity"] = "aktivitet";
-$a->strings["post"] = "innlegg";
-$a->strings["Item filed"] = "Element arkivert";
-$a->strings["Friendica Notification"] = "Friendica varsel";
-$a->strings["Thank You,"] = "Mange takk,";
-$a->strings["%s Administrator"] = "%s administrator";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Ny melding mottatt hos %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sendte deg en ny privat melding hos %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s sendte deg %2\$s.";
-$a->strings["a private message"] = "en privat melding";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Vennligst besøk %s for å se og/eller svare på dine private meldinger.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommenterte på [url=%2\$s]a %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommenterte på [url=%2\$s]%3\$s sin %4\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommenterte på [url=%2\$s] din %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Kommentar til samtale #%1\$d av %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s kommenterte på et element/en samtale du har fulgt.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Vennligst besøk %s for å se og/eller svare på samtalen.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s skrev et innlegg på veggen til din profil";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s skrev et innlegg på veggen til din profil %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s skrev et innlegg til [url=%2\$s]din vegg[/url]";
-$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].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s merket ditt innlegg";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s merket ditt innlegg %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s merket [url=%2\$s]ditt innlegg[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Introduksjon mottatt";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du mottok en introduksjon fra '%1\$s'  %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du mottok [url=%1\$s]en introduksjon[/url] fra %2\$s.";
-$a->strings["You may visit their profile at %s"] = "Du kan besøke profilen deres på %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Vennligst besøk %s for å godkjenne eller avslå introduksjonen.";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Venneforslag mottatt";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du mottok et venneforslag fra '%1\$s'  %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du mottok  [url=%1\$s]et venneforslag[/url] om %2\$s fra %3\$s.";
-$a->strings["Name:"] = "Navn:";
-$a->strings["Photo:"] = "Bilde:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Vennligst besøk %s for å godkjenne eller avslå forslaget.";
-$a->strings[" on Last.fm"] = "på 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."] = "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende elementtillatelser <strong>kan</strong> gjelde for denne gruppen og fremtidige medlemmer. Hvis det ikke var dette du ønsket, vær snill å opprette en annen gruppe med et annet navn.";
-$a->strings["Default privacy group for new contacts"] = "Standard personverngruppe for nye kontakter";
-$a->strings["Everybody"] = "Alle";
-$a->strings["edit"] = "endre";
-$a->strings["Edit group"] = "Endre gruppe";
-$a->strings["Create a new group"] = "Lag en ny gruppe";
-$a->strings["Contacts not in any group"] = "Kontakter som ikke er i noen gruppe";
-$a->strings["Connect URL missing."] = "Forbindelses-URL mangler.";
-$a->strings["This site is not configured to allow communications with other networks."] = "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget.";
-$a->strings["The profile address specified does not provide adequate information."] = "Den angitte profiladressen inneholder for lite information.";
-$a->strings["An author or name was not found."] = "Fant ingen forfatter eller navn.";
-$a->strings["No browser URL could be matched to this address."] = "Ingen nettleser-URL passet med denne adressen.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Finner ikke samsvar mellom @-stilens identitetsadresse og en kjent protokoll eller e-postkontakt.";
-$a->strings["Use mailto: in front of address to force email check."] = "Bruk mailto: foran adresser for å tvinge e-postsjekk.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg.";
-$a->strings["Unable to retrieve contact information."] = "Ikke i stand til å hente kontaktinformasjon.";
-$a->strings["following"] = "følger";
-$a->strings["[no subject]"] = "[ikke noe emne]";
-$a->strings["End this session"] = "Avslutt denne økten";
-$a->strings["Sign in"] = "Logg inn";
-$a->strings["Home Page"] = "Hovedside";
-$a->strings["Create an account"] = "Lag konto";
-$a->strings["Help and documentation"] = "Hjelp og dokumentasjon";
-$a->strings["Apps"] = "Programmer";
-$a->strings["Addon applications, utilities, games"] = "Tilleggsprorammer, verktøy, spill";
-$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";
-$a->strings["Friend Requests"] = "Venneforespørsler";
-$a->strings["See all notifications"] = "Se alle varslinger";
-$a->strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett";
-$a->strings["Private mail"] = "Privat post";
-$a->strings["Inbox"] = "Innboks";
-$a->strings["Outbox"] = "Utboks";
-$a->strings["Manage"] = "Behandle";
-$a->strings["Manage other pages"] = "Behandle andre sider";
-$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";
-$a->strings["Navigation"] = "Navigasjon";
-$a->strings["Site map"] = "Nettstedskart";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Fødselsdag:";
-$a->strings["Age:"] = "Alder:";
-$a->strings["for %1\$d %2\$s"] = "for %1\$d %2\$s";
-$a->strings["Tags:"] = "Merkelapper:";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["Hobbies/Interests:"] = "Hobbyer/Interesser:";
-$a->strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:";
-$a->strings["Musical interests:"] = "Musikksmak:";
-$a->strings["Books, literature:"] = "Bøker, litteratur:";
-$a->strings["Television:"] = "TV:";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:";
-$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=\"_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";
-$a->strings["Block immediately"] = "Blokker umiddelbart";
-$a->strings["Shady, spammer, self-marketer"] = "Grumsete, poster søppel, fremhever bare seg selv";
-$a->strings["Known to me, but no opinion"] = "Bekjent av meg, men har ingen mening";
-$a->strings["OK, probably harmless"] = "OK, antakelig harmløs";
-$a->strings["Reputable, has my trust"] = "Respektert, har min tillit";
-$a->strings["Weekly"] = "Ukentlig";
-$a->strings["Monthly"] = "Månedlig";
-$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-forbindelse";
-$a->strings["Statusnet"] = "StatusNet";
-$a->strings["Miscellaneous"] = "Diverse";
-$a->strings["year"] = "år";
-$a->strings["month"] = "måned";
-$a->strings["day"] = "dag";
-$a->strings["never"] = "aldri";
-$a->strings["less than a second ago"] = "for mindre enn ett sekund siden";
-$a->strings["years"] = "år";
-$a->strings["months"] = "måneder";
-$a->strings["week"] = "uke";
-$a->strings["weeks"] = "uker";
-$a->strings["days"] = "dager";
-$a->strings["hour"] = "time";
-$a->strings["hours"] = "timer";
-$a->strings["minute"] = "minutt";
-$a->strings["minutes"] = "minutter";
-$a->strings["second"] = "sekund";
-$a->strings["seconds"] = "sekunder";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s siden";
-$a->strings["%s's birthday"] = "%s sin bursdag";
-$a->strings["Happy Birthday %s"] = "Gratulerer med dagen, %s";
-$a->strings["General Features"] = "Generelle egenskaper";
-$a->strings["Multiple Profiles"] = "Flere profiler";
-$a->strings["Ability to create multiple profiles"] = "Mulighet for å lage flere profiler";
-$a->strings["Post Composition Features"] = "Funksjoner for å skrive innlegg";
-$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";
-$a->strings["Group Filter"] = "Gruppefilter";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Skru på småprogrammet som viser Nettverksinnlegg bare fra den valgte gruppen";
-$a->strings["Network Filter"] = "Nettverksfilter";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Skru på småprogrammet for å vise Nettverksinnlegg bare fra valgt nettverk";
-$a->strings["Save search terms for re-use"] = "Lagre søkeuttrykk for gjenbruk";
-$a->strings["Network Tabs"] = "Nettverksfaner";
-$a->strings["Network Personal Tab"] = "Nettverk personlig fane";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Skru på fane for å vise bare Nettverksinnlegg som du har vært med i";
-$a->strings["Network New Tab"] = "Nettverk Ny fane";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Skru på fane for å vise bare nye Nettverksinnlegg (fra de siste 12 timer)";
-$a->strings["Network Shared Links Tab"] = "Nettverk Delte lenker fane";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Skru på fane for å vise bare Nettverksinnlegg med lenker i dem";
-$a->strings["Post/Comment Tools"] = "Innleggs-/kommentarverktøy";
-$a->strings["Multiple Deletion"] = "Slett flere";
-$a->strings["Select and delete multiple posts/comments at once"] = "Velg og slett flere innlegg/kommentarer på en gang";
-$a->strings["Edit Sent Posts"] = "Endre sendte innlegg";
-$a->strings["Edit and correct posts and comments after sending"] = "Endre og korriger innlegg og kommentarer etter sending";
-$a->strings["Tagging"] = "Merking";
-$a->strings["Ability to tag existing posts"] = "Mulighet til å merke eksisterende innlegg";
-$a->strings["Post Categories"] = "Innleggskategorier";
-$a->strings["Add categories to your posts"] = "Legg til kategorier til dine innlegg";
-$a->strings["Ability to file posts under folders"] = "Mulighet til å sortere innlegg i mapper";
-$a->strings["Dislike Posts"] = "Liker ikke innlegg";
-$a->strings["Ability to dislike posts/comments"] = "Mulighet til å ikke like innlegg/kommentarer";
-$a->strings["Star Posts"] = "Stjerneinnlegg";
-$a->strings["Ability to mark special posts with a star indicator"] = "Mulighet til å merke spesielle innlegg med en stjerneindikator";
-$a->strings["Sharing notification from Diaspora network"] = "Dele varslinger fra Diaspora nettverket";
-$a->strings["Attachments:"] = "Vedlegg:";
-$a->strings["Visible to everybody"] = "Synlig for alle";
+$a->strings["motivated"] = "motivert";
+$a->strings["relaxed"] = "avslappet";
+$a->strings["surprised"] = "overrasket";
+$a->strings["Monday"] = "mandag";
+$a->strings["Tuesday"] = "tirsdag";
+$a->strings["Wednesday"] = "onsdag";
+$a->strings["Thursday"] = "torsdag";
+$a->strings["Friday"] = "fredag";
+$a->strings["Saturday"] = "lørdag";
+$a->strings["Sunday"] = "søndag";
+$a->strings["January"] = "januar";
+$a->strings["February"] = "februar";
+$a->strings["March"] = "mars";
+$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"] = "desember";
+$a->strings["bytes"] = "bytes";
+$a->strings["Click to open/close"] = "Klikk for å åpne/lukke";
+$a->strings["default"] = "standard";
+$a->strings["Select an alternate language"] = "Velg et annet språk";
+$a->strings["activity"] = "aktivitet";
+$a->strings["post"] = "innlegg";
+$a->strings["Item filed"] = "Element arkivert";
+$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["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS informasjon for databasetjeneren '%s' ";
+$a->strings["%s's birthday"] = "%s sin bursdag";
+$a->strings["Happy Birthday %s"] = "Gratulerer med dagen, %s";
 $a->strings["A new person is sharing with you at "] = "En ny person deler med deg hos";
 $a->strings["You have a new follower at "] = "Du har en ny følgesvenn på ";
 $a->strings["Do you really want to delete this item?"] = "Ønsker du virkelig å slette dette elementet?";
 $a->strings["Archives"] = "Arkiverer";
-$a->strings["Embedded content"] = "Innebygd innhold";
-$a->strings["Embedding disabled"] = "Innebygging avskrudd";
+$a->strings["(no subject)"] = "(uten emne)";
+$a->strings["noreply"] = "ikke svar";
+$a->strings["Sharing notification from Diaspora network"] = "Dele varslinger fra Diaspora nettverket";
+$a->strings["Attachments:"] = "Vedlegg:";
+$a->strings["Connect URL missing."] = "Forbindelses-URL mangler.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget.";
+$a->strings["The profile address specified does not provide adequate information."] = "Den angitte profiladressen inneholder for lite information.";
+$a->strings["An author or name was not found."] = "Fant ingen forfatter eller navn.";
+$a->strings["No browser URL could be matched to this address."] = "Ingen nettleser-URL passet med denne adressen.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Finner ikke samsvar mellom @-stilens identitetsadresse og en kjent protokoll eller e-postkontakt.";
+$a->strings["Use mailto: in front of address to force email check."] = "Bruk mailto: foran adresser for å tvinge e-postsjekk.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg.";
+$a->strings["Unable to retrieve contact information."] = "Ikke i stand til å hente kontaktinformasjon.";
+$a->strings["following"] = "følger";
 $a->strings["Welcome "] = "Velkommen";
 $a->strings["Please upload a profile photo."] = "Vennligst last opp et profilbilde.";
 $a->strings["Welcome back "] = "Velkommen tilbake";
@@ -1683,6 +1477,7 @@ $a->strings["Infatuated"] = "Betatt";
 $a->strings["Dating"] = "Stevnemøter/dater";
 $a->strings["Unfaithful"] = "Utro";
 $a->strings["Sex Addict"] = "Sexavhengig";
+$a->strings["Friends"] = "Venner";
 $a->strings["Friends/Benefits"] = "Venner med fordeler";
 $a->strings["Casual"] = "Tilfeldig";
 $a->strings["Engaged"] = "Forlovet";
@@ -1704,6 +1499,208 @@ $a->strings["Uncertain"] = "Usikker";
 $a->strings["It's complicated"] = "Det er komplisert";
 $a->strings["Don't care"] = "Uinteressert";
 $a->strings["Ask me"] = "Spør meg";
+$a->strings["Error decoding account file"] = "Feil ved dekoding av kontofil";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Feil! Ingen versjonsdata i filen! Dette er ikke en Friendica kontofil?";
+$a->strings["Error! Cannot check nickname"] = "Feil! Kan ikke sjekke kallenavn";
+$a->strings["User '%s' already exists on this server!"] = "Brukeren '%s' finnes allerede på denne tjeneren!";
+$a->strings["User creation error"] = "Feil ved oppretting av bruker";
+$a->strings["User profile creation error"] = "Feil ved opprettelsen av brukerprofil";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d kontakt ikke importert",
+       1 => "%d kontakter ikke importert",
+);
+$a->strings["Done. You can now login with your username and password"] = "Ferdig. Du kan nå logge inn med ditt brukernavn og passord";
+$a->strings["Click here to upgrade."] = "Klikk her for oppgradere.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen overstiger grensene satt i din abonnementsplan.";
+$a->strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i henhold til din abonnementsplan.";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s dyttet %2\$s";
+$a->strings["post/item"] = "innlegg/element";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s merket %2\$s's %3\$s som en favoritt";
+$a->strings["remove"] = "slett";
+$a->strings["Delete Selected Items"] = "Slette valgte elementer";
+$a->strings["Follow Thread"] = "Følg tråd";
+$a->strings["View Status"] = "Vis status";
+$a->strings["View Profile"] = "Vis profil";
+$a->strings["View Photos"] = "Vis bilder";
+$a->strings["Network Posts"] = "Nettverksinnlegg";
+$a->strings["Edit Contact"] = "Endre kontakt";
+$a->strings["Send PM"] = "Send privat melding";
+$a->strings["Poke"] = "Dytt";
+$a->strings["%s likes this."] = "%s liker dette.";
+$a->strings["%s doesn't like this."] = "%s liker ikke dette.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d personer</span> liker dette";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span %1\$s>%2\$d personer</span> liker ikke dette";
+$a->strings["and"] = "og";
+$a->strings[", and %d other people"] = ", og %d andre personer";
+$a->strings["%s like this."] = "%s liker dette.";
+$a->strings["%s don't like this."] = "%s liker ikke dette.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Synlig for <strong>alle</strong>";
+$a->strings["Please enter a video link/URL:"] = "Vennligst skriv inn en videolenke/-URL:";
+$a->strings["Please enter an audio link/URL:"] = "Vennligst skriv inn en lydlenke/-URL:";
+$a->strings["Tag term:"] = "Merkelapp begrep:";
+$a->strings["Where are you right now?"] = "Hvor er du akkurat nå?";
+$a->strings["Delete item(s)?"] = "Slett element(er)?";
+$a->strings["Post to Email"] = "Innlegg til e-post";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Koblinger avskrudd, siden \"%s\" er påskrudd.";
+$a->strings["permissions"] = "tillatelser";
+$a->strings["Post to Groups"] = "Innlegg til grupper";
+$a->strings["Post to Contacts"] = "Innlegg til kontakter";
+$a->strings["Private post"] = "Privat innlegg";
+$a->strings["Add New Contact"] = "Legg til ny kontakt";
+$a->strings["Enter address or web location"] = "Skriv adresse eller web-plassering";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Eksempel: ole@eksempel.no, http://eksempel.no/kari";
+$a->strings["%d invitation available"] = array(
+       0 => "%d invitasjon tilgjengelig",
+       1 => "%d invitasjoner tilgjengelig",
+);
+$a->strings["Find People"] = "Finn personer";
+$a->strings["Enter name or interest"] = "Skriv navn eller interesse";
+$a->strings["Connect/Follow"] = "Koble/Følg";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Robert Morgenstein, fisking";
+$a->strings["Random Profile"] = "Tilfeldig profil";
+$a->strings["Networks"] = "Nettverk";
+$a->strings["All Networks"] = "Alle nettverk";
+$a->strings["Everything"] = "Alt";
+$a->strings["Categories"] = "Kategorier";
+$a->strings["End this session"] = "Avslutt denne økten";
+$a->strings["Sign in"] = "Logg inn";
+$a->strings["Home Page"] = "Hovedside";
+$a->strings["Create an account"] = "Lag konto";
+$a->strings["Help and documentation"] = "Hjelp og dokumentasjon";
+$a->strings["Apps"] = "Programmer";
+$a->strings["Addon applications, utilities, games"] = "Tilleggsprorammer, verktøy, spill";
+$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";
+$a->strings["Friend Requests"] = "Venneforespørsler";
+$a->strings["See all notifications"] = "Se alle varslinger";
+$a->strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett";
+$a->strings["Private mail"] = "Privat post";
+$a->strings["Inbox"] = "Innboks";
+$a->strings["Outbox"] = "Utboks";
+$a->strings["Manage"] = "Behandle";
+$a->strings["Manage other pages"] = "Behandle andre sider";
+$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";
+$a->strings["Navigation"] = "Navigasjon";
+$a->strings["Site map"] = "Nettstedskart";
+$a->strings["Unknown | Not categorised"] = "Ukjent | Ikke kategorisert";
+$a->strings["Block immediately"] = "Blokker umiddelbart";
+$a->strings["Shady, spammer, self-marketer"] = "Grumsete, poster søppel, fremhever bare seg selv";
+$a->strings["Known to me, but no opinion"] = "Bekjent av meg, men har ingen mening";
+$a->strings["OK, probably harmless"] = "OK, antakelig harmløs";
+$a->strings["Reputable, has my trust"] = "Respektert, har min tillit";
+$a->strings["Weekly"] = "Ukentlig";
+$a->strings["Monthly"] = "Månedlig";
+$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-forbindelse";
+$a->strings["Statusnet"] = "StatusNet";
+$a->strings["Friendica Notification"] = "Friendica varsel";
+$a->strings["Thank You,"] = "Mange takk,";
+$a->strings["%s Administrator"] = "%s administrator";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Ny melding mottatt hos %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sendte deg en ny privat melding hos %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s sendte deg %2\$s.";
+$a->strings["a private message"] = "en privat melding";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Vennligst besøk %s for å se og/eller svare på dine private meldinger.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommenterte på [url=%2\$s]a %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommenterte på [url=%2\$s]%3\$s sin %4\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommenterte på [url=%2\$s] din %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Kommentar til samtale #%1\$d av %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s kommenterte på et element/en samtale du har fulgt.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Vennligst besøk %s for å se og/eller svare på samtalen.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s skrev et innlegg på veggen til din profil";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s skrev et innlegg på veggen til din profil %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s skrev et innlegg til [url=%2\$s]din vegg[/url]";
+$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].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s merket ditt innlegg";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s merket ditt innlegg %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s merket [url=%2\$s]ditt innlegg[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Introduksjon mottatt";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du mottok en introduksjon fra '%1\$s'  %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du mottok [url=%1\$s]en introduksjon[/url] fra %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Du kan besøke profilen deres på %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Vennligst besøk %s for å godkjenne eller avslå introduksjonen.";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Venneforslag mottatt";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du mottok et venneforslag fra '%1\$s'  %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du mottok  [url=%1\$s]et venneforslag[/url] om %2\$s fra %3\$s.";
+$a->strings["Name:"] = "Navn:";
+$a->strings["Photo:"] = "Bilde:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Vennligst besøk %s for å godkjenne eller avslå forslaget.";
+$a->strings["An invitation is required."] = "En invitasjon er nødvendig.";
+$a->strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes.";
+$a->strings["Invalid OpenID url"] = "Ugyldig OpenID URL";
+$a->strings["Please enter the required information."] = "Vennligst skriv inn den nødvendige informasjonen.";
+$a->strings["Please use a shorter name."] = "Vennligst bruk et kortere navn.";
+$a->strings["Name too short."] = "Navnet er for kort.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn).";
+$a->strings["Your email domain is not among those allowed on this site."] = "Ditt e-postdomene er ikke blant de som er tillat på dette stedet.";
+$a->strings["Not a valid email address."] = "Ugyldig e-postadresse.";
+$a->strings["Cannot use that email."] = "Kan ikke bruke den e-postadressen.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav.";
+$a->strings["Nickname is already registered. Please choose another."] = "Kallenavnet er allerede registrert. Vennligst velg et annet.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Kallenavnet ble registrert her en gang og kan ikke brukes om igjen. Vennligst velg et annet.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler.";
+$a->strings["An error occurred during registration. Please try again."] = "En feil oppstod under registreringen. Vennligst prøv igjen.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen.";
+$a->strings["Visible to everybody"] = "Synlig for alle";
+$a->strings["Image/photo"] = "Bilde/fotografi";
+$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["<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 skrev:";
+$a->strings["Encrypted content"] = "Kryptert innhold";
+$a->strings["Embedded content"] = "Innebygd innhold";
+$a->strings["Embedding disabled"] = "Innebygging avskrudd";
+$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."] = "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende elementtillatelser <strong>kan</strong> gjelde for denne gruppen og fremtidige medlemmer. Hvis det ikke var dette du ønsket, vær snill å opprette en annen gruppe med et annet navn.";
+$a->strings["Default privacy group for new contacts"] = "Standard personverngruppe for nye kontakter";
+$a->strings["Everybody"] = "Alle";
+$a->strings["edit"] = "endre";
+$a->strings["Edit group"] = "Endre gruppe";
+$a->strings["Create a new group"] = "Lag en ny gruppe";
+$a->strings["Contacts not in any group"] = "Kontakter som ikke er i noen gruppe";
 $a->strings["stopped following"] = "sluttet å følge";
 $a->strings["Drop Contact"] = "Fjern kontakt";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS informasjon for databasetjeneren '%s' ";
+$a->strings["Miscellaneous"] = "Diverse";
+$a->strings["year"] = "år";
+$a->strings["month"] = "måned";
+$a->strings["day"] = "dag";
+$a->strings["never"] = "aldri";
+$a->strings["less than a second ago"] = "for mindre enn ett sekund siden";
+$a->strings["years"] = "år";
+$a->strings["months"] = "måneder";
+$a->strings["week"] = "uke";
+$a->strings["weeks"] = "uker";
+$a->strings["days"] = "dager";
+$a->strings["hour"] = "time";
+$a->strings["hours"] = "timer";
+$a->strings["minute"] = "minutt";
+$a->strings["minutes"] = "minutter";
+$a->strings["second"] = "sekund";
+$a->strings["seconds"] = "sekunder";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s siden";
+$a->strings["view full size"] = "Vis i full størrelse";
index 89158fb018bce957cc9c9988b2af202bfa7f13ed..c65016e6cfba1a32fc083ee13917641eb4975f66 100644 (file)
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-12-31 18:07+0100\n"
-"PO-Revision-Date: 2014-03-15 17:44+0000\n"
+"POT-Creation-Date: 2014-05-16 11:05+0200\n"
+"PO-Revision-Date: 2014-05-18 22:32+0000\n"
 "Last-Translator: jeroenpraat <>\n"
 "Language-Team: Dutch (http://www.transifex.com/projects/p/friendica/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -27,25 +27,26 @@ msgstr ""
 msgid "This entry was edited"
 msgstr ""
 
-#: ../../object/Item.php:113 ../../mod/content.php:619
-#: ../../mod/photos.php:1351
+#: ../../object/Item.php:113 ../../mod/photos.php:1355
+#: ../../mod/content.php:619
 msgid "Private Message"
 msgstr "Privébericht"
 
 #: ../../object/Item.php:117 ../../mod/editpost.php:109
-#: ../../mod/content.php:727 ../../mod/settings.php:663
+#: ../../mod/settings.php:671 ../../mod/content.php:727
 msgid "Edit"
 msgstr "Bewerken"
 
-#: ../../object/Item.php:126 ../../mod/content.php:437
-#: ../../mod/content.php:739 ../../include/conversation.php:611
+#: ../../object/Item.php:126 ../../mod/photos.php:1649
+#: ../../mod/content.php:437 ../../mod/content.php:739
+#: ../../include/conversation.php:612
 msgid "Select"
 msgstr "Kies"
 
-#: ../../object/Item.php:127 ../../mod/admin.php:907 ../../mod/content.php:438
-#: ../../mod/content.php:740 ../../mod/contacts.php:695
-#: ../../mod/settings.php:664 ../../mod/group.php:171
-#: ../../mod/photos.php:1637 ../../include/conversation.php:612
+#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/photos.php:1650
+#: ../../mod/contacts.php:703 ../../mod/settings.php:672
+#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:740
+#: ../../include/conversation.php:613
 msgid "Delete"
 msgstr "Verwijder"
 
@@ -73,8 +74,8 @@ msgstr "met ster"
 msgid "add tag"
 msgstr "label toevoegen"
 
-#: ../../object/Item.php:213 ../../mod/content.php:683
-#: ../../mod/photos.php:1529
+#: ../../object/Item.php:213 ../../mod/photos.php:1538
+#: ../../mod/content.php:683
 msgid "I like this (toggle)"
 msgstr "Vind ik leuk"
 
@@ -82,8 +83,8 @@ msgstr "Vind ik leuk"
 msgid "like"
 msgstr "leuk"
 
-#: ../../object/Item.php:214 ../../mod/content.php:684
-#: ../../mod/photos.php:1530
+#: ../../object/Item.php:214 ../../mod/photos.php:1539
+#: ../../mod/content.php:684
 msgid "I don't like this (toggle)"
 msgstr "Vind ik niet leuk"
 
@@ -99,2923 +100,2917 @@ msgstr "Delen"
 msgid "share"
 msgstr "Delen"
 
-#: ../../object/Item.php:278 ../../include/conversation.php:663
+#: ../../object/Item.php:298 ../../include/conversation.php:665
 msgid "Categories:"
 msgstr "Categorieën:"
 
-#: ../../object/Item.php:279 ../../include/conversation.php:664
+#: ../../object/Item.php:299 ../../include/conversation.php:666
 msgid "Filed under:"
 msgstr "Bewaard onder:"
 
-#: ../../object/Item.php:287 ../../object/Item.php:288
+#: ../../object/Item.php:307 ../../object/Item.php:308
 #: ../../mod/content.php:471 ../../mod/content.php:851
-#: ../../mod/content.php:852 ../../include/conversation.php:651
+#: ../../mod/content.php:852 ../../include/conversation.php:653
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr "Bekijk het profiel van %s @ %s"
 
-#: ../../object/Item.php:289 ../../mod/content.php:853
+#: ../../object/Item.php:309 ../../mod/content.php:853
 msgid "to"
 msgstr "aan"
 
-#: ../../object/Item.php:290
+#: ../../object/Item.php:310
 msgid "via"
 msgstr "via"
 
-#: ../../object/Item.php:291 ../../mod/content.php:854
+#: ../../object/Item.php:311 ../../mod/content.php:854
 msgid "Wall-to-Wall"
 msgstr "wall-to-wall"
 
-#: ../../object/Item.php:292 ../../mod/content.php:855
+#: ../../object/Item.php:312 ../../mod/content.php:855
 msgid "via Wall-To-Wall:"
 msgstr "via wall-to-wall"
 
-#: ../../object/Item.php:301 ../../mod/content.php:481
-#: ../../mod/content.php:863 ../../include/conversation.php:671
+#: ../../object/Item.php:321 ../../mod/content.php:481
+#: ../../mod/content.php:863 ../../include/conversation.php:673
 #, php-format
 msgid "%s from %s"
 msgstr "%s van %s"
 
-#: ../../object/Item.php:319 ../../object/Item.php:635 ../../boot.php:685
-#: ../../mod/content.php:708 ../../mod/photos.php:1551
-#: ../../mod/photos.php:1595 ../../mod/photos.php:1678
+#: ../../object/Item.php:341 ../../object/Item.php:657
+#: ../../mod/photos.php:1560 ../../mod/photos.php:1604
+#: ../../mod/photos.php:1692 ../../mod/content.php:708 ../../boot.php:693
 msgid "Comment"
 msgstr "Reacties"
 
-#: ../../object/Item.php:322 ../../mod/wallmessage.php:156
-#: ../../mod/editpost.php:124 ../../mod/content.php:498
-#: ../../mod/content.php:882 ../../mod/message.php:334
-#: ../../mod/message.php:565 ../../mod/photos.php:1532
-#: ../../include/conversation.php:688 ../../include/conversation.php:1099
+#: ../../object/Item.php:344 ../../mod/message.php:334
+#: ../../mod/message.php:565 ../../mod/editpost.php:124
+#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1541
+#: ../../mod/content.php:498 ../../mod/content.php:882
+#: ../../include/conversation.php:690 ../../include/conversation.php:1107
 msgid "Please wait"
 msgstr "Even geduld"
 
-#: ../../object/Item.php:345 ../../mod/content.php:602
+#: ../../object/Item.php:367 ../../mod/content.php:602
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] "%d reactie"
 msgstr[1] "%d reacties"
 
-#: ../../object/Item.php:347 ../../object/Item.php:360
-#: ../../mod/content.php:604 ../../include/text.php:1928
+#: ../../object/Item.php:369 ../../object/Item.php:382
+#: ../../mod/content.php:604 ../../include/text.php:1959
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] "reactie"
 msgstr[1] "reacties"
 
-#: ../../object/Item.php:348 ../../boot.php:686 ../../mod/content.php:605
+#: ../../object/Item.php:370 ../../mod/content.php:605 ../../boot.php:694
 #: ../../include/contact_widgets.php:204
 msgid "show more"
 msgstr "toon meer"
 
-#: ../../object/Item.php:633 ../../mod/content.php:706
-#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
-#: ../../mod/photos.php:1676
+#: ../../object/Item.php:655 ../../mod/photos.php:1558
+#: ../../mod/photos.php:1602 ../../mod/photos.php:1690
+#: ../../mod/content.php:706
 msgid "This is you"
 msgstr "Dit ben jij"
 
-#: ../../object/Item.php:636 ../../view/theme/perihel/config.php:95
-#: ../../view/theme/diabook/theme.php:633
-#: ../../view/theme/diabook/config.php:148
-#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
-#: ../../view/theme/clean/config.php:71
-#: ../../view/theme/cleanzero/config.php:80 ../../mod/mood.php:137
-#: ../../mod/install.php:248 ../../mod/install.php:286
-#: ../../mod/crepair.php:171 ../../mod/content.php:709
-#: ../../mod/contacts.php:458 ../../mod/profiles.php:630
+#: ../../object/Item.php:658 ../../mod/fsuggest.php:107
 #: ../../mod/message.php:335 ../../mod/message.php:564
-#: ../../mod/localtime.php:45 ../../mod/photos.php:1078
-#: ../../mod/photos.php:1199 ../../mod/photos.php:1501
-#: ../../mod/photos.php:1552 ../../mod/photos.php:1596
-#: ../../mod/photos.php:1679 ../../mod/poke.php:199 ../../mod/events.php:478
-#: ../../mod/fsuggest.php:107 ../../mod/invite.php:140
-#: ../../mod/manage.php:110
+#: ../../mod/events.php:478 ../../mod/photos.php:1082
+#: ../../mod/photos.php:1203 ../../mod/photos.php:1510
+#: ../../mod/photos.php:1561 ../../mod/photos.php:1605
+#: ../../mod/photos.php:1693 ../../mod/contacts.php:464
+#: ../../mod/invite.php:140 ../../mod/profiles.php:634
+#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45
+#: ../../mod/install.php:248 ../../mod/install.php:286
+#: ../../mod/content.php:709 ../../mod/mood.php:137 ../../mod/crepair.php:171
+#: ../../view/theme/diabook/theme.php:633
+#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:47
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
+#: ../../view/theme/cleanzero/config.php:80
 msgid "Submit"
 msgstr "Opslaan"
 
-#: ../../object/Item.php:637 ../../mod/content.php:710
+#: ../../object/Item.php:659 ../../mod/content.php:710
 msgid "Bold"
 msgstr "Vet"
 
-#: ../../object/Item.php:638 ../../mod/content.php:711
+#: ../../object/Item.php:660 ../../mod/content.php:711
 msgid "Italic"
 msgstr "Cursief"
 
-#: ../../object/Item.php:639 ../../mod/content.php:712
+#: ../../object/Item.php:661 ../../mod/content.php:712
 msgid "Underline"
 msgstr "Onderstrepen"
 
-#: ../../object/Item.php:640 ../../mod/content.php:713
+#: ../../object/Item.php:662 ../../mod/content.php:713
 msgid "Quote"
 msgstr "Citeren"
 
-#: ../../object/Item.php:641 ../../mod/content.php:714
+#: ../../object/Item.php:663 ../../mod/content.php:714
 msgid "Code"
 msgstr "Broncode"
 
-#: ../../object/Item.php:642 ../../mod/content.php:715
+#: ../../object/Item.php:664 ../../mod/content.php:715
 msgid "Image"
 msgstr "Afbeelding"
 
-#: ../../object/Item.php:643 ../../mod/content.php:716
+#: ../../object/Item.php:665 ../../mod/content.php:716
 msgid "Link"
 msgstr "Link"
 
-#: ../../object/Item.php:644 ../../mod/content.php:717
+#: ../../object/Item.php:666 ../../mod/content.php:717
 msgid "Video"
 msgstr "Video"
 
-#: ../../object/Item.php:645 ../../mod/editpost.php:145
-#: ../../mod/content.php:718 ../../mod/photos.php:1553
-#: ../../mod/photos.php:1597 ../../mod/photos.php:1680
-#: ../../include/conversation.php:1116
+#: ../../object/Item.php:667 ../../mod/editpost.php:145
+#: ../../mod/photos.php:1562 ../../mod/photos.php:1606
+#: ../../mod/photos.php:1694 ../../mod/content.php:718
+#: ../../include/conversation.php:1124
 msgid "Preview"
 msgstr "Voorvertoning"
 
-#: ../../index.php:199 ../../mod/apps.php:7
+#: ../../index.php:203 ../../mod/apps.php:7
 msgid "You must be logged in to use addons. "
-msgstr ""
+msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "
 
-#: ../../index.php:243 ../../mod/help.php:90
+#: ../../index.php:247 ../../mod/help.php:90
 msgid "Not Found"
 msgstr "Niet gevonden"
 
-#: ../../index.php:246 ../../mod/help.php:93
+#: ../../index.php:250 ../../mod/help.php:93
 msgid "Page not found."
 msgstr "Pagina niet gevonden"
 
-#: ../../index.php:355 ../../mod/group.php:72 ../../mod/profperm.php:19
+#: ../../index.php:359 ../../mod/profperm.php:19 ../../mod/group.php:72
 msgid "Permission denied"
 msgstr "Toegang geweigerd"
 
-#: ../../index.php:356 ../../mod/mood.php:114 ../../mod/display.php:242
-#: ../../mod/register.php:40 ../../mod/dfrn_confirm.php:53
-#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9
-#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
-#: ../../mod/wallmessage.php:103 ../../mod/suggest.php:56
-#: ../../mod/network.php:6 ../../mod/install.php:151 ../../mod/editpost.php:10
-#: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117
-#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:240
-#: ../../mod/settings.php:96 ../../mod/settings.php:583
-#: ../../mod/settings.php:588 ../../mod/profiles.php:146
-#: ../../mod/profiles.php:571 ../../mod/group.php:19 ../../mod/follow.php:9
-#: ../../mod/message.php:38 ../../mod/message.php:174
-#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:133
-#: ../../mod/photos.php:1044 ../../mod/wall_attach.php:55
-#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66
+#: ../../index.php:360 ../../mod/fsuggest.php:78 ../../mod/files.php:170
+#: ../../mod/notifications.php:66 ../../mod/message.php:38
+#: ../../mod/message.php:174 ../../mod/editpost.php:10
+#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/photos.php:134 ../../mod/photos.php:1048
+#: ../../mod/register.php:41 ../../mod/attach.php:33
+#: ../../mod/contacts.php:246 ../../mod/follow.php:9 ../../mod/uimport.php:23
+#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101
+#: ../../mod/settings.php:102 ../../mod/settings.php:591
+#: ../../mod/settings.php:596 ../../mod/display.php:266
+#: ../../mod/profiles.php:146 ../../mod/profiles.php:575
+#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56
+#: ../../mod/manage.php:96 ../../mod/delegate.php:6
+#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135
 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../mod/events.php:140 ../../mod/delegate.php:6 ../../mod/nogroup.php:25
-#: ../../mod/fsuggest.php:78 ../../mod/item.php:143 ../../mod/item.php:159
-#: ../../mod/notifications.php:66 ../../mod/invite.php:15
-#: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9
-#: ../../include/items.php:4215
+#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118
+#: ../../mod/item.php:145 ../../mod/item.php:161 ../../mod/mood.php:114
+#: ../../mod/network.php:4 ../../mod/crepair.php:117
+#: ../../include/items.php:4390
 msgid "Permission denied."
 msgstr "Toegang geweigerd"
 
-#: ../../index.php:415
+#: ../../index.php:419
 msgid "toggle mobile"
 msgstr "mobiel thema omwisselen"
 
-#: ../../view/theme/perihel/theme.php:33
-#: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93
-#: ../../include/nav.php:104 ../../include/nav.php:143
-msgid "Home"
-msgstr "Tijdlijn"
-
-#: ../../view/theme/perihel/theme.php:33
-#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
-#: ../../include/nav.php:143
-msgid "Your posts and conversations"
-msgstr "Jouw berichten en conversaties"
+#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41
+#: ../../mod/update_community.php:18 ../../mod/update_network.php:22
+#: ../../mod/update_display.php:22
+msgid "[Embedded content - reload page to view]"
+msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]"
 
-#: ../../view/theme/perihel/theme.php:34
-#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1967
-#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
-#: ../../include/nav.php:77 ../../include/profile_advanced.php:7
-#: ../../include/profile_advanced.php:84
-msgid "Profile"
-msgstr "Profiel"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131
+msgid "Contact not found."
+msgstr "Contact niet gevonden"
 
-#: ../../view/theme/perihel/theme.php:34
-#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
-msgid "Your profile page"
-msgstr "Jouw profiel pagina"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Vriendschapsvoorstel verzonden."
 
-#: ../../view/theme/perihel/theme.php:35
-#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1974
-#: ../../mod/fbrowser.php:25 ../../include/nav.php:78
-msgid "Photos"
-msgstr "Foto's"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Stel vrienden voor"
 
-#: ../../view/theme/perihel/theme.php:35
-#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
-msgid "Your photos"
-msgstr "Jouw foto's"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Stel een vriend voor aan %s"
 
-#: ../../view/theme/perihel/theme.php:36
-#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1991
-#: ../../mod/events.php:370 ../../include/nav.php:79
-msgid "Events"
-msgstr "Gebeurtenissen"
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "Verzoek is al goedgekeurd"
 
-#: ../../view/theme/perihel/theme.php:36
-#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
-msgid "Your events"
-msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profiel is ongeldig of bevat geen informatie"
 
-#: ../../view/theme/perihel/theme.php:37
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
-msgid "Personal notes"
-msgstr "Persoonlijke nota's"
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."
 
-#: ../../view/theme/perihel/theme.php:37
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
-msgid "Your personal photos"
-msgstr "Jouw persoonlijke foto's"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
+msgstr "Waarschuwing: Profieladres heeft geen profielfoto."
 
-#: ../../view/theme/perihel/theme.php:38
-#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32
-#: ../../include/nav.php:128
-msgid "Community"
-msgstr "Gemeenschap"
+#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "De %d vereiste parameter is niet op het gegeven adres gevonden"
+msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden"
 
-#: ../../view/theme/perihel/config.php:89
-#: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
-msgid "don't show"
-msgstr "Niet tonen"
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "Verzoek voltooid."
 
-#: ../../view/theme/perihel/config.php:89
-#: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:326
-msgid "show"
-msgstr "tonen"
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "Onherstelbare protocolfout. "
 
-#: ../../view/theme/perihel/config.php:97
-#: ../../view/theme/diabook/config.php:150
-#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
-#: ../../view/theme/clean/config.php:73
-#: ../../view/theme/cleanzero/config.php:82
-msgid "Theme settings"
-msgstr "Thema instellingen"
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "Profiel onbeschikbaar"
 
-#: ../../view/theme/perihel/config.php:98
-#: ../../view/theme/diabook/config.php:151
-#: ../../view/theme/dispy/config.php:73
-#: ../../view/theme/cleanzero/config.php:84
-msgid "Set font-size for posts and comments"
-msgstr "Stel lettergrootte voor berichten en reacties in"
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s heeft te veel verzoeken gehad vandaag."
 
-#: ../../view/theme/perihel/config.php:99
-#: ../../view/theme/diabook/config.php:152
-#: ../../view/theme/dispy/config.php:74
-msgid "Set line-height for posts and comments"
-msgstr ""
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden."
 
-#: ../../view/theme/perihel/config.php:100
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr ""
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen."
 
-#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:680
-#: ../../include/nav.php:171
-msgid "Contacts"
-msgstr "Contacten"
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "Ongeldige plaatsbepaler"
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Jouw contacten"
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr "Geen geldig e-mailadres"
 
-#: ../../view/theme/diabook/theme.php:130
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:624
-#: ../../view/theme/diabook/config.php:158
-msgid "Community Pages"
-msgstr "Gemeenschapspagina's"
+#: ../../mod/dfrn_request.php:362
+msgid "This account has not been configured for email. Request failed."
+msgstr "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail."
 
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-#: ../../view/theme/diabook/config.php:160
-msgid "Community Profiles"
-msgstr "Gemeenschapsprofielen"
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
+msgstr "Ik kan jouw naam op het opgegeven adres niet vinden."
 
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-#: ../../view/theme/diabook/config.php:164
-msgid "Last users"
-msgstr "Laatste gebruikers"
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr "Je hebt jezelf hier al voorgesteld."
 
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-#: ../../view/theme/diabook/config.php:166
-msgid "Last likes"
-msgstr "Recent leuk gevonden"
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Blijkbaar bent u al bevriend met %s."
 
-#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
-#: ../../include/conversation.php:246 ../../include/text.php:1922
-msgid "event"
-msgstr "gebeurtenis"
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr "Ongeldig profiel adres."
 
-#: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62
-#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/subthread.php:87
-#: ../../include/conversation.php:121 ../../include/conversation.php:130
-#: ../../include/conversation.php:249 ../../include/conversation.php:258
-#: ../../include/diaspora.php:1878
-msgid "status"
-msgstr "Status"
+#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "Niet toegelaten profiel adres."
 
-#: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62
-#: ../../mod/like.php:151 ../../mod/subthread.php:87
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1924 ../../include/diaspora.php:1878
-msgid "photo"
-msgstr "Foto"
+#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180
+msgid "Failed to update contact record."
+msgstr "Ik kon de contactgegevens niet aanpassen."
 
-#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:168
-#: ../../include/conversation.php:137 ../../include/diaspora.php:1894
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s vind %3$s van %2$s leuk"
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr "Je verzoek is verzonden."
 
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-#: ../../view/theme/diabook/config.php:165
-msgid "Last photos"
-msgstr "Laatste foto's"
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr "Log in om je verzoek te bevestigen."
 
-#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:59
-#: ../../mod/photos.php:154 ../../mod/photos.php:1058
-#: ../../mod/photos.php:1183 ../../mod/photos.php:1206
-#: ../../mod/photos.php:1736 ../../mod/photos.php:1748
-msgid "Contact Photos"
-msgstr "Contactfoto's"
+#: ../../mod/dfrn_request.php:659
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Je huidige identiteit is niet de juiste. Log met <strong>dit</strong> profiel in."
 
-#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:154
-#: ../../mod/photos.php:725 ../../mod/photos.php:1183
-#: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74
-#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
-#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
-#: ../../mod/profile_photo.php:305 ../../include/user.php:334
-#: ../../include/user.php:341 ../../include/user.php:348
-msgid "Profile Photos"
-msgstr "Profielfoto's"
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
+msgstr "Verberg dit contact"
 
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:163
-msgid "Find Friends"
-msgstr "Zoek vrienden"
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
+msgstr "Welkom terug %s."
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Lokale gids"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s."
 
-#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49
-msgid "Global Directory"
-msgstr "Globale gids"
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr "Bevestig"
 
-#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
-msgid "Similar Interests"
-msgstr "Dezelfde interesses"
+#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703
+msgid "[Name Withheld]"
+msgstr "[Naam achtergehouden]"
 
-#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66
-#: ../../include/contact_widgets.php:34
-msgid "Friend Suggestions"
-msgstr "Vriendschapsvoorstellen"
+#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:918
+#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:19
+#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17
+#: ../../mod/directory.php:31
+msgid "Public access denied."
+msgstr "Niet vrij toegankelijk"
 
-#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
-msgid "Invite Friends"
-msgstr "Vrienden uitnodigen"
+#: ../../mod/dfrn_request.php:811
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"
 
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22
-#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 ../../mod/settings.php:79
-#: ../../mod/uexport.php:48 ../../include/nav.php:167
-msgid "Settings"
-msgstr "Instellingen"
+#: ../../mod/dfrn_request.php:827
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+msgstr "<strike>Sluit aan als e-mail volger</strike> (Binnenkort)"
 
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-#: ../../view/theme/diabook/config.php:159
-msgid "Earth Layers"
-msgstr "Earth Layers"
+#: ../../mod/dfrn_request.php:829
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
+" Friendica site and join us today</a>."
+msgstr "Als je nog geen lid bent van het vrije sociale web,  <a href=\"http://dir.friendica.com/siteinfo\">volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan</a>."
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr ""
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "Vriendschaps-/connectieverzoek"
 
-#: ../../view/theme/diabook/theme.php:585
-#: ../../view/theme/diabook/config.php:156
-msgid "Set longitude (X) for Earth Layers"
-msgstr ""
+#: ../../mod/dfrn_request.php:833
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../view/theme/diabook/theme.php:586
-#: ../../view/theme/diabook/config.php:157
-msgid "Set latitude (Y) for Earth Layers"
-msgstr ""
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr "Beantwoord het volgende:"
 
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-#: ../../view/theme/diabook/config.php:161
-msgid "Help or @NewHere ?"
-msgstr ""
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kent %s jou?"
 
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-#: ../../view/theme/diabook/config.php:162
-msgid "Connect Services"
-msgstr "Diensten verbinden"
+#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209
+#: ../../mod/api.php:105 ../../mod/register.php:243 ../../mod/contacts.php:326
+#: ../../mod/settings.php:1001 ../../mod/settings.php:1007
+#: ../../mod/settings.php:1015 ../../mod/settings.php:1019
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1030
+#: ../../mod/settings.php:1036 ../../mod/settings.php:1042
+#: ../../mod/settings.php:1072 ../../mod/settings.php:1073
+#: ../../mod/settings.php:1074 ../../mod/settings.php:1075
+#: ../../mod/settings.php:1076 ../../mod/profiles.php:614
+#: ../../mod/suggest.php:29 ../../include/items.php:4235
+msgid "Yes"
+msgstr "Ja"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr ""
+#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106
+#: ../../mod/register.php:244 ../../mod/settings.php:1001
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1015
+#: ../../mod/settings.php:1019 ../../mod/settings.php:1024
+#: ../../mod/settings.php:1030 ../../mod/settings.php:1036
+#: ../../mod/settings.php:1042 ../../mod/settings.php:1072
+#: ../../mod/settings.php:1073 ../../mod/settings.php:1074
+#: ../../mod/settings.php:1075 ../../mod/settings.php:1076
+#: ../../mod/profiles.php:615
+msgid "No"
+msgstr "Nee"
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Stel kleurenschema in"
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "Voeg een persoonlijke opmerking toe:"
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr ""
+#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Uitlijning"
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Gefedereerde Sociale Web"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Links"
+#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Gecentreerd"
+#: ../../mod/dfrn_request.php:843
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk."
 
-#: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76
-#: ../../view/theme/cleanzero/config.php:86
-msgid "Color scheme"
-msgstr "Kleurschema"
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr "Adres van uw identiteit:"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Lettergrootte berichten"
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "Aanvraag indienen"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Lettergrootte tekstgebieden"
+#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212
+#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203
+#: ../../mod/photos.php:292 ../../mod/contacts.php:329 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/settings.php:610
+#: ../../mod/settings.php:636 ../../mod/suggest.php:32
+#: ../../include/items.php:4238 ../../include/conversation.php:1127
+msgid "Cancel"
+msgstr "Annuleren"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Stel kleurschema in"
+#: ../../mod/files.php:156 ../../mod/videos.php:301
+#: ../../include/text.php:1400
+msgid "View Video"
+msgstr "Bekijk Video"
 
-#: ../../view/theme/clean/config.php:54 ../../include/user.php:246
-#: ../../include/text.php:1658
-msgid "default"
-msgstr "standaard"
+#: ../../mod/profile.php:21 ../../boot.php:1353
+msgid "Requested profile is not available."
+msgstr "Gevraagde profiel is niet beschikbaar."
 
-#: ../../view/theme/clean/config.php:74
-msgid "Background Image"
-msgstr ""
+#: ../../mod/profile.php:155 ../../mod/display.php:99
+msgid "Access to this profile has been restricted."
+msgstr "Toegang tot dit profiel is beperkt."
 
-#: ../../view/theme/clean/config.php:74
-msgid ""
-"The URL to a picture (e.g. from your photo album) that should be used as "
-"background image."
-msgstr ""
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Tips voor nieuwe leden"
 
-#: ../../view/theme/clean/config.php:75
-msgid "Background Color"
-msgstr ""
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Ongeldige <em>request identifier</em>."
 
-#: ../../view/theme/clean/config.php:75
-msgid "HEX value for the background color. Don't include the #"
-msgstr ""
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Verwerpen"
 
-#: ../../view/theme/clean/config.php:77
-msgid "font size"
-msgstr ""
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210 ../../mod/contacts.php:437
+#: ../../mod/contacts.php:491 ../../mod/contacts.php:701
+msgid "Ignore"
+msgstr "Negeren"
 
-#: ../../view/theme/clean/config.php:77
-msgid "base font size for your interface"
-msgstr ""
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Systeem"
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr ""
+#: ../../mod/notifications.php:83 ../../include/nav.php:142
+msgid "Network"
+msgstr "Netwerk"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Stel breedte van het thema in"
+#: ../../mod/notifications.php:88 ../../mod/network.php:365
+msgid "Personal"
+msgstr "Persoonlijk"
 
-#: ../../boot.php:684
-msgid "Delete this item?"
-msgstr "Dit item verwijderen?"
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123
+#: ../../include/nav.php:104 ../../include/nav.php:145
+msgid "Home"
+msgstr "Tijdlijn"
 
-#: ../../boot.php:687
-msgid "show fewer"
-msgstr "Minder tonen"
+#: ../../mod/notifications.php:98 ../../include/nav.php:151
+msgid "Introductions"
+msgstr "Verzoeken"
 
-#: ../../boot.php:1015
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Wijziging %s mislukt. Lees de error logbestanden."
+#: ../../mod/notifications.php:103 ../../mod/message.php:182
+#: ../../include/nav.php:158
+msgid "Messages"
+msgstr "Privéberichten"
 
-#: ../../boot.php:1017
-#, php-format
-msgid "Update Error at %s"
-msgstr "Wijzigingsfout op %s"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Toon genegeerde verzoeken"
 
-#: ../../boot.php:1127
-msgid "Create a New Account"
-msgstr "Nieuw account aanmaken"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Verberg genegeerde verzoeken"
 
-#: ../../boot.php:1128 ../../mod/register.php:278 ../../include/nav.php:108
-msgid "Register"
-msgstr "Registreer"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Notificatiesoort:"
 
-#: ../../boot.php:1152 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Uitloggen"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Vriendschapsvoorstel"
 
-#: ../../boot.php:1153 ../../include/nav.php:91
-msgid "Login"
-msgstr "Login"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "Voorgesteld door %s"
 
-#: ../../boot.php:1155
-msgid "Nickname or Email address: "
-msgstr "Bijnaam of e-mailadres:"
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
+#: ../../mod/contacts.php:497
+msgid "Hide this contact from others"
+msgstr "Verberg dit contact voor anderen"
 
-#: ../../boot.php:1156
-msgid "Password: "
-msgstr "Wachtwoord:"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Bericht over een nieuwe vriend"
 
-#: ../../boot.php:1157
-msgid "Remember me"
-msgstr "Onthou me"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "Indien toepasbaar"
 
-#: ../../boot.php:1160
-msgid "Or login using OpenID: "
-msgstr "Of log in met OpenID:"
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
+#: ../../mod/admin.php:908
+msgid "Approve"
+msgstr "Goedkeuren"
 
-#: ../../boot.php:1166
-msgid "Forgot your password?"
-msgstr "Wachtwoord vergeten?"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Denkt dat u hem of haar kent:"
 
-#: ../../boot.php:1167 ../../mod/lostpass.php:84
-msgid "Password Reset"
-msgstr "Wachtwoord opnieuw instellen"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "Ja"
 
-#: ../../boot.php:1169
-msgid "Website Terms of Service"
-msgstr "Gebruikersvoorwaarden website"
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "Nee"
 
-#: ../../boot.php:1170
-msgid "terms of service"
-msgstr "servicevoorwaarden"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Goedkeuren als:"
 
-#: ../../boot.php:1172
-msgid "Website Privacy Policy"
-msgstr "Privacybeleid website"
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Vriend"
 
-#: ../../boot.php:1173
-msgid "privacy policy"
-msgstr "privacybeleid"
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Deler"
 
-#: ../../boot.php:1302
-msgid "Requested account is not available."
-msgstr "Gevraagde account is niet beschikbaar."
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fan/Bewonderaar"
 
-#: ../../boot.php:1341 ../../mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Gevraagde profiel is niet beschikbaar."
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Vriendschapsverzoek"
 
-#: ../../boot.php:1381 ../../boot.php:1485
-msgid "Edit profile"
-msgstr "Bewerk profiel"
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Nieuwe Volger"
 
-#: ../../boot.php:1433 ../../mod/suggest.php:88 ../../mod/match.php:58
-#: ../../include/contact_widgets.php:9
-msgid "Connect"
-msgstr "Verbinden"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Geen vriendschaps- of connectieverzoeken."
 
-#: ../../boot.php:1447
-msgid "Message"
-msgstr "Bericht"
+#: ../../mod/notifications.php:220 ../../include/nav.php:152
+msgid "Notifications"
+msgstr "Notificaties"
 
-#: ../../boot.php:1455 ../../include/nav.php:169
-msgid "Profiles"
-msgstr "Profielen"
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:469
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s vond het bericht van %s leuk"
 
-#: ../../boot.php:1455
-msgid "Manage/edit profiles"
-msgstr "Beheer/wijzig profielen"
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s vond het bericht van %s niet leuk"
 
-#: ../../boot.php:1461 ../../boot.php:1487 ../../mod/profiles.php:726
-msgid "Change profile photo"
-msgstr "Profiel foto wijzigen"
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:492
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s is nu bevriend met %s"
 
-#: ../../boot.php:1462 ../../mod/profiles.php:727
-msgid "Create New Profile"
-msgstr "Maak nieuw profiel"
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#, php-format
+msgid "%s created a new post"
+msgstr "%s schreef een nieuw bericht"
 
-#: ../../boot.php:1472 ../../mod/profiles.php:738
-msgid "Profile Image"
-msgstr "Profiel afbeelding"
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:501
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s gaf een reactie op het bericht van %s"
 
-#: ../../boot.php:1475 ../../mod/profiles.php:740
-msgid "visible to everybody"
-msgstr "zichtbaar voor iedereen"
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
+msgstr "Geen netwerknotificaties meer"
 
-#: ../../boot.php:1476 ../../mod/profiles.php:741
-msgid "Edit visibility"
-msgstr "Pas zichtbaarheid aan"
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
+msgstr "Netwerknotificaties"
 
-#: ../../boot.php:1501 ../../mod/directory.php:134 ../../mod/events.php:471
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
-msgid "Location:"
-msgstr "Plaats:"
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
+msgid "No more system notifications."
+msgstr "Geen systeemnotificaties meer."
 
-#: ../../boot.php:1503 ../../mod/directory.php:136
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Geslacht:"
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr "Systeemnotificaties"
 
-#: ../../boot.php:1506 ../../mod/directory.php:138
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Tijdlijn:"
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
+msgstr "Geen persoonlijke notificaties meer"
 
-#: ../../boot.php:1508 ../../mod/directory.php:140
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Jouw tijdlijn:"
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
+msgstr "Persoonlijke notificaties"
 
-#: ../../boot.php:1584 ../../boot.php:1670
-msgid "g A l F d"
-msgstr "G l j F"
+#: ../../mod/notifications.php:508
+msgid "No more home notifications."
+msgstr "Geen tijdlijn-notificaties meer"
 
-#: ../../boot.php:1585 ../../boot.php:1671
-msgid "F d"
-msgstr "d F"
+#: ../../mod/notifications.php:512
+msgid "Home Notifications"
+msgstr "Tijdlijn-notificaties"
 
-#: ../../boot.php:1630 ../../boot.php:1711
-msgid "[today]"
-msgstr "[vandaag]"
+#: ../../mod/like.php:150 ../../mod/tagger.php:62 ../../mod/subthread.php:87
+#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1955
+#: ../../include/diaspora.php:1908 ../../include/conversation.php:126
+#: ../../include/conversation.php:254
+msgid "photo"
+msgstr "foto"
 
-#: ../../boot.php:1642
-msgid "Birthday Reminders"
-msgstr "Verjaardagsherinneringen"
+#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/tagger.php:62
+#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1908
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:249 ../../include/conversation.php:258
+msgid "status"
+msgstr "status"
 
-#: ../../boot.php:1643
-msgid "Birthdays this week:"
-msgstr "Verjaardagen deze week:"
+#: ../../mod/like.php:167 ../../view/theme/diabook/theme.php:480
+#: ../../include/diaspora.php:1924 ../../include/conversation.php:137
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s vind %3$s van %2$s leuk"
 
-#: ../../boot.php:1704
-msgid "[No description]"
-msgstr "[Geen beschrijving]"
+#: ../../mod/like.php:169 ../../include/conversation.php:140
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s vind %3$s van %2$s niet leuk"
 
-#: ../../boot.php:1722
-msgid "Event Reminders"
-msgstr "Gebeurtenisherinneringen"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID protocol fout. Geen ID Gevonden."
 
-#: ../../boot.php:1723
-msgid "Events this week:"
-msgstr "Gebeurtenissen deze week:"
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."
 
-#: ../../boot.php:1960 ../../include/nav.php:76
-msgid "Status"
-msgstr "Tijdlijn"
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
+msgstr "Login mislukt."
 
-#: ../../boot.php:1963
-msgid "Status Messages and Posts"
-msgstr "Berichten op jouw tijdlijn"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Bron (bbcode) tekst:"
 
-#: ../../boot.php:1970
-msgid "Profile Details"
-msgstr "Profiel Details"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Bron (Diaspora) tekst om naar BBCode om te zetten:"
 
-#: ../../boot.php:1977 ../../mod/photos.php:51
-msgid "Photo Albums"
-msgstr "Fotoalbums"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Bron ingave:"
 
-#: ../../boot.php:1981 ../../boot.php:1984
-msgid "Videos"
-msgstr "Video's"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (ruwe HTML):"
 
-#: ../../boot.php:1994
-msgid "Events and Calendar"
-msgstr "Gebeurtenissen en kalender"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html:"
 
-#: ../../boot.php:1998 ../../mod/notes.php:44
-msgid "Personal Notes"
-msgstr "Persoonlijke Nota's"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../boot.php:2001
-msgid "Only You Can See This"
-msgstr "Alleen jij kunt dit zien"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s is op dit moment %2$s"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Stemming"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Stel je huidige stemming in, en vertel het je vrienden"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../mod/display.php:19 ../../mod/_search.php:89
-#: ../../mod/directory.php:31 ../../mod/search.php:89
-#: ../../mod/dfrn_request.php:761 ../../mod/community.php:18
-#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:914
-#: ../../mod/videos.php:115
-msgid "Public access denied."
-msgstr "Niet vrij toegankelijk"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Bron ingave (Diaspora formaat):"
 
-#: ../../mod/display.php:51 ../../mod/display.php:246 ../../mod/decrypt.php:15
-#: ../../mod/admin.php:163 ../../mod/admin.php:952 ../../mod/admin.php:1152
-#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15
-#: ../../include/items.php:4023
-msgid "Item not found."
-msgstr "Item niet gevonden."
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../mod/display.php:99 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Toegang tot dit profiel is beperkt."
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr "Thema-instellingen aangepast."
 
-#: ../../mod/display.php:239
-msgid "Item has been removed."
-msgstr "Item is verwijderd."
+#: ../../mod/admin.php:102 ../../mod/admin.php:573
+msgid "Site"
+msgstr "Website"
 
-#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Toegang geweigerd"
+#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916
+msgid "Users"
+msgstr "Gebruiker"
 
-#: ../../mod/friendica.php:58
-msgid "This is Friendica, version"
-msgstr "Dit is Friendica, versie"
+#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058
+#: ../../mod/settings.php:57
+msgid "Plugins"
+msgstr "Plugins"
 
-#: ../../mod/friendica.php:59
-msgid "running at web location"
-msgstr "draaiend op web-adres"
+#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258
+msgid "Themes"
+msgstr "Thema's"
 
-#: ../../mod/friendica.php:61
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Bezoek <a href=\"http://friendica.com\">Friendica.com</a> om meer te leren over het Friendica project."
+#: ../../mod/admin.php:106
+msgid "DB updates"
+msgstr "DB aanpassingen"
 
-#: ../../mod/friendica.php:63
-msgid "Bug reports and issues: please visit"
-msgstr "Bug rapporten en problemen: bezoek"
+#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345
+msgid "Logs"
+msgstr "Logs"
 
-#: ../../mod/friendica.php:64
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com"
+#: ../../mod/admin.php:126 ../../include/nav.php:180
+msgid "Admin"
+msgstr "Beheer"
 
-#: ../../mod/friendica.php:78
-msgid "Installed plugins/addons/apps:"
-msgstr "Geïnstalleerde plugins/toepassingen:"
+#: ../../mod/admin.php:127
+msgid "Plugin Features"
+msgstr "Plugin Functies"
 
-#: ../../mod/friendica.php:91
-msgid "No installed plugins/addons/apps"
-msgstr "Geen plugins of toepassingen geïnstalleerd"
+#: ../../mod/admin.php:129
+msgid "User registrations waiting for confirmation"
+msgstr "Gebruikersregistraties wachten op bevestiging"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s heet %2$s van harte welkom"
+#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166
+#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:270
+#: ../../mod/viewsrc.php:15 ../../include/items.php:4194
+msgid "Item not found."
+msgstr "Item niet gevonden."
 
-#: ../../mod/register.php:91 ../../mod/admin.php:734 ../../mod/regmod.php:54
-#, php-format
-msgid "Registration details for %s"
-msgstr "Registratie details voor %s"
+#: ../../mod/admin.php:188 ../../mod/admin.php:855
+msgid "Normal Account"
+msgstr "Normale Account"
 
-#: ../../mod/register.php:99
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."
+#: ../../mod/admin.php:189 ../../mod/admin.php:856
+msgid "Soapbox Account"
+msgstr "Zeepkist Account"
 
-#: ../../mod/register.php:103
-msgid "Failed to send email message. Here is the message that failed."
-msgstr "E-mail bericht kon niet verstuurd worden. Hier is het bericht."
+#: ../../mod/admin.php:190 ../../mod/admin.php:857
+msgid "Community/Celebrity Account"
+msgstr "Gemeenschap/Beroemdheid Account"
 
-#: ../../mod/register.php:108
-msgid "Your registration can not be processed."
-msgstr "Je registratie kan niet verwerkt worden."
+#: ../../mod/admin.php:191 ../../mod/admin.php:858
+msgid "Automatic Friend Account"
+msgstr "Automatisch Vriendschapsaccount"
 
-#: ../../mod/register.php:148
-#, php-format
-msgid "Registration request at %s"
-msgstr "Registratieverzoek op %s"
+#: ../../mod/admin.php:192
+msgid "Blog Account"
+msgstr "Blog Account"
 
-#: ../../mod/register.php:157
-msgid "Your registration is pending approval by the site owner."
-msgstr "Je registratie wacht op goedkeuring van de beheerder."
+#: ../../mod/admin.php:193
+msgid "Private Forum"
+msgstr "Privé Forum"
 
-#: ../../mod/register.php:195 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen a.u.b. opnieuw."
+#: ../../mod/admin.php:212
+msgid "Message queues"
+msgstr "Bericht-wachtrijen"
 
-#: ../../mod/register.php:223
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken."
-
-#: ../../mod/register.php:224
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."
-
-#: ../../mod/register.php:225
-msgid "Your OpenID (optional): "
-msgstr "Je OpenID (optioneel):"
-
-#: ../../mod/register.php:239
-msgid "Include your profile in member directory?"
-msgstr "Je profiel in de ledengids opnemen?"
-
-#: ../../mod/register.php:242 ../../mod/api.php:105 ../../mod/suggest.php:29
-#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:320
-#: ../../mod/settings.php:981 ../../mod/settings.php:987
-#: ../../mod/settings.php:995 ../../mod/settings.php:999
-#: ../../mod/settings.php:1004 ../../mod/settings.php:1010
-#: ../../mod/settings.php:1016 ../../mod/settings.php:1022
-#: ../../mod/settings.php:1052 ../../mod/settings.php:1053
-#: ../../mod/settings.php:1054 ../../mod/settings.php:1055
-#: ../../mod/settings.php:1056 ../../mod/profiles.php:610
-#: ../../mod/message.php:209 ../../include/items.php:4064
-msgid "Yes"
-msgstr "Ja"
+#: ../../mod/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900
+#: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223
+#: ../../mod/admin.php:1257 ../../mod/admin.php:1344
+msgid "Administration"
+msgstr "Beheer"
 
-#: ../../mod/register.php:243 ../../mod/api.php:106
-#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:981
-#: ../../mod/settings.php:987 ../../mod/settings.php:995
-#: ../../mod/settings.php:999 ../../mod/settings.php:1004
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1022 ../../mod/settings.php:1052
-#: ../../mod/settings.php:1053 ../../mod/settings.php:1054
-#: ../../mod/settings.php:1055 ../../mod/settings.php:1056
-#: ../../mod/profiles.php:611
-msgid "No"
-msgstr "Nee"
+#: ../../mod/admin.php:218
+msgid "Summary"
+msgstr "Samenvatting"
 
-#: ../../mod/register.php:260
-msgid "Membership on this site is by invitation only."
-msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging."
+#: ../../mod/admin.php:220
+msgid "Registered users"
+msgstr "Geregistreerde gebruikers"
 
-#: ../../mod/register.php:261
-msgid "Your invitation ID: "
-msgstr "Je uitnodigingsid:"
+#: ../../mod/admin.php:222
+msgid "Pending registrations"
+msgstr "Registraties die in de wacht staan"
 
-#: ../../mod/register.php:264 ../../mod/admin.php:572
-msgid "Registration"
-msgstr "Registratie"
+#: ../../mod/admin.php:223
+msgid "Version"
+msgstr "Versie"
 
-#: ../../mod/register.php:272
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Je volledige naam (bijv. Jan Jansens):"
+#: ../../mod/admin.php:225
+msgid "Active plugins"
+msgstr "Actieve plug-ins"
 
-#: ../../mod/register.php:273
-msgid "Your Email Address: "
-msgstr "Je email adres:"
+#: ../../mod/admin.php:248
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr ""
 
-#: ../../mod/register.php:274
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan '<strong>bijnaam@$sitename</strong>' zijn."
+#: ../../mod/admin.php:485
+msgid "Site settings updated."
+msgstr "Site instellingen gewijzigd."
 
-#: ../../mod/register.php:275
-msgid "Choose a nickname: "
-msgstr "Kies een bijnaam:"
+#: ../../mod/admin.php:514 ../../mod/settings.php:823
+msgid "No special theme for mobile devices"
+msgstr "Geen speciaal thema voor mobiele apparaten"
 
-#: ../../mod/register.php:284 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Importeren"
+#: ../../mod/admin.php:531 ../../mod/contacts.php:408
+msgid "Never"
+msgstr "Nooit"
 
-#: ../../mod/register.php:285
-msgid "Import your profile to this friendica instance"
+#: ../../mod/admin.php:532
+msgid "At post arrival"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:160
-#: ../../mod/profiles.php:583
-msgid "Profile not found."
-msgstr "Profiel niet gevonden"
-
-#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
-msgstr "Contact niet gevonden"
+#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "Frequent"
 
-#: ../../mod/dfrn_confirm.php:119
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."
+#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "elk uur"
 
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
-msgstr "Antwoord van de website op afstand werd niet begrepen."
+#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "Twee keer per dag"
 
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
-msgstr "Onverwacht antwoord van website op afstand:"
+#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "dagelijks"
 
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
-msgstr "Bevestiging werd correct voltooid."
+#: ../../mod/admin.php:541
+msgid "Multi user instance"
+msgstr "Server voor meerdere gebruikers"
 
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr "Website op afstand berichtte: "
+#: ../../mod/admin.php:559
+msgid "Closed"
+msgstr "Gesloten"
 
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
-msgstr "Tijdelijke fout. Wacht even en probeer opnieuw."
+#: ../../mod/admin.php:560
+msgid "Requires approval"
+msgstr "Toestemming vereist"
 
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
-msgstr "Verzoek mislukt of herroepen."
+#: ../../mod/admin.php:561
+msgid "Open"
+msgstr "Open"
 
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Ik kan geen contact foto instellen."
+#: ../../mod/admin.php:565
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen"
 
-#: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172
-#: ../../include/diaspora.php:621
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s is nu bevriend met %2$s"
+#: ../../mod/admin.php:566
+msgid "Force all links to use SSL"
+msgstr "Verplicht alle links om SSL te gebruiken"
 
-#: ../../mod/dfrn_confirm.php:562
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Geen gebruiker gevonden voor '%s'"
+#: ../../mod/admin.php:567
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)"
 
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
-msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."
+#: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259
+#: ../../mod/admin.php:1346 ../../mod/settings.php:609
+#: ../../mod/settings.php:719 ../../mod/settings.php:793
+#: ../../mod/settings.php:872 ../../mod/settings.php:1104
+msgid "Save Settings"
+msgstr ""
 
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."
+#: ../../mod/admin.php:575 ../../mod/register.php:265
+msgid "Registration"
+msgstr "Registratie"
 
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "We vonden op onze webstek geen contactrecord voor jou."
+#: ../../mod/admin.php:576
+msgid "File upload"
+msgstr "Uploaden bestand"
 
-#: ../../mod/dfrn_confirm.php:618
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."
+#: ../../mod/admin.php:577
+msgid "Policies"
+msgstr "Beleid"
 
-#: ../../mod/dfrn_confirm.php:638
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."
+#: ../../mod/admin.php:578
+msgid "Advanced"
+msgstr "Geavanceerd"
 
-#: ../../mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen."
+#: ../../mod/admin.php:579
+msgid "Performance"
+msgstr "Performantie"
 
-#: ../../mod/dfrn_confirm.php:716
-msgid "Unable to update your contact profile details on our system"
+#: ../../mod/admin.php:580
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:751
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Uw connectie werd geaccepteerd op %s"
+#: ../../mod/admin.php:583
+msgid "Site name"
+msgstr "Site naam"
 
-#: ../../mod/dfrn_confirm.php:800
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s is toegetreden tot %2$s"
+#: ../../mod/admin.php:584
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
+#: ../../mod/admin.php:585
+msgid "Additional Info"
 msgstr ""
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
+#: ../../mod/admin.php:585
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
 msgstr ""
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Log in om verder te gaan."
+#: ../../mod/admin.php:586
+msgid "System language"
+msgstr "Systeemtaal"
 
-#: ../../mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"
+#: ../../mod/admin.php:587
+msgid "System theme"
+msgstr "Systeem thema"
 
-#: ../../mod/lostpass.php:17
-msgid "No valid account found."
-msgstr "Geen geldige account gevonden."
+#: ../../mod/admin.php:587
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - <a href='#' id='cnftheme'>verander thema instellingen</a>"
 
-#: ../../mod/lostpass.php:33
-msgid "Password reset request issued. Check your email."
-msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."
+#: ../../mod/admin.php:588
+msgid "Mobile system theme"
+msgstr "Mobiel systeem thema"
 
-#: ../../mod/lostpass.php:44
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"
+#: ../../mod/admin.php:588
+msgid "Theme for mobile devices"
+msgstr "Thema voor mobiele apparaten"
 
-#: ../../mod/lostpass.php:66
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."
+#: ../../mod/admin.php:589
+msgid "SSL link policy"
+msgstr "Beleid SSL-links"
 
-#: ../../mod/lostpass.php:85
-msgid "Your password has been reset as requested."
-msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd."
+#: ../../mod/admin.php:589
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken"
 
-#: ../../mod/lostpass.php:86
-msgid "Your new password is"
-msgstr "Je nieuwe wachtwoord is"
+#: ../../mod/admin.php:590
+msgid "Old style 'Share'"
+msgstr ""
 
-#: ../../mod/lostpass.php:87
-msgid "Save or copy your new password - and then"
-msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan"
+#: ../../mod/admin.php:590
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr ""
 
-#: ../../mod/lostpass.php:88
-msgid "click here to login"
-msgstr "klik hier om in te loggen"
+#: ../../mod/admin.php:591
+msgid "Hide help entry from navigation menu"
+msgstr "Verberg de 'help' uit het navigatiemenu"
 
-#: ../../mod/lostpass.php:89
+#: ../../mod/admin.php:591
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina."
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven."
 
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Je wachtwoord is veranderd op %s"
+#: ../../mod/admin.php:592
+msgid "Single user instance"
+msgstr "Server voor één gebruiker"
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Wachtwoord vergeten?"
+#: ../../mod/admin.php:592
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker."
 
-#: ../../mod/lostpass.php:123
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."
+#: ../../mod/admin.php:593
+msgid "Maximum image size"
+msgstr "Maximum afbeeldingsgrootte"
 
-#: ../../mod/lostpass.php:124
-msgid "Nickname or Email: "
-msgstr "Bijnaam of e-mail:"
+#: ../../mod/admin.php:593
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking."
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Opnieuw"
+#: ../../mod/admin.php:594
+msgid "Maximum image length"
+msgstr "Maximum afbeeldingslengte"
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr ""
+#: ../../mod/admin.php:594
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen."
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
-msgstr "Geen ontvanger geselecteerd."
+#: ../../mod/admin.php:595
+msgid "JPEG image quality"
+msgstr "JPEG afbeeldingskwaliteit"
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Niet in staat om je tijdlijn-locatie vast te stellen"
+#: ../../mod/admin.php:595
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit."
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
-msgstr "Bericht kon niet verzonden worden."
+#: ../../mod/admin.php:597
+msgid "Register policy"
+msgstr "Registratiebeleid"
 
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr "Fout bij het verzamelen van berichten."
+#: ../../mod/admin.php:598
+msgid "Maximum Daily Registrations"
+msgstr "Maximum aantal registraties per dag"
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "Bericht verzonden."
+#: ../../mod/admin.php:598
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect."
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Geen ontvanger."
+#: ../../mod/admin.php:599
+msgid "Register text"
+msgstr "Registratietekst"
 
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
-#: ../../mod/message.php:283 ../../mod/message.php:291
-#: ../../mod/message.php:466 ../../mod/message.php:474
-#: ../../include/conversation.php:997 ../../include/conversation.php:1015
-msgid "Please enter a link URL:"
-msgstr "Vul een internetadres/URL in:"
+#: ../../mod/admin.php:599
+msgid "Will be displayed prominently on the registration page."
+msgstr "Dit zal prominent op de registratiepagina getoond worden."
 
-#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
-msgid "Send Private Message"
-msgstr "Verstuur privébericht"
+#: ../../mod/admin.php:600
+msgid "Accounts abandoned after x days"
+msgstr "Verlaten accounts na x dagen"
 
-#: ../../mod/wallmessage.php:143
-#, php-format
+#: ../../mod/admin.php:600
 msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat."
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet."
 
-#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
-#: ../../mod/message.php:553
-msgid "To:"
-msgstr "Aan:"
+#: ../../mod/admin.php:601
+msgid "Allowed friend domains"
+msgstr "Toegelaten vriend domeinen"
 
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
-#: ../../mod/message.php:555
-msgid "Subject:"
-msgstr "Onderwerp:"
+#: ../../mod/admin.php:601
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten."
 
-#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
-#: ../../mod/message.php:558 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Jouw bericht:"
+#: ../../mod/admin.php:602
+msgid "Allowed email domains"
+msgstr "Toegelaten e-mail domeinen"
 
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../include/conversation.php:1081
-msgid "Upload photo"
-msgstr "Foto uploaden"
+#: ../../mod/admin.php:602
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan."
 
-#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../include/conversation.php:1085
-msgid "Insert web link"
-msgstr "Voeg een webadres in"
+#: ../../mod/admin.php:603
+msgid "Block public"
+msgstr "Openbare toegang blokkeren"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Welkom bij Friendica"
+#: ../../mod/admin.php:603
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers."
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checklist voor nieuwe leden"
+#: ../../mod/admin.php:604
+msgid "Force publish"
+msgstr "Dwing publiceren af"
 
-#: ../../mod/newmember.php:12
+#: ../../mod/admin.php:604
 msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen."
-
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Aan de slag"
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden."
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Doorloop Friendica"
+#: ../../mod/admin.php:605
+msgid "Global directory update URL"
+msgstr "Update-adres van de globale gids"
 
-#: ../../mod/newmember.php:18
+#: ../../mod/admin.php:605
 msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden."
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL om de globale gids aan te passen. Als dit niet is ingevuld, is de globale gids volledig onbeschikbaar voor deze toepassing."
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Ga naar je instellingen"
+#: ../../mod/admin.php:606
+msgid "Allow threaded items"
+msgstr "Sta threads in conversaties toe"
 
-#: ../../mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web."
+#: ../../mod/admin.php:606
+msgid "Allow infinite level threading for items on this site."
+msgstr "Sta oneindige niveaus threads in conversaties op deze website toe."
 
-#: ../../mod/newmember.php:28
+#: ../../mod/admin.php:607
+msgid "Private posts by default for new users"
+msgstr "Privéberichten als standaard voor nieuwe gebruikers"
+
+#: ../../mod/admin.php:607
 msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden."
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar."
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Profielfoto uploaden"
+#: ../../mod/admin.php:608
+msgid "Don't include post content in email notifications"
+msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties"
 
-#: ../../mod/newmember.php:36
+#: ../../mod/admin.php:608
 msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen."
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr "De inhoud van berichten/commentaar/privéberichten/enzovoort  niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy."
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Bewerk je profiel"
+#: ../../mod/admin.php:609
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr ""
 
-#: ../../mod/newmember.php:38
+#: ../../mod/admin.php:609
 msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Bewerk je <strong>standaard</strong> profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen."
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr ""
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Sleutelwoorden voor dit profiel"
+#: ../../mod/admin.php:610
+msgid "Don't embed private images in posts"
+msgstr ""
 
-#: ../../mod/newmember.php:40
+#: ../../mod/admin.php:610
 msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen."
-
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Verbinding aan het maken"
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr ""
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../mod/admin.php:611
+msgid "Allow Users to set remote_self"
+msgstr ""
 
-#: ../../mod/newmember.php:49
+#: ../../mod/admin.php:611
 msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
-msgstr "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren."
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
+msgstr ""
 
-#: ../../mod/newmember.php:51
-msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>Als</em> dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken."
+#: ../../mod/admin.php:612
+msgid "Block multiple registrations"
+msgstr "Blokkeer meerdere registraties"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "E-mails importeren"
+#: ../../mod/admin.php:612
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken."
 
-#: ../../mod/newmember.php:56
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren"
+#: ../../mod/admin.php:613
+msgid "OpenID support"
+msgstr "OpenID ondersteuning"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Ga naar je contactenpagina"
+#: ../../mod/admin.php:613
+msgid "OpenID support for registration and logins."
+msgstr "OpenID ondersteuning voor registraties en logins."
 
-#: ../../mod/newmember.php:58
+#: ../../mod/admin.php:614
+msgid "Fullname check"
+msgstr "Controleer volledige naam"
+
+#: ../../mod/admin.php:614
 msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de <em>Voeg nieuw contact toe</em> dialoog."
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel"
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Ga naar de gids van je website"
+#: ../../mod/admin.php:615
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 reguliere uitdrukkingen"
 
-#: ../../mod/newmember.php:60
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd."
+#: ../../mod/admin.php:615
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Gebruik PHP UTF8 reguliere uitdrukkingen"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Nieuwe mensen vinden"
+#: ../../mod/admin.php:616
+msgid "Show Community Page"
+msgstr "Toon Gemeenschapspagina"
 
-#: ../../mod/newmember.php:62
+#: ../../mod/admin.php:616
 msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden."
-
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Groepen"
+"Display a Community page showing all recent public postings on this site."
+msgstr "Toon een gemeenschapspagina die alle recente openbare berichten op deze website toont."
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Groepeer je contacten"
+#: ../../mod/admin.php:617
+msgid "Enable OStatus support"
+msgstr "Activeer OStatus ondersteuning"
 
-#: ../../mod/newmember.php:70
+#: ../../mod/admin.php:617
 msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. "
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr ""
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Waarom zijn mijn berichten niet openbaar?"
+#: ../../mod/admin.php:618
+msgid "OStatus conversation completion interval"
+msgstr ""
 
-#: ../../mod/newmember.php:73
+#: ../../mod/admin.php:618
 msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie."
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr ""
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Hulp krijgen"
+#: ../../mod/admin.php:619
+msgid "Enable Diaspora support"
+msgstr "Activeer Diaspora ondersteuning"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Ga naar de help"
+#: ../../mod/admin.php:619
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk."
 
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Je kunt onze <strong>help</strong> pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."
+#: ../../mod/admin.php:620
+msgid "Only allow Friendica contacts"
+msgstr "Laat alleen Friendica contacten toe"
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Wil je echt dit voorstel verwijderen?"
+#: ../../mod/admin.php:620
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld."
 
-#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
-#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:323
-#: ../../mod/settings.php:602 ../../mod/settings.php:628
-#: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1119
-#: ../../include/items.php:4067
-msgid "Cancel"
-msgstr "Annuleren"
+#: ../../mod/admin.php:621
+msgid "Verify SSL"
+msgstr "Controleer SSL"
 
-#: ../../mod/suggest.php:72
+#: ../../mod/admin.php:621
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken."
 
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "Negeren/Verbergen"
+#: ../../mod/admin.php:622
+msgid "Proxy user"
+msgstr "Proxy-gebruiker"
 
-#: ../../mod/network.php:179
-msgid "Search Results For:"
-msgstr "Zoekresultaten voor:"
+#: ../../mod/admin.php:623
+msgid "Proxy URL"
+msgstr "Proxy-URL"
 
-#: ../../mod/network.php:222 ../../mod/_search.php:21 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Verwijder zoekterm"
+#: ../../mod/admin.php:624
+msgid "Network timeout"
+msgstr "Netwerk timeout"
 
-#: ../../mod/network.php:231 ../../mod/_search.php:30 ../../mod/search.php:30
-#: ../../include/features.php:41
-msgid "Saved Searches"
-msgstr "Opgeslagen zoekopdrachten"
+#: ../../mod/admin.php:624
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)."
 
-#: ../../mod/network.php:232 ../../include/group.php:275
-msgid "add"
-msgstr "toevoegen"
+#: ../../mod/admin.php:625
+msgid "Delivery interval"
+msgstr "Afleverinterval"
 
-#: ../../mod/network.php:394
-msgid "Commented Order"
-msgstr "Nieuwe reacties bovenaan"
+#: ../../mod/admin.php:625
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers."
 
-#: ../../mod/network.php:397
-msgid "Sort by Comment Date"
-msgstr "Berichten met nieuwe reacties bovenaan"
+#: ../../mod/admin.php:626
+msgid "Poll interval"
+msgstr "Poll-interval"
 
-#: ../../mod/network.php:400
-msgid "Posted Order"
-msgstr "Nieuwe berichten bovenaan"
+#: ../../mod/admin.php:626
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt."
 
-#: ../../mod/network.php:403
-msgid "Sort by Post Date"
-msgstr "Nieuwe berichten bovenaan"
+#: ../../mod/admin.php:627
+msgid "Maximum Load Average"
+msgstr "Maximum gemiddelde belasting"
 
-#: ../../mod/network.php:441 ../../mod/notifications.php:88
-msgid "Personal"
-msgstr "Persoonlijk"
+#: ../../mod/admin.php:627
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50."
 
-#: ../../mod/network.php:444
-msgid "Posts that mention or involve you"
-msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben"
+#: ../../mod/admin.php:629
+msgid "Use MySQL full text engine"
+msgstr "Gebruik de tekst-zoekfunctie van MySQL"
 
-#: ../../mod/network.php:450
-msgid "New"
-msgstr "Nieuw"
+#: ../../mod/admin.php:629
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters."
 
-#: ../../mod/network.php:453
-msgid "Activity Stream - by date"
-msgstr "Activiteitenstroom - volgens datum"
+#: ../../mod/admin.php:630
+msgid "Suppress Language"
+msgstr ""
 
-#: ../../mod/network.php:459
-msgid "Shared Links"
-msgstr "Gedeelde links"
+#: ../../mod/admin.php:630
+msgid "Suppress language information in meta information about a posting."
+msgstr ""
 
-#: ../../mod/network.php:462
-msgid "Interesting Links"
-msgstr "Interessante links"
-
-#: ../../mod/network.php:468
-msgid "Starred"
-msgstr "Met ster"
+#: ../../mod/admin.php:631
+msgid "Path to item cache"
+msgstr "Pad naar cache voor items"
 
-#: ../../mod/network.php:471
-msgid "Favourite Posts"
-msgstr "Favoriete berichten"
+#: ../../mod/admin.php:632
+msgid "Cache duration in seconds"
+msgstr "Cache tijdsduur in seconden"
 
-#: ../../mod/network.php:539
-#, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk."
-msgstr[1] "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk."
+#: ../../mod/admin.php:632
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day)."
+msgstr "Hoe lang moeten bestanden in cache gehouden worden? Standaard waarde is 86400 seconden (een dag)."
 
-#: ../../mod/network.php:542
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Privéberichten naar deze groep kunnen openbaar gemaakt worden."
+#: ../../mod/admin.php:633
+msgid "Path for lock file"
+msgstr "Pad voor lock bestand"
 
-#: ../../mod/network.php:588 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Zo'n groep bestaat niet"
+#: ../../mod/admin.php:634
+msgid "Temp path"
+msgstr "Tijdelijk pad"
 
-#: ../../mod/network.php:599 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "De groep is leeg"
+#: ../../mod/admin.php:635
+msgid "Base path to installation"
+msgstr "Basispad voor installatie"
 
-#: ../../mod/network.php:605 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Groep:"
+#: ../../mod/admin.php:637
+msgid "New base url"
+msgstr ""
 
-#: ../../mod/network.php:617
-msgid "Contact: "
-msgstr "Contact: "
+#: ../../mod/admin.php:655
+msgid "Update has been marked successful"
+msgstr "Wijziging succesvol gemarkeerd "
 
-#: ../../mod/network.php:619
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."
+#: ../../mod/admin.php:665
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "Uitvoering van %s is mislukt. Kijk de systeem logbestanden na."
 
-#: ../../mod/network.php:624
-msgid "Invalid contact."
-msgstr "Ongeldig contact."
+#: ../../mod/admin.php:668
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Wijziging %s geslaagd."
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr ""
+#: ../../mod/admin.php:672
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is."
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Kon geen toegang krijgen tot de database."
+#: ../../mod/admin.php:675
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "Update-functie %s kon niet gevonden worden."
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Kon tabel niet aanmaken."
+#: ../../mod/admin.php:690
+msgid "No failed updates."
+msgstr "Geen misluke wijzigingen"
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "De database van je Friendica-website is geïnstalleerd."
+#: ../../mod/admin.php:694
+msgid "Failed Updates"
+msgstr "Misluke wijzigingen"
 
-#: ../../mod/install.php:138
+#: ../../mod/admin.php:695
 msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql."
-
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:521
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Zie het bestand \"INSTALL.txt\"."
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven."
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Systeemcontrole"
+#: ../../mod/admin.php:696
+msgid "Mark success (if update was manually applied)"
+msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)"
 
-#: ../../mod/install.php:207 ../../mod/events.php:373
-msgid "Next"
-msgstr "Volgende"
+#: ../../mod/admin.php:697
+msgid "Attempt to execute this update step automatically"
+msgstr "Probeer deze stap automatisch uit te voeren"
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Controleer opnieuw"
+#: ../../mod/admin.php:737 ../../mod/register.php:92 ../../mod/regmod.php:54
+#, php-format
+msgid "Registration details for %s"
+msgstr "Registratie details voor %s"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Verbinding met database"
+#: ../../mod/admin.php:743
+msgid "Registration successful. Email send to user"
+msgstr ""
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken."
+#: ../../mod/admin.php:753
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s gebruiker geblokkeerd/niet geblokkeerd"
+msgstr[1] "%s gebruikers geblokkeerd/niet geblokkeerd"
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. "
+#: ../../mod/admin.php:760
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s gebruiker verwijderd"
+msgstr[1] "%s gebruikers verwijderd"
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat."
+#: ../../mod/admin.php:799
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Gebruiker '%s' verwijderd"
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Servernaam database"
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Gebruiker '%s' niet meer geblokkeerd"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Gebruikersnaam database"
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Gebruiker '%s' geblokkeerd"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Wachtwoord database"
+#: ../../mod/admin.php:902
+msgid "Add User"
+msgstr ""
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Naam database"
+#: ../../mod/admin.php:903
+msgid "select all"
+msgstr "Alles selecteren"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "E-mailadres van de websitebeheerder"
+#: ../../mod/admin.php:904
+msgid "User registrations waiting for confirm"
+msgstr "Gebruikersregistraties wachten op een bevestiging"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken."
+#: ../../mod/admin.php:905
+msgid "User waiting for permanent deletion"
+msgstr ""
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Selecteer een standaard tijdzone voor uw website"
+#: ../../mod/admin.php:906
+msgid "Request date"
+msgstr "Registratiedatum"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Website-instellingen"
+#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919
+#: ../../mod/admin.php:932 ../../mod/settings.php:611
+#: ../../mod/settings.php:637 ../../mod/crepair.php:150
+msgid "Name"
+msgstr "Naam"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver."
+#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919
+#: ../../mod/admin.php:934 ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86
+msgid "Email"
+msgstr "E-mail"
 
-#: ../../mod/install.php:322
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-msgstr "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie  <a href='http://friendica.com/node/27'>'Activeren van geplande taken'</a>"
+#: ../../mod/admin.php:907
+msgid "No registrations."
+msgstr "Geen registraties."
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "PATH van het PHP commando"
+#: ../../mod/admin.php:909
+msgid "Deny"
+msgstr "Weiger"
 
-#: ../../mod/install.php:326
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten."
+#: ../../mod/admin.php:911 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Block"
+msgstr "Blokkeren"
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "PHP-opdrachtregel"
+#: ../../mod/admin.php:912 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Unblock"
+msgstr "Blokkering opheffen"
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr ""
+#: ../../mod/admin.php:913
+msgid "Site admin"
+msgstr "Sitebeheerder"
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Gevonden PHP versie:"
+#: ../../mod/admin.php:914
+msgid "Account expired"
+msgstr "Account verlopen"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
+#: ../../mod/admin.php:917
+msgid "New User"
 msgstr ""
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd."
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Register date"
+msgstr "Registratiedatum"
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken."
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last login"
+msgstr "Laatste login"
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last item"
+msgstr "Laatste item"
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: ../../mod/admin.php:918
+msgid "Deleted since"
 msgstr ""
 
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait."
+#: ../../mod/admin.php:919 ../../mod/settings.php:36
+msgid "Account"
+msgstr "Account"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
+#: ../../mod/admin.php:921
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
+
+#: ../../mod/admin.php:922
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
+
+#: ../../mod/admin.php:932
+msgid "Name of the new user."
 msgstr ""
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "libCurl PHP module"
+#: ../../mod/admin.php:933
+msgid "Nickname"
+msgstr ""
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "GD graphics PHP module"
+#: ../../mod/admin.php:933
+msgid "Nickname of the new user."
+msgstr ""
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP module"
+#: ../../mod/admin.php:934
+msgid "Email address of the new user."
+msgstr ""
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "mysqli PHP module"
+#: ../../mod/admin.php:967
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s uitgeschakeld."
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "mb_string PHP module"
+#: ../../mod/admin.php:971
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s ingeschakeld."
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: ../../mod/admin.php:981 ../../mod/admin.php:1195
+msgid "Disable"
+msgstr "Uitschakelen"
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd."
+#: ../../mod/admin.php:983 ../../mod/admin.php:1197
+msgid "Enable"
+msgstr "Inschakelen"
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd."
+#: ../../mod/admin.php:1006 ../../mod/admin.php:1225
+msgid "Toggle"
+msgstr "Schakelaar"
 
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd."
+#: ../../mod/admin.php:1007 ../../mod/admin.php:1226
+#: ../../mod/newmember.php:22 ../../mod/settings.php:85
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:169
+msgid "Settings"
+msgstr "Instellingen"
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd."
+#: ../../mod/admin.php:1014 ../../mod/admin.php:1235
+msgid "Author: "
+msgstr "Auteur:"
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd."
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1236
+msgid "Maintainer: "
+msgstr "Onderhoud:"
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd."
+#: ../../mod/admin.php:1155
+msgid "No themes found."
+msgstr "Geen thema's gevonden."
 
-#: ../../mod/install.php:438
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen."
+#: ../../mod/admin.php:1217
+msgid "Screenshot"
+msgstr "Schermafdruk"
 
-#: ../../mod/install.php:439
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel."
+#: ../../mod/admin.php:1263
+msgid "[Experimental]"
+msgstr "[Experimenteel]"
 
-#: ../../mod/install.php:440
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map."
+#: ../../mod/admin.php:1264
+msgid "[Unsupported]"
+msgstr "[Niet ondersteund]"
 
-#: ../../mod/install.php:441
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies."
+#: ../../mod/admin.php:1291
+msgid "Log settings updated."
+msgstr "Log instellingen gewijzigd"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php is schrijfbaar"
+#: ../../mod/admin.php:1347
+msgid "Clear"
+msgstr "Wis"
 
-#: ../../mod/install.php:454
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen."
+#: ../../mod/admin.php:1353
+msgid "Enable Debugging"
+msgstr ""
 
-#: ../../mod/install.php:455
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie."
+#: ../../mod/admin.php:1354
+msgid "Log file"
+msgstr "Logbestand"
 
-#: ../../mod/install.php:456
+#: ../../mod/admin.php:1354
 msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Zorg er a.u.b. voor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie."
 
-#: ../../mod/install.php:457
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten."
+#: ../../mod/admin.php:1355
+msgid "Log level"
+msgstr "Log niveau"
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 is schrijfbaar"
+#: ../../mod/admin.php:1404 ../../mod/contacts.php:487
+msgid "Update now"
+msgstr "Wijzig nu"
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr ""
+#: ../../mod/admin.php:1405
+msgid "Close"
+msgstr "Afsluiten"
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr ""
+#: ../../mod/admin.php:1411
+msgid "FTP Host"
+msgstr "FTP Server"
 
-#: ../../mod/install.php:484
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver."
+#: ../../mod/admin.php:1412
+msgid "FTP Path"
+msgstr "FTP Pad"
 
-#: ../../mod/install.php:508
-msgid "Errors encountered creating database tables."
-msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."
+#: ../../mod/admin.php:1413
+msgid "FTP User"
+msgstr "FTP Gebruiker"
 
-#: ../../mod/install.php:519
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wat nu</h1>"
+#: ../../mod/admin.php:1414
+msgid "FTP Password"
+msgstr "FTP wachtwoord"
 
-#: ../../mod/install.php:520
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller."
+#: ../../mod/message.php:9 ../../include/nav.php:161
+msgid "New Message"
+msgstr "Nieuw Bericht"
 
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr "Thema instellingen aangepast."
+#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
+msgid "No recipient selected."
+msgstr "Geen ontvanger geselecteerd."
 
-#: ../../mod/admin.php:101 ../../mod/admin.php:570
-msgid "Site"
-msgstr "Website"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Ik kan geen contact informatie vinden."
 
-#: ../../mod/admin.php:102 ../../mod/admin.php:898 ../../mod/admin.php:913
-msgid "Users"
-msgstr "Gebruiker"
+#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr "Bericht kon niet verzonden worden."
 
-#: ../../mod/admin.php:103 ../../mod/admin.php:1002 ../../mod/admin.php:1044
-msgid "Plugins"
-msgstr "Plugins"
+#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
+msgid "Message collection failure."
+msgstr "Fout bij het verzamelen van berichten."
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:1210 ../../mod/admin.php:1244
-msgid "Themes"
-msgstr "Thema's"
+#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
+msgid "Message sent."
+msgstr "Bericht verzonden."
 
-#: ../../mod/admin.php:105
-msgid "DB updates"
-msgstr "DB aanpassingen"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Wil je echt dit bericht verwijderen?"
 
-#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1331
-msgid "Logs"
-msgstr "Logs"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Bericht verwijderd."
 
-#: ../../mod/admin.php:125 ../../include/nav.php:178
-msgid "Admin"
-msgstr "Beheer"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Gesprek verwijderd."
 
-#: ../../mod/admin.php:126
-msgid "Plugin Features"
-msgstr "Plugin Functies"
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+msgid "Please enter a link URL:"
+msgstr "Vul een internetadres/URL in:"
 
-#: ../../mod/admin.php:128
-msgid "User registrations waiting for confirmation"
-msgstr "Gebruikersregistraties wachten op bevestiging"
+#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
+msgid "Send Private Message"
+msgstr "Verstuur privébericht"
 
-#: ../../mod/admin.php:187 ../../mod/admin.php:852
-msgid "Normal Account"
-msgstr "Normale Account"
+#: ../../mod/message.php:320 ../../mod/message.php:553
+#: ../../mod/wallmessage.php:144
+msgid "To:"
+msgstr "Aan:"
 
-#: ../../mod/admin.php:188 ../../mod/admin.php:853
-msgid "Soapbox Account"
-msgstr "Zeepkist Account"
+#: ../../mod/message.php:325 ../../mod/message.php:555
+#: ../../mod/wallmessage.php:145
+msgid "Subject:"
+msgstr "Onderwerp:"
 
-#: ../../mod/admin.php:189 ../../mod/admin.php:854
-msgid "Community/Celebrity Account"
-msgstr "Gemeenschap/Beroemdheid Account"
+#: ../../mod/message.php:329 ../../mod/message.php:558
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+msgid "Your message:"
+msgstr "Jouw bericht:"
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:855
-msgid "Automatic Friend Account"
-msgstr "Automatisch Vriendschapsaccount"
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
+#: ../../include/conversation.php:1089
+msgid "Upload photo"
+msgstr "Foto uploaden"
 
-#: ../../mod/admin.php:191
-msgid "Blog Account"
-msgstr "Blog Account"
+#: ../../mod/message.php:333 ../../mod/message.php:563
+#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
+#: ../../include/conversation.php:1093
+msgid "Insert web link"
+msgstr "Voeg een webadres in"
 
-#: ../../mod/admin.php:192
-msgid "Private Forum"
-msgstr "Privé Forum"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Geen berichten."
 
-#: ../../mod/admin.php:211
-msgid "Message queues"
-msgstr "Bericht-wachtrijen"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Onbekende afzender - %s"
 
-#: ../../mod/admin.php:216 ../../mod/admin.php:569 ../../mod/admin.php:897
-#: ../../mod/admin.php:1001 ../../mod/admin.php:1043 ../../mod/admin.php:1209
-#: ../../mod/admin.php:1243 ../../mod/admin.php:1330
-msgid "Administration"
-msgstr "Beheer"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Jij en %s"
 
-#: ../../mod/admin.php:217
-msgid "Summary"
-msgstr "Samenvatting"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s en jij"
 
-#: ../../mod/admin.php:219
-msgid "Registered users"
-msgstr "Geregistreerde gebruikers"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Verwijder gesprek"
 
-#: ../../mod/admin.php:221
-msgid "Pending registrations"
-msgstr "Registraties die in de wacht staan"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: ../../mod/admin.php:222
-msgid "Version"
-msgstr "Versie"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d bericht"
+msgstr[1] "%d berichten"
 
-#: ../../mod/admin.php:224
-msgid "Active plugins"
-msgstr "Actieve plug-ins"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Bericht niet beschikbaar."
 
-#: ../../mod/admin.php:247
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr ""
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Verwijder bericht"
 
-#: ../../mod/admin.php:483
-msgid "Site settings updated."
-msgstr "Site instellingen gewijzigd."
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender."
 
-#: ../../mod/admin.php:512 ../../mod/settings.php:810
-msgid "No special theme for mobile devices"
-msgstr "Geen speciaal thema voor mobiele apparaten"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Verstuur Antwoord"
 
-#: ../../mod/admin.php:529 ../../mod/contacts.php:402
-msgid "Never"
-msgstr "Nooit"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Item niet gevonden"
 
-#: ../../mod/admin.php:530 ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Frequent"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Bericht bewerken"
 
-#: ../../mod/admin.php:531 ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "elk uur"
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1090
+msgid "upload photo"
+msgstr "Foto uploaden"
 
-#: ../../mod/admin.php:532 ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Twee keer per dag"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1091
+msgid "Attach file"
+msgstr "Bestand bijvoegen"
 
-#: ../../mod/admin.php:533 ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "dagelijks"
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1092
+msgid "attach file"
+msgstr "bestand bijvoegen"
 
-#: ../../mod/admin.php:538
-msgid "Multi user instance"
-msgstr "Server voor meerdere gebruikers"
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1094
+msgid "web link"
+msgstr "webadres"
 
-#: ../../mod/admin.php:556
-msgid "Closed"
-msgstr "Gesloten"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1095
+msgid "Insert video link"
+msgstr "Voeg video toe"
 
-#: ../../mod/admin.php:557
-msgid "Requires approval"
-msgstr "Toestemming vereist"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1096
+msgid "video link"
+msgstr "video adres"
 
-#: ../../mod/admin.php:558
-msgid "Open"
-msgstr "Open"
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1097
+msgid "Insert audio link"
+msgstr "Voeg audio adres toe"
 
-#: ../../mod/admin.php:562
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen"
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1098
+msgid "audio link"
+msgstr "audio adres"
 
-#: ../../mod/admin.php:563
-msgid "Force all links to use SSL"
-msgstr "Verplicht alle links om SSL te gebruiken"
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1099
+msgid "Set your location"
+msgstr "Stel uw locatie in"
 
-#: ../../mod/admin.php:564
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1100
+msgid "set location"
+msgstr "Stel uw locatie in"
 
-#: ../../mod/admin.php:571 ../../mod/admin.php:1045 ../../mod/admin.php:1245
-#: ../../mod/admin.php:1332 ../../mod/settings.php:601
-#: ../../mod/settings.php:711 ../../mod/settings.php:780
-#: ../../mod/settings.php:856 ../../mod/settings.php:1084
-msgid "Save Settings"
-msgstr ""
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1101
+msgid "Clear browser location"
+msgstr "Verwijder locatie uit uw webbrowser"
 
-#: ../../mod/admin.php:573
-msgid "File upload"
-msgstr "Uploaden bestand"
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1102
+msgid "clear location"
+msgstr "Verwijder locatie uit uw webbrowser"
 
-#: ../../mod/admin.php:574
-msgid "Policies"
-msgstr "Beleid"
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1108
+msgid "Permission settings"
+msgstr "Instellingen van rechten"
 
-#: ../../mod/admin.php:575
-msgid "Advanced"
-msgstr "Geavanceerd"
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1117
+msgid "CC: email addresses"
+msgstr "CC: e-mailadressen"
 
-#: ../../mod/admin.php:576
-msgid "Performance"
-msgstr "Performantie"
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1118
+msgid "Public post"
+msgstr "Openbare post"
 
-#: ../../mod/admin.php:577
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr ""
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1104
+msgid "Set title"
+msgstr "Titel plaatsen"
 
-#: ../../mod/admin.php:580
-msgid "Site name"
-msgstr "Site naam"
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1106
+msgid "Categories (comma-separated list)"
+msgstr "Categorieën (komma-gescheiden lijst)"
 
-#: ../../mod/admin.php:581
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1120
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"
 
-#: ../../mod/admin.php:582
-msgid "Additional Info"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
+#: ../../mod/profiles.php:133 ../../mod/profiles.php:160
+#: ../../mod/profiles.php:587
+msgid "Profile not found."
+msgstr "Profiel niet gevonden"
 
-#: ../../mod/admin.php:582
+#: ../../mod/dfrn_confirm.php:119
 msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at dir.friendica.com/siteinfo."
-msgstr ""
-
-#: ../../mod/admin.php:583
-msgid "System language"
-msgstr "Systeemtaal"
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."
 
-#: ../../mod/admin.php:584
-msgid "System theme"
-msgstr "Systeem thema"
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "Antwoord van de website op afstand werd niet begrepen."
 
-#: ../../mod/admin.php:584
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - <a href='#' id='cnftheme'>verander thema instellingen</a>"
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "Onverwacht antwoord van website op afstand:"
 
-#: ../../mod/admin.php:585
-msgid "Mobile system theme"
-msgstr "Mobiel systeem thema"
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "Bevestiging werd correct voltooid."
 
-#: ../../mod/admin.php:585
-msgid "Theme for mobile devices"
-msgstr "Thema voor mobiele apparaten"
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "Website op afstand berichtte: "
 
-#: ../../mod/admin.php:586
-msgid "SSL link policy"
-msgstr "Beleid SSL-links"
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "Tijdelijke fout. Wacht even en probeer opnieuw."
 
-#: ../../mod/admin.php:586
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken"
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "Verzoek mislukt of herroepen."
 
-#: ../../mod/admin.php:587
-msgid "Old style 'Share'"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Ik kan geen contact foto instellen."
 
-#: ../../mod/admin.php:587
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr ""
+#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:620
+#: ../../include/conversation.php:172
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s is nu bevriend met %2$s"
 
-#: ../../mod/admin.php:588
-msgid "Hide help entry from navigation menu"
-msgstr "Verberg de 'help' uit het navigatiemenu"
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Geen gebruiker gevonden voor '%s'"
 
-#: ../../mod/admin.php:588
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven."
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."
 
-#: ../../mod/admin.php:589
-msgid "Single user instance"
-msgstr "Server voor één gebruiker"
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."
 
-#: ../../mod/admin.php:589
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker."
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "We vonden op onze webstek geen contactrecord voor jou."
 
-#: ../../mod/admin.php:590
-msgid "Maximum image size"
-msgstr "Maximum afbeeldingsgrootte"
+#: ../../mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."
 
-#: ../../mod/admin.php:590
+#: ../../mod/dfrn_confirm.php:638
 msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking."
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."
 
-#: ../../mod/admin.php:591
-msgid "Maximum image length"
-msgstr "Maximum afbeeldingslengte"
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen."
 
-#: ../../mod/admin.php:591
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen."
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr ""
 
-#: ../../mod/admin.php:592
-msgid "JPEG image quality"
-msgstr "JPEG afbeeldingskwaliteit"
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Uw connectie werd geaccepteerd op %s"
 
-#: ../../mod/admin.php:592
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit."
+#: ../../mod/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s is toegetreden tot %2$s"
 
-#: ../../mod/admin.php:594
-msgid "Register policy"
-msgstr "Registratiebeleid"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Titel en begintijd van de gebeurtenis zijn vereist."
 
-#: ../../mod/admin.php:595
-msgid "Maximum Daily Registrations"
-msgstr "Maximum aantal registraties per dag"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l j F"
 
-#: ../../mod/admin.php:595
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
-msgstr "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect."
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Gebeurtenis bewerken"
 
-#: ../../mod/admin.php:596
-msgid "Register text"
-msgstr "Registratietekst"
+#: ../../mod/events.php:335 ../../include/text.php:1633
+#: ../../include/text.php:1644
+msgid "link to source"
+msgstr "Verwijzing naar bron"
 
-#: ../../mod/admin.php:596
-msgid "Will be displayed prominently on the registration page."
-msgstr "Dit zal prominent op de registratiepagina getoond worden."
+#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127
+#: ../../boot.php:2003 ../../include/nav.php:79
+msgid "Events"
+msgstr "Gebeurtenissen"
 
-#: ../../mod/admin.php:597
-msgid "Accounts abandoned after x days"
-msgstr "Verlaten accounts na x dagen"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Maak een nieuwe gebeurtenis"
 
-#: ../../mod/admin.php:597
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet."
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Vorige"
 
-#: ../../mod/admin.php:598
-msgid "Allowed friend domains"
-msgstr "Toegelaten vriend domeinen"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Volgende"
 
-#: ../../mod/admin.php:598
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten."
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "uur:minuut"
 
-#: ../../mod/admin.php:599
-msgid "Allowed email domains"
-msgstr "Toegelaten e-mail domeinen"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Gebeurtenis details"
 
-#: ../../mod/admin.php:599
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan."
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Formaat is %s %s. Begindatum en titel zijn vereist."
 
-#: ../../mod/admin.php:600
-msgid "Block public"
-msgstr "Openbare toegang blokkeren"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Gebeurtenis begint:"
 
-#: ../../mod/admin.php:600
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers."
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Vereist"
 
-#: ../../mod/admin.php:601
-msgid "Force publish"
-msgstr "Dwing publiceren af"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Einddatum/tijd is niet gekend of niet relevant"
 
-#: ../../mod/admin.php:601
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden."
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Gebeurtenis eindigt:"
 
-#: ../../mod/admin.php:602
-msgid "Global directory update URL"
-msgstr "Update-adres van de globale gids"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Pas aan aan de tijdzone van de gebruiker"
 
-#: ../../mod/admin.php:602
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr "URL om de globale gids aan te passen. Als dit niet is ingevuld, is de globale gids volledig onbeschikbaar voor deze toepassing."
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Beschrijving:"
 
-#: ../../mod/admin.php:603
-msgid "Allow threaded items"
-msgstr "Sta threads in conversaties toe"
+#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1513
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:155
+msgid "Location:"
+msgstr "Plaats:"
 
-#: ../../mod/admin.php:603
-msgid "Allow infinite level threading for items on this site."
-msgstr "Sta oneindige niveaus threads in conversaties op deze website toe."
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Titel:"
 
-#: ../../mod/admin.php:604
-msgid "Private posts by default for new users"
-msgstr "Privéberichten als standaard voor nieuwe gebruikers"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Deel deze gebeurtenis"
 
-#: ../../mod/admin.php:604
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Stel de standaard rechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar."
+#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126
+#: ../../boot.php:1986 ../../include/nav.php:78
+msgid "Photos"
+msgstr "Foto's"
 
-#: ../../mod/admin.php:605
-msgid "Don't include post content in email notifications"
-msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Bestanden"
 
-#: ../../mod/admin.php:605
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
-msgstr "De inhoud van berichten/commentaar/privéberichten/enzovoort  niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy."
+#: ../../mod/home.php:34
+#, php-format
+msgid "Welcome to %s"
+msgstr "Welkom op %s"
 
-#: ../../mod/admin.php:606
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr ""
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Privacyinformatie op afstand niet beschikbaar."
 
-#: ../../mod/admin.php:606
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr ""
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Zichtbaar voor:"
 
-#: ../../mod/admin.php:607
-msgid "Don't embed private images in posts"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
 msgstr ""
 
-#: ../../mod/admin.php:607
-msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr ""
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Niet in staat om je tijdlijn-locatie vast te stellen"
 
-#: ../../mod/admin.php:608
-msgid "Allow Users to set remote_self"
-msgstr ""
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Geen ontvanger."
 
-#: ../../mod/admin.php:608
+#: ../../mod/wallmessage.php:143
+#, php-format
 msgid ""
-"With checking this, every user is allowed to mark every contact as a "
-"remote_self in the repair contact dialog. Setting this flag on a contact "
-"causes mirroring every posting of that contact in the users stream."
-msgstr ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat."
 
-#: ../../mod/admin.php:609
-msgid "Block multiple registrations"
-msgstr "Blokkeer meerdere registraties"
+#: ../../mod/nogroup.php:40 ../../mod/contacts.php:473
+#: ../../mod/contacts.php:665 ../../mod/viewcontacts.php:62
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Bekijk het profiel van %s [%s]"
 
-#: ../../mod/admin.php:609
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken."
+#: ../../mod/nogroup.php:41 ../../mod/contacts.php:666
+msgid "Edit contact"
+msgstr "Contact bewerken"
 
-#: ../../mod/admin.php:610
-msgid "OpenID support"
-msgstr "OpenID ondersteuning"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Contacten die geen leden zijn van een groep"
 
-#: ../../mod/admin.php:610
-msgid "OpenID support for registration and logins."
-msgstr "OpenID ondersteuning voor registraties en logins."
+#: ../../mod/friendica.php:58
+msgid "This is Friendica, version"
+msgstr "Dit is Friendica, versie"
 
-#: ../../mod/admin.php:611
-msgid "Fullname check"
-msgstr "Controleer volledige naam"
+#: ../../mod/friendica.php:59
+msgid "running at web location"
+msgstr "draaiend op web-adres"
 
-#: ../../mod/admin.php:611
+#: ../../mod/friendica.php:61
 msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel"
-
-#: ../../mod/admin.php:612
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 reguliere uitdrukkingen"
-
-#: ../../mod/admin.php:612
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Gebruik PHP UTF8 reguliere uitdrukkingen"
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Bezoek <a href=\"http://friendica.com\">Friendica.com</a> om meer te leren over het Friendica project."
 
-#: ../../mod/admin.php:613
-msgid "Show Community Page"
-msgstr "Toon Gemeenschapspagina"
+#: ../../mod/friendica.php:63
+msgid "Bug reports and issues: please visit"
+msgstr "Bug rapporten en problemen: bezoek"
 
-#: ../../mod/admin.php:613
+#: ../../mod/friendica.php:64
 msgid ""
-"Display a Community page showing all recent public postings on this site."
-msgstr "Toon een gemeenschapspagina die alle recente openbare berichten op deze website toont."
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com"
 
-#: ../../mod/admin.php:614
-msgid "Enable OStatus support"
-msgstr "Activeer OStatus ondersteuning"
+#: ../../mod/friendica.php:78
+msgid "Installed plugins/addons/apps:"
+msgstr "Geïnstalleerde plugins/toepassingen:"
 
-#: ../../mod/admin.php:614
-msgid ""
-"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Bied ingebouwde Ostatus (identi.ca, status.net, enz.) ondersteuning. Alle communicaties in Ostatus zijn openbaar, dus zullen af en toe privacy waarschuwingen getoond worden."
+#: ../../mod/friendica.php:91
+msgid "No installed plugins/addons/apps"
+msgstr "Geen plugins of toepassingen geïnstalleerd"
 
-#: ../../mod/admin.php:615
-msgid "OStatus conversation completion interval"
-msgstr ""
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Verwijder mijn account"
 
-#: ../../mod/admin.php:615
+#: ../../mod/removeme.php:47
 msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr ""
-
-#: ../../mod/admin.php:616
-msgid "Enable Diaspora support"
-msgstr "Activeer Diaspora ondersteuning"
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."
 
-#: ../../mod/admin.php:616
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk."
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Voer je wachtwoord in voor verificatie:"
 
-#: ../../mod/admin.php:617
-msgid "Only allow Friendica contacts"
-msgstr "Laat alleen Friendica contacten toe"
+#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "Afbeelding is groter dan de toegestane %d"
 
-#: ../../mod/admin.php:617
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld."
+#: ../../mod/wall_upload.php:112 ../../mod/photos.php:805
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Niet in staat om de afbeelding te verwerken"
 
-#: ../../mod/admin.php:618
-msgid "Verify SSL"
-msgstr "Controleer SSL"
+#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
+#: ../../mod/wall_upload.php:151 ../../mod/item.php:455
+#: ../../include/message.php:144
+msgid "Wall Photos"
+msgstr ""
 
-#: ../../mod/admin.php:618
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
-msgstr "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken."
+#: ../../mod/wall_upload.php:138 ../../mod/photos.php:832
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Uploaden van afbeelding mislukt."
 
-#: ../../mod/admin.php:619
-msgid "Proxy user"
-msgstr "Proxy-gebruiker"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr ""
 
-#: ../../mod/admin.php:620
-msgid "Proxy URL"
-msgstr "Proxy-URL"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr ""
 
-#: ../../mod/admin.php:621
-msgid "Network timeout"
-msgstr "Netwerk timeout"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Log in om verder te gaan."
 
-#: ../../mod/admin.php:621
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)."
+#: ../../mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"
 
-#: ../../mod/admin.php:622
-msgid "Delivery interval"
-msgstr "Afleverinterval"
+#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s labelde %3$s van %2$s met %4$s"
 
-#: ../../mod/admin.php:622
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers."
+#: ../../mod/photos.php:52 ../../boot.php:1989
+msgid "Photo Albums"
+msgstr "Fotoalbums"
 
-#: ../../mod/admin.php:623
-msgid "Poll interval"
-msgstr "Poll-interval"
+#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1062
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1756 ../../mod/photos.php:1768
+#: ../../view/theme/diabook/theme.php:499
+msgid "Contact Photos"
+msgstr "Contactfoto's"
 
-#: ../../mod/admin.php:623
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt."
+#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815
+msgid "Upload New Photos"
+msgstr "Nieuwe foto's uploaden"
 
-#: ../../mod/admin.php:624
-msgid "Maximum Load Average"
-msgstr "Maximum gemiddelde belasting"
+#: ../../mod/photos.php:80 ../../mod/settings.php:29
+msgid "everybody"
+msgstr "iedereen"
 
-#: ../../mod/admin.php:624
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50."
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
+msgstr "Contactinformatie niet beschikbaar"
 
-#: ../../mod/admin.php:626
-msgid "Use MySQL full text engine"
-msgstr "Gebruik de tekst-zoekfunctie van MySQL"
+#: ../../mod/photos.php:155 ../../mod/photos.php:729 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74
+#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
+#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
+#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:500
+#: ../../include/user.php:334 ../../include/user.php:341
+#: ../../include/user.php:348
+msgid "Profile Photos"
+msgstr "Profielfoto's"
 
-#: ../../mod/admin.php:626
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters."
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "Album niet gevonden"
 
-#: ../../mod/admin.php:627
-msgid "Suppress Language"
-msgstr ""
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Verwijder album"
 
-#: ../../mod/admin.php:627
-msgid "Suppress language information in meta information about a posting."
-msgstr ""
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"
 
-#: ../../mod/admin.php:628
-msgid "Path to item cache"
-msgstr "Pad naar cache voor items"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511
+msgid "Delete Photo"
+msgstr "Verwijder foto"
 
-#: ../../mod/admin.php:629
-msgid "Cache duration in seconds"
-msgstr "Cache tijdsduur in seconden"
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Wil je echt deze foto verwijderen?"
 
-#: ../../mod/admin.php:629
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day)."
-msgstr "Hoe lang moeten bestanden in cache gehouden worden? Standaard waarde is 86400 seconden (een dag)."
+#: ../../mod/photos.php:660
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s is gelabeld in %2$s door %3$s"
 
-#: ../../mod/admin.php:630
-msgid "Path for lock file"
-msgstr "Pad voor lock bestand"
+#: ../../mod/photos.php:660
+msgid "a photo"
+msgstr "een foto"
 
-#: ../../mod/admin.php:631
-msgid "Temp path"
-msgstr "Tijdelijk pad"
+#: ../../mod/photos.php:765
+msgid "Image exceeds size limit of "
+msgstr "Afbeelding is groter dan de maximale afmeting van"
 
-#: ../../mod/admin.php:632
-msgid "Base path to installation"
-msgstr "Basispad voor installatie"
+#: ../../mod/photos.php:773
+msgid "Image file is empty."
+msgstr "Afbeeldingsbestand is leeg."
 
-#: ../../mod/admin.php:634
-msgid "New base url"
-msgstr ""
+#: ../../mod/photos.php:928
+msgid "No photos selected"
+msgstr "Geen foto's geselecteerd"
 
-#: ../../mod/admin.php:652
-msgid "Update has been marked successful"
-msgstr "Wijziging succesvol gemarkeerd "
+#: ../../mod/photos.php:1029 ../../mod/videos.php:226
+msgid "Access to this item is restricted."
+msgstr "Toegang tot dit item is beperkt."
 
-#: ../../mod/admin.php:662
+#: ../../mod/photos.php:1092
 #, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "Uitvoering van %s is mislukt. Kijk de systeem logbestanden na."
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt."
 
-#: ../../mod/admin.php:665
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Wijziging %s geslaagd."
+#: ../../mod/photos.php:1127
+msgid "Upload Photos"
+msgstr "Upload foto's"
 
-#: ../../mod/admin.php:669
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is."
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Nieuwe albumnaam: "
 
-#: ../../mod/admin.php:672
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "Update-functie %s kon niet gevonden worden."
+#: ../../mod/photos.php:1132
+msgid "or existing album name: "
+msgstr "of bestaande albumnaam: "
 
-#: ../../mod/admin.php:687
-msgid "No failed updates."
-msgstr "Geen misluke wijzigingen"
+#: ../../mod/photos.php:1133
+msgid "Do not show a status post for this upload"
+msgstr "Toon geen bericht op je tijdlijn van deze upload"
 
-#: ../../mod/admin.php:691
-msgid "Failed Updates"
-msgstr "Misluke wijzigingen"
+#: ../../mod/photos.php:1135 ../../mod/photos.php:1506
+msgid "Permissions"
+msgstr "Rechten"
 
-#: ../../mod/admin.php:692
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven."
-
-#: ../../mod/admin.php:693
-msgid "Mark success (if update was manually applied)"
-msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)"
-
-#: ../../mod/admin.php:694
-msgid "Attempt to execute this update step automatically"
-msgstr "Probeer deze stap automatisch uit te voeren"
+#: ../../mod/photos.php:1144 ../../mod/photos.php:1515
+#: ../../mod/settings.php:1139
+msgid "Show to Groups"
+msgstr "Tonen aan groepen"
 
-#: ../../mod/admin.php:740
-msgid "Registration successful. Email send to user"
-msgstr ""
+#: ../../mod/photos.php:1145 ../../mod/photos.php:1516
+#: ../../mod/settings.php:1140
+msgid "Show to Contacts"
+msgstr "Tonen aan contacten"
 
-#: ../../mod/admin.php:750
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s gebruiker geblokkeerd/niet geblokkeerd"
-msgstr[1] "%s gebruikers geblokkeerd/niet geblokkeerd"
+#: ../../mod/photos.php:1146
+msgid "Private Photo"
+msgstr "Privé foto"
 
-#: ../../mod/admin.php:757
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s gebruiker verwijderd"
-msgstr[1] "%s gebruikers verwijderd"
+#: ../../mod/photos.php:1147
+msgid "Public Photo"
+msgstr "Publieke foto"
 
-#: ../../mod/admin.php:796
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Gebruiker '%s' verwijderd"
+#: ../../mod/photos.php:1214
+msgid "Edit Album"
+msgstr "Album wijzigen"
 
-#: ../../mod/admin.php:804
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Gebruiker '%s' niet meer geblokkeerd"
+#: ../../mod/photos.php:1220
+msgid "Show Newest First"
+msgstr "Toon niewste eerst"
 
-#: ../../mod/admin.php:804
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Gebruiker '%s' geblokkeerd"
+#: ../../mod/photos.php:1222
+msgid "Show Oldest First"
+msgstr "Toon oudste eerst"
 
-#: ../../mod/admin.php:899
-msgid "Add User"
-msgstr ""
+#: ../../mod/photos.php:1255 ../../mod/photos.php:1798
+msgid "View Photo"
+msgstr "Bekijk foto"
 
-#: ../../mod/admin.php:900
-msgid "select all"
-msgstr "Alles selecteren"
+#: ../../mod/photos.php:1290
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."
 
-#: ../../mod/admin.php:901
-msgid "User registrations waiting for confirm"
-msgstr "Gebruikersregistraties wachten op een bevestiging"
+#: ../../mod/photos.php:1292
+msgid "Photo not available"
+msgstr "Foto is niet beschikbaar"
 
-#: ../../mod/admin.php:902
-msgid "User waiting for permanent deletion"
-msgstr ""
+#: ../../mod/photos.php:1348
+msgid "View photo"
+msgstr "Bekijk foto"
 
-#: ../../mod/admin.php:903
-msgid "Request date"
-msgstr "Registratiedatum"
+#: ../../mod/photos.php:1348
+msgid "Edit photo"
+msgstr "Bewerk foto"
 
-#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916
-#: ../../mod/admin.php:929 ../../mod/crepair.php:150
-#: ../../mod/settings.php:603 ../../mod/settings.php:629
-msgid "Name"
-msgstr "Naam"
+#: ../../mod/photos.php:1349
+msgid "Use as profile photo"
+msgstr "Gebruik als profielfoto"
 
-#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916
-#: ../../mod/admin.php:931 ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
-msgstr "E-mail"
+#: ../../mod/photos.php:1374
+msgid "View Full Size"
+msgstr "Bekijk in volledig formaat"
 
-#: ../../mod/admin.php:904
-msgid "No registrations."
-msgstr "Geen registraties."
+#: ../../mod/photos.php:1453
+msgid "Tags: "
+msgstr "Labels: "
 
-#: ../../mod/admin.php:905 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:208
-msgid "Approve"
-msgstr "Goedkeuren"
+#: ../../mod/photos.php:1456
+msgid "[Remove any tag]"
+msgstr "[Alle labels verwijderen]"
 
-#: ../../mod/admin.php:906
-msgid "Deny"
-msgstr "Weiger"
+#: ../../mod/photos.php:1496
+msgid "Rotate CW (right)"
+msgstr "Roteren met de klok mee (rechts)"
 
-#: ../../mod/admin.php:908 ../../mod/contacts.php:425
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:692
-msgid "Block"
-msgstr "Blokkeren"
+#: ../../mod/photos.php:1497
+msgid "Rotate CCW (left)"
+msgstr "Roteren tegen de klok in (links)"
 
-#: ../../mod/admin.php:909 ../../mod/contacts.php:425
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:692
-msgid "Unblock"
-msgstr "Blokkering opheffen"
+#: ../../mod/photos.php:1499
+msgid "New album name"
+msgstr "Nieuwe albumnaam"
 
-#: ../../mod/admin.php:910
-msgid "Site admin"
-msgstr "Sitebeheerder"
+#: ../../mod/photos.php:1502
+msgid "Caption"
+msgstr "Onderschrift"
 
-#: ../../mod/admin.php:911
-msgid "Account expired"
-msgstr "Account verlopen"
+#: ../../mod/photos.php:1504
+msgid "Add a Tag"
+msgstr "Een label toevoegen"
 
-#: ../../mod/admin.php:914
-msgid "New User"
-msgstr ""
+#: ../../mod/photos.php:1508
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
-msgid "Register date"
-msgstr "Registratiedatum"
+#: ../../mod/photos.php:1517
+msgid "Private photo"
+msgstr "Privé foto"
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
-msgid "Last login"
-msgstr "Laatste login"
+#: ../../mod/photos.php:1518
+msgid "Public photo"
+msgstr "Publieke foto"
 
-#: ../../mod/admin.php:915 ../../mod/admin.php:916
-msgid "Last item"
-msgstr "Laatste item"
+#: ../../mod/photos.php:1540 ../../include/conversation.php:1088
+msgid "Share"
+msgstr "Delen"
 
-#: ../../mod/admin.php:915
-msgid "Deleted since"
-msgstr ""
+#: ../../mod/photos.php:1804 ../../mod/videos.php:308
+msgid "View Album"
+msgstr "Album bekijken"
 
-#: ../../mod/admin.php:916
-msgid "Account"
-msgstr "Account"
+#: ../../mod/photos.php:1813
+msgid "Recent Photos"
+msgstr "Recente foto's"
 
-#: ../../mod/admin.php:918
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Geen profiel"
 
-#: ../../mod/admin.php:919
+#: ../../mod/register.php:100
 msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
+"Registration successful. Please check your email for further instructions."
+msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."
 
-#: ../../mod/admin.php:929
-msgid "Name of the new user."
-msgstr ""
+#: ../../mod/register.php:104
+msgid "Failed to send email message. Here is the message that failed."
+msgstr "E-mail bericht kon niet verstuurd worden. Hier is het bericht."
 
-#: ../../mod/admin.php:930
-msgid "Nickname"
-msgstr ""
+#: ../../mod/register.php:109
+msgid "Your registration can not be processed."
+msgstr "Je registratie kan niet verwerkt worden."
 
-#: ../../mod/admin.php:930
-msgid "Nickname of the new user."
-msgstr ""
+#: ../../mod/register.php:149
+#, php-format
+msgid "Registration request at %s"
+msgstr "Registratieverzoek op %s"
 
-#: ../../mod/admin.php:931
-msgid "Email address of the new user."
-msgstr ""
+#: ../../mod/register.php:158
+msgid "Your registration is pending approval by the site owner."
+msgstr "Jouw registratie wacht op goedkeuring van de beheerder."
 
-#: ../../mod/admin.php:964
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s uitgeschakeld."
+#: ../../mod/register.php:196 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw."
 
-#: ../../mod/admin.php:968
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s ingeschakeld."
+#: ../../mod/register.php:224
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken."
 
-#: ../../mod/admin.php:978 ../../mod/admin.php:1181
-msgid "Disable"
-msgstr "Uitschakelen"
+#: ../../mod/register.php:225
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."
 
-#: ../../mod/admin.php:980 ../../mod/admin.php:1183
-msgid "Enable"
-msgstr "Inschakelen"
+#: ../../mod/register.php:226
+msgid "Your OpenID (optional): "
+msgstr "Je OpenID (optioneel):"
 
-#: ../../mod/admin.php:1003 ../../mod/admin.php:1211
-msgid "Toggle"
-msgstr "Schakelaar"
+#: ../../mod/register.php:240
+msgid "Include your profile in member directory?"
+msgstr "Je profiel in de ledengids opnemen?"
 
-#: ../../mod/admin.php:1011 ../../mod/admin.php:1221
-msgid "Author: "
-msgstr "Auteur:"
+#: ../../mod/register.php:261
+msgid "Membership on this site is by invitation only."
+msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging."
 
-#: ../../mod/admin.php:1012 ../../mod/admin.php:1222
-msgid "Maintainer: "
-msgstr "Onderhoud:"
+#: ../../mod/register.php:262
+msgid "Your invitation ID: "
+msgstr "Je uitnodigingsid:"
 
-#: ../../mod/admin.php:1141
-msgid "No themes found."
-msgstr "Geen thema's gevonden."
+#: ../../mod/register.php:273
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Je volledige naam (bijv. Jan Jansens):"
 
-#: ../../mod/admin.php:1203
-msgid "Screenshot"
-msgstr "Schermafdruk"
+#: ../../mod/register.php:274
+msgid "Your Email Address: "
+msgstr "Je email adres:"
 
-#: ../../mod/admin.php:1249
-msgid "[Experimental]"
-msgstr "[Experimenteel]"
+#: ../../mod/register.php:275
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan '<strong>bijnaam@$sitename</strong>' zijn."
 
-#: ../../mod/admin.php:1250
-msgid "[Unsupported]"
-msgstr "[Niet ondersteund]"
+#: ../../mod/register.php:276
+msgid "Choose a nickname: "
+msgstr "Kies een bijnaam:"
 
-#: ../../mod/admin.php:1277
-msgid "Log settings updated."
-msgstr "Log instellingen gewijzigd"
+#: ../../mod/register.php:279 ../../boot.php:1136 ../../include/nav.php:108
+msgid "Register"
+msgstr "Registreer"
 
-#: ../../mod/admin.php:1333
-msgid "Clear"
-msgstr "Wis"
+#: ../../mod/register.php:285 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Importeren"
 
-#: ../../mod/admin.php:1339
-msgid "Enable Debugging"
+#: ../../mod/register.php:286
+msgid "Import your profile to this friendica instance"
 msgstr ""
 
-#: ../../mod/admin.php:1340
-msgid "Log file"
-msgstr "Logbestand"
-
-#: ../../mod/admin.php:1340
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie."
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
+msgstr "Geen geldige account gevonden."
 
-#: ../../mod/admin.php:1341
-msgid "Log level"
-msgstr "Log niveau"
+#: ../../mod/lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."
 
-#: ../../mod/admin.php:1390 ../../mod/contacts.php:481
-msgid "Update now"
-msgstr "Wijzig nu"
+#: ../../mod/lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"
 
-#: ../../mod/admin.php:1391
-msgid "Close"
-msgstr "Afsluiten"
-
-#: ../../mod/admin.php:1397
-msgid "FTP Host"
-msgstr "FTP Server"
-
-#: ../../mod/admin.php:1398
-msgid "FTP Path"
-msgstr "FTP Pad"
+#: ../../mod/lostpass.php:66
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."
 
-#: ../../mod/admin.php:1399
-msgid "FTP User"
-msgstr "FTP Gebruiker"
+#: ../../mod/lostpass.php:84 ../../boot.php:1175
+msgid "Password Reset"
+msgstr "Wachtwoord opnieuw instellen"
 
-#: ../../mod/admin.php:1400
-msgid "FTP Password"
-msgstr "FTP wachtwoord"
+#: ../../mod/lostpass.php:85
+msgid "Your password has been reset as requested."
+msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd."
 
-#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:934
-#: ../../include/text.php:935 ../../include/nav.php:118
-msgid "Search"
-msgstr "Zoeken"
+#: ../../mod/lostpass.php:86
+msgid "Your new password is"
+msgstr "Je nieuwe wachtwoord is"
 
-#: ../../mod/_search.php:180 ../../mod/_search.php:206
-#: ../../mod/search.php:179 ../../mod/search.php:205
-#: ../../mod/community.php:61 ../../mod/community.php:91
-msgid "No results."
-msgstr "Geen resultaten."
+#: ../../mod/lostpass.php:87
+msgid "Save or copy your new password - and then"
+msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Tips voor nieuwe leden"
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
+msgstr "klik hier om in te loggen"
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "link"
+#: ../../mod/lostpass.php:89
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina."
 
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#: ../../mod/lostpass.php:107
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s labelde %3$s van %2$s met %4$s"
+msgid "Your password has been changed at %s"
+msgstr "Je wachtwoord is veranderd op %s"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Item niet gevonden"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Wachtwoord vergeten?"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Bericht bewerken"
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1082
-msgid "upload photo"
-msgstr "Foto uploaden"
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
+msgstr "Bijnaam of e-mail:"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1083
-msgid "Attach file"
-msgstr "Bestand bijvoegen"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Opnieuw"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1084
-msgid "attach file"
-msgstr "bestand bijvoegen"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Systeem onbeschikbaar wegens onderhoud"
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1086
-msgid "web link"
-msgstr "webadres"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Item niet beschikbaar"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1087
-msgid "Insert video link"
-msgstr "Voeg video toe"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Item niet gevonden"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1088
-msgid "video link"
-msgstr "video adres"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Toepassingen"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1089
-msgid "Insert audio link"
-msgstr "Voeg audio adres toe"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Geen toepassingen geïnstalleerd"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1090
-msgid "audio link"
-msgstr "audio adres"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Help:"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1091
-msgid "Set your location"
-msgstr "Stel uw locatie in"
+#: ../../mod/help.php:84 ../../include/nav.php:113
+msgid "Help"
+msgstr "Help"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1092
-msgid "set location"
-msgstr "Stel uw locatie in"
+#: ../../mod/contacts.php:104
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] ""
+msgstr[1] ""
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1093
-msgid "Clear browser location"
-msgstr "Verwijder locatie uit uw webbrowser"
+#: ../../mod/contacts.php:135 ../../mod/contacts.php:264
+msgid "Could not access contact record."
+msgstr "Kon geen toegang krijgen tot de contactgegevens"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1094
-msgid "clear location"
-msgstr "Verwijder locatie uit uw webbrowser"
+#: ../../mod/contacts.php:149
+msgid "Could not locate selected profile."
+msgstr "Kon het geselecteerde profiel niet vinden."
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1100
-msgid "Permission settings"
-msgstr "Instellingen van rechten"
+#: ../../mod/contacts.php:178
+msgid "Contact updated."
+msgstr "Contact bijgewerkt."
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1109
-msgid "CC: email addresses"
-msgstr "CC: e-mailadressen"
+#: ../../mod/contacts.php:278
+msgid "Contact has been blocked"
+msgstr "Contact is geblokkeerd"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1110
-msgid "Public post"
-msgstr "Openbare post"
+#: ../../mod/contacts.php:278
+msgid "Contact has been unblocked"
+msgstr "Contact is gedeblokkeerd"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1096
-msgid "Set title"
-msgstr "Titel plaatsen"
+#: ../../mod/contacts.php:288
+msgid "Contact has been ignored"
+msgstr "Contact wordt genegeerd"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1098
-msgid "Categories (comma-separated list)"
-msgstr "Categorieën (komma-gescheiden lijst)"
+#: ../../mod/contacts.php:288
+msgid "Contact has been unignored"
+msgstr "Contact wordt niet meer genegeerd"
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1112
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"
+#: ../../mod/contacts.php:299
+msgid "Contact has been archived"
+msgstr "Contact is gearchiveerd"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Item niet beschikbaar"
+#: ../../mod/contacts.php:299
+msgid "Contact has been unarchived"
+msgstr "Contact is niet meer gearchiveerd"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Item niet gevonden"
+#: ../../mod/contacts.php:324 ../../mod/contacts.php:697
+msgid "Do you really want to delete this contact?"
+msgstr "Wil je echt dit contact verwijderen?"
 
-#: ../../mod/regmod.php:63
-msgid "Account approved."
-msgstr "Account goedgekeurd."
+#: ../../mod/contacts.php:341
+msgid "Contact has been removed."
+msgstr "Contact is verwijderd."
 
-#: ../../mod/regmod.php:100
+#: ../../mod/contacts.php:379
 #, php-format
-msgid "Registration revoked for %s"
-msgstr "Registratie ingetrokken voor %s"
+msgid "You are mutual friends with %s"
+msgstr "Je bent wederzijds bevriend met %s"
 
-#: ../../mod/regmod.php:112
-msgid "Please login."
-msgstr "Log a.u.b. in."
+#: ../../mod/contacts.php:383
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Je deelt met %s"
 
-#: ../../mod/directory.php:57
-msgid "Find on this site"
-msgstr "Op deze website zoeken"
+#: ../../mod/contacts.php:388
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s deelt met jou"
 
-#: ../../mod/directory.php:59 ../../mod/contacts.php:685
-msgid "Finding: "
-msgstr "Gevonden:"
+#: ../../mod/contacts.php:405
+msgid "Private communications are not available for this contact."
+msgstr "Privécommunicatie met dit contact is niet beschikbaar."
 
-#: ../../mod/directory.php:60
-msgid "Site Directory"
-msgstr "Websitegids"
+#: ../../mod/contacts.php:412
+msgid "(Update was successful)"
+msgstr "(Wijziging is geslaagd)"
 
-#: ../../mod/directory.php:61 ../../mod/contacts.php:686
-#: ../../include/contact_widgets.php:33
-msgid "Find"
-msgstr "Zoek"
+#: ../../mod/contacts.php:412
+msgid "(Update was not successful)"
+msgstr "(Wijziging is niet geslaagd)"
 
-#: ../../mod/directory.php:111 ../../mod/profiles.php:686
-msgid "Age: "
-msgstr "Leeftijd:"
+#: ../../mod/contacts.php:414
+msgid "Suggest friends"
+msgstr "Stel vrienden voor"
 
-#: ../../mod/directory.php:114
-msgid "Gender: "
-msgstr "Geslacht:"
+#: ../../mod/contacts.php:418
+#, php-format
+msgid "Network type: %s"
+msgstr "Netwerk type: %s"
 
-#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "Over:"
+#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d gedeeld contact"
+msgstr[1] "%d gedeelde contacten"
 
-#: ../../mod/directory.php:187
-msgid "No entries (some entries may be hidden)."
-msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)."
+#: ../../mod/contacts.php:426
+msgid "View all contacts"
+msgstr "Alle contacten zien"
 
-#: ../../mod/crepair.php:104
-msgid "Contact settings applied."
-msgstr "Contactinstellingen toegepast."
+#: ../../mod/contacts.php:434
+msgid "Toggle Blocked status"
+msgstr "Schakel geblokkeerde status"
 
-#: ../../mod/crepair.php:106
-msgid "Contact update failed."
-msgstr "Aanpassen van contact mislukt."
+#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
+#: ../../mod/contacts.php:701
+msgid "Unignore"
+msgstr "Negeer niet meer"
 
-#: ../../mod/crepair.php:137
-msgid "Repair Contact Settings"
-msgstr "Contactinstellingen herstellen"
+#: ../../mod/contacts.php:440
+msgid "Toggle Ignored status"
+msgstr "Schakel negeerstatus"
 
-#: ../../mod/crepair.php:139
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr ""
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
+msgid "Unarchive"
+msgstr "Archiveer niet meer"
 
-#: ../../mod/crepair.php:140
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
+msgid "Archive"
+msgstr "Archiveer"
 
-#: ../../mod/crepair.php:146
-msgid "Return to contact editor"
-msgstr "Ga terug naar contactbewerker"
+#: ../../mod/contacts.php:447
+msgid "Toggle Archive status"
+msgstr "Schakel archiveringsstatus"
 
-#: ../../mod/crepair.php:151
-msgid "Account Nickname"
-msgstr "Bijnaam account"
+#: ../../mod/contacts.php:450
+msgid "Repair"
+msgstr "Herstellen"
 
-#: ../../mod/crepair.php:152
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam"
+#: ../../mod/contacts.php:453
+msgid "Advanced Contact Settings"
+msgstr "Geavanceerde instellingen voor contacten"
 
-#: ../../mod/crepair.php:153
-msgid "Account URL"
-msgstr "URL account"
+#: ../../mod/contacts.php:459
+msgid "Communications lost with this contact!"
+msgstr "Communicatie met dit contact is verbroken!"
 
-#: ../../mod/crepair.php:154
-msgid "Friend Request URL"
-msgstr "URL vriendschapsverzoek"
+#: ../../mod/contacts.php:462
+msgid "Contact Editor"
+msgstr "Contactbewerker"
 
-#: ../../mod/crepair.php:155
-msgid "Friend Confirm URL"
-msgstr ""
+#: ../../mod/contacts.php:465
+msgid "Profile Visibility"
+msgstr "Zichtbaarheid profiel"
 
-#: ../../mod/crepair.php:156
-msgid "Notification Endpoint URL"
-msgstr ""
+#: ../../mod/contacts.php:466
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. "
 
-#: ../../mod/crepair.php:157
-msgid "Poll/Feed URL"
-msgstr "URL poll/feed"
+#: ../../mod/contacts.php:467
+msgid "Contact Information / Notes"
+msgstr "Contactinformatie / aantekeningen"
 
-#: ../../mod/crepair.php:158
-msgid "New photo from this URL"
-msgstr "Nieuwe foto van deze URL"
+#: ../../mod/contacts.php:468
+msgid "Edit contact notes"
+msgstr "Wijzig aantekeningen over dit contact"
 
-#: ../../mod/crepair.php:159
-msgid "Remote Self"
+#: ../../mod/contacts.php:474
+msgid "Block/Unblock contact"
+msgstr "Blokkeer/deblokkeer contact"
+
+#: ../../mod/contacts.php:475
+msgid "Ignore contact"
+msgstr "Negeer contact"
+
+#: ../../mod/contacts.php:476
+msgid "Repair URL settings"
+msgstr "Repareer URL-instellingen"
+
+#: ../../mod/contacts.php:477
+msgid "View conversations"
+msgstr "Toon conversaties"
+
+#: ../../mod/contacts.php:479
+msgid "Delete contact"
+msgstr "Verwijder contact"
+
+#: ../../mod/contacts.php:483
+msgid "Last update:"
+msgstr "Laatste wijziging:"
+
+#: ../../mod/contacts.php:485
+msgid "Update public posts"
+msgstr "Openbare posts aanpassen"
+
+#: ../../mod/contacts.php:494
+msgid "Currently blocked"
+msgstr "Op dit moment geblokkeerd"
+
+#: ../../mod/contacts.php:495
+msgid "Currently ignored"
+msgstr "Op dit moment genegeerd"
+
+#: ../../mod/contacts.php:496
+msgid "Currently archived"
+msgstr "Op dit moment gearchiveerd"
+
+#: ../../mod/contacts.php:497
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> nog zichtbaar zijn"
+
+#: ../../mod/contacts.php:498
+msgid "Notification for new posts"
 msgstr ""
 
-#: ../../mod/crepair.php:161
-msgid "Mirror postings from this contact"
+#: ../../mod/contacts.php:498
+msgid "Send a notification of every new post of this contact"
 msgstr ""
 
-#: ../../mod/crepair.php:161
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
+#: ../../mod/contacts.php:499
+msgid "Fetch further information for feeds"
 msgstr ""
 
+#: ../../mod/contacts.php:550
+msgid "Suggestions"
+msgstr "Voorstellen"
+
+#: ../../mod/contacts.php:553
+msgid "Suggest potential friends"
+msgstr "Stel vrienden voor"
+
+#: ../../mod/contacts.php:556 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Alle Contacten"
+
+#: ../../mod/contacts.php:559
+msgid "Show all contacts"
+msgstr "Toon alle contacten"
+
+#: ../../mod/contacts.php:562
+msgid "Unblocked"
+msgstr "Niet geblokkeerd"
+
+#: ../../mod/contacts.php:565
+msgid "Only show unblocked contacts"
+msgstr "Toon alleen niet-geblokkeerde contacten"
+
+#: ../../mod/contacts.php:569
+msgid "Blocked"
+msgstr "Geblokkeerd"
+
+#: ../../mod/contacts.php:572
+msgid "Only show blocked contacts"
+msgstr "Toon alleen geblokkeerde contacten"
+
+#: ../../mod/contacts.php:576
+msgid "Ignored"
+msgstr "Genegeerd"
+
+#: ../../mod/contacts.php:579
+msgid "Only show ignored contacts"
+msgstr "Toon alleen genegeerde contacten"
+
+#: ../../mod/contacts.php:583
+msgid "Archived"
+msgstr "Gearchiveerd"
+
+#: ../../mod/contacts.php:586
+msgid "Only show archived contacts"
+msgstr "Toon alleen gearchiveerde contacten"
+
+#: ../../mod/contacts.php:590
+msgid "Hidden"
+msgstr "Verborgen"
+
+#: ../../mod/contacts.php:593
+msgid "Only show hidden contacts"
+msgstr "Toon alleen verborgen contacten"
+
+#: ../../mod/contacts.php:641
+msgid "Mutual Friendship"
+msgstr "Wederzijdse vriendschap"
+
+#: ../../mod/contacts.php:645
+msgid "is a fan of yours"
+msgstr "Is een fan van jou"
+
+#: ../../mod/contacts.php:649
+msgid "you are a fan of"
+msgstr "Jij bent een fan van"
+
+#: ../../mod/contacts.php:688 ../../view/theme/diabook/theme.php:125
+#: ../../include/nav.php:173
+msgid "Contacts"
+msgstr "Contacten"
+
+#: ../../mod/contacts.php:692
+msgid "Search your contacts"
+msgstr "Doorzoek je contacten"
+
+#: ../../mod/contacts.php:693 ../../mod/directory.php:59
+msgid "Finding: "
+msgstr "Gevonden:"
+
+#: ../../mod/contacts.php:694 ../../mod/directory.php:61
+#: ../../include/contact_widgets.php:33
+msgid "Find"
+msgstr "Zoek"
+
+#: ../../mod/contacts.php:699 ../../mod/settings.php:132
+#: ../../mod/settings.php:635
+msgid "Update"
+msgstr "Wijzigen"
+
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Geen video's geselecteerd"
+
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Recente video's"
+
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Nieuwe video's uploaden"
+
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Gedeelde Vrienden"
+
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Geen gedeelde contacten."
+
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Contact toegevoegd"
+
 #: ../../mod/uimport.php:66
 msgid "Move account"
 msgstr "Account verplaatsen"
@@ -3047,3479 +3042,3697 @@ msgid ""
 "select \"Export account\""
 msgstr ""
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Privacyinformatie op afstand niet beschikbaar."
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s volgt %3$s van %2$s"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Zichtbaar voor:"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Vrienden van %s"
 
-#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:937
-msgid "Save"
-msgstr "Bewaren"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Geen vrienden om te laten zien."
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Help:"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Label verwijderd"
 
-#: ../../mod/help.php:84 ../../include/nav.php:113
-msgid "Help"
-msgstr "Help"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Verwijder label van item"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Geen profiel"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Selecteer een label om te verwijderen: "
 
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
-msgstr "Verzoek is al goedgekeurd"
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133
+msgid "Remove"
+msgstr "Verwijderen"
 
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profiel is ongeldig of bevat geen informatie"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Welkom bij Friendica"
 
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Checklist voor nieuwe leden"
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
-msgid "Warning: profile location has no profile photo."
-msgstr "Waarschuwing: Profieladres heeft geen profielfoto."
+#: ../../mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen."
 
-#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "De %d vereiste parameter is niet op het gegeven adres gevonden"
-msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Aan de slag"
 
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
-msgstr "Verzoek voltooid."
-
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
-msgstr "Onherstelbare protocolfout. "
-
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
-msgstr "Profiel onbeschikbaar"
-
-#: ../../mod/dfrn_request.php:262
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s heeft te veel verzoeken gehad vandaag."
-
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
-msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden."
-
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen."
-
-#: ../../mod/dfrn_request.php:326
-msgid "Invalid locator"
-msgstr "Ongeldige plaatsbepaler"
-
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr "Geen geldig e-mailadres"
-
-#: ../../mod/dfrn_request.php:362
-msgid "This account has not been configured for email. Request failed."
-msgstr "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail."
-
-#: ../../mod/dfrn_request.php:458
-msgid "Unable to resolve your name at the provided location."
-msgstr "Ik kan jouw naam op het opgegeven adres niet vinden."
-
-#: ../../mod/dfrn_request.php:471
-msgid "You have already introduced yourself here."
-msgstr "Je hebt jezelf hier al voorgesteld."
-
-#: ../../mod/dfrn_request.php:475
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Blijkbaar bent u al bevriend met %s."
-
-#: ../../mod/dfrn_request.php:496
-msgid "Invalid profile URL."
-msgstr "Ongeldig profiel adres."
-
-#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "Niet toegelaten profiel adres."
-
-#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:174
-msgid "Failed to update contact record."
-msgstr "Ik kon de contactgegevens niet aanpassen."
-
-#: ../../mod/dfrn_request.php:592
-msgid "Your introduction has been sent."
-msgstr "Je verzoek is verzonden."
-
-#: ../../mod/dfrn_request.php:645
-msgid "Please login to confirm introduction."
-msgstr "Log in om je verzoek te bevestigen."
-
-#: ../../mod/dfrn_request.php:659
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Je huidige identiteit is niet de juiste. Log a.u.b. in met <strong>dit</strong> profiel."
-
-#: ../../mod/dfrn_request.php:670
-msgid "Hide this contact"
-msgstr "Verberg dit contact"
-
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Welcome home %s."
-msgstr "Welkom terug %s."
-
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s."
-
-#: ../../mod/dfrn_request.php:675
-msgid "Confirm"
-msgstr "Bevestig"
-
-#: ../../mod/dfrn_request.php:716 ../../include/items.php:3532
-msgid "[Name Withheld]"
-msgstr "[Naam achtergehouden]"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Doorloop Friendica"
 
-#: ../../mod/dfrn_request.php:811
+#: ../../mod/newmember.php:18
 msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden."
 
-#: ../../mod/dfrn_request.php:827
-msgid "<strike>Connect as an email follower</strike> (Coming soon)"
-msgstr "<strike>Sluit aan als e-mail volger</strike> (Binnenkort)"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Ga naar je instellingen"
 
-#: ../../mod/dfrn_request.php:829
+#: ../../mod/newmember.php:26
 msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
-" Friendica site and join us today</a>."
-msgstr "Als je nog geen lid bent van het vrije sociale web,  <a href=\"http://dir.friendica.com/siteinfo\">volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan</a>."
-
-#: ../../mod/dfrn_request.php:832
-msgid "Friend/Connection Request"
-msgstr "Vriendschaps-/connectieverzoek"
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web."
 
-#: ../../mod/dfrn_request.php:833
+#: ../../mod/newmember.php:28
 msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
-
-#: ../../mod/dfrn_request.php:834
-msgid "Please answer the following:"
-msgstr "Beantwoord het volgende:"
-
-#: ../../mod/dfrn_request.php:835
-#, php-format
-msgid "Does %s know you?"
-msgstr "Kent %s jou?"
-
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "Voeg een persoonlijke opmerking toe:"
-
-#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden."
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Gefedereerde Sociale Web"
+#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
+#: ../../include/nav.php:77
+msgid "Profile"
+msgstr "Profiel"
 
-#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:722
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Profielfoto uploaden"
 
-#: ../../mod/dfrn_request.php:843
-#, php-format
+#: ../../mod/newmember.php:36
 msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr "- Gebruik a.u.b. niet dit formulier. Vul %s in in je Diaspora zoekbalk."
-
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr "Adres van uw identiteit:"
-
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "Aanvraag indienen"
-
-#: ../../mod/update_profile.php:41 ../../mod/update_network.php:22
-#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
-#: ../../mod/update_notes.php:41
-msgid "[Embedded content - reload page to view]"
-msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]"
-
-#: ../../mod/content.php:496 ../../include/conversation.php:686
-msgid "View in context"
-msgstr "In context bekijken"
-
-#: ../../mod/contacts.php:104
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/contacts.php:135 ../../mod/contacts.php:258
-msgid "Could not access contact record."
-msgstr "Kon geen toegang krijgen tot de contactgegevens"
-
-#: ../../mod/contacts.php:149
-msgid "Could not locate selected profile."
-msgstr "Kon het geselecteerde profiel niet vinden."
-
-#: ../../mod/contacts.php:172
-msgid "Contact updated."
-msgstr "Contact bijgewerkt."
-
-#: ../../mod/contacts.php:272
-msgid "Contact has been blocked"
-msgstr "Contact is geblokkeerd"
-
-#: ../../mod/contacts.php:272
-msgid "Contact has been unblocked"
-msgstr "Contact is gedeblokkeerd"
-
-#: ../../mod/contacts.php:282
-msgid "Contact has been ignored"
-msgstr "Contact wordt genegeerd"
-
-#: ../../mod/contacts.php:282
-msgid "Contact has been unignored"
-msgstr "Contact wordt niet meer genegeerd"
-
-#: ../../mod/contacts.php:293
-msgid "Contact has been archived"
-msgstr "Contact is gearchiveerd"
-
-#: ../../mod/contacts.php:293
-msgid "Contact has been unarchived"
-msgstr "Contact is niet meer gearchiveerd"
-
-#: ../../mod/contacts.php:318 ../../mod/contacts.php:689
-msgid "Do you really want to delete this contact?"
-msgstr "Wil je echt dit contact verwijderen?"
-
-#: ../../mod/contacts.php:335
-msgid "Contact has been removed."
-msgstr "Contact is verwijderd."
-
-#: ../../mod/contacts.php:373
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Je bent wederzijds bevriend met %s"
-
-#: ../../mod/contacts.php:377
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Je deelt met %s"
-
-#: ../../mod/contacts.php:382
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s deelt met jou"
-
-#: ../../mod/contacts.php:399
-msgid "Private communications are not available for this contact."
-msgstr "Privécommunicatie met dit contact is niet beschikbaar."
-
-#: ../../mod/contacts.php:406
-msgid "(Update was successful)"
-msgstr "(Wijziging is geslaagd)"
-
-#: ../../mod/contacts.php:406
-msgid "(Update was not successful)"
-msgstr "(Wijziging is niet geslaagd)"
-
-#: ../../mod/contacts.php:408
-msgid "Suggest friends"
-msgstr "Stel vrienden voor"
-
-#: ../../mod/contacts.php:412
-#, php-format
-msgid "Network type: %s"
-msgstr "Netwerk type: %s"
-
-#: ../../mod/contacts.php:415 ../../include/contact_widgets.php:199
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d gedeeld contact"
-msgstr[1] "%d gedeelde contacten"
-
-#: ../../mod/contacts.php:420
-msgid "View all contacts"
-msgstr "Alle contacten zien"
-
-#: ../../mod/contacts.php:428
-msgid "Toggle Blocked status"
-msgstr "Schakel geblokkeerde status"
-
-#: ../../mod/contacts.php:431 ../../mod/contacts.php:485
-#: ../../mod/contacts.php:693
-msgid "Unignore"
-msgstr "Negeer niet meer"
-
-#: ../../mod/contacts.php:431 ../../mod/contacts.php:485
-#: ../../mod/contacts.php:693 ../../mod/notifications.php:51
-#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
-msgid "Ignore"
-msgstr "Negeren"
-
-#: ../../mod/contacts.php:434
-msgid "Toggle Ignored status"
-msgstr "Schakel negeerstatus"
-
-#: ../../mod/contacts.php:438 ../../mod/contacts.php:694
-msgid "Unarchive"
-msgstr "Archiveer niet meer"
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen."
 
-#: ../../mod/contacts.php:438 ../../mod/contacts.php:694
-msgid "Archive"
-msgstr "Archiveer"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Bewerk je profiel"
 
-#: ../../mod/contacts.php:441
-msgid "Toggle Archive status"
-msgstr "Schakel archiveringsstatus"
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Bewerk je <strong>standaard</strong> profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen."
 
-#: ../../mod/contacts.php:444
-msgid "Repair"
-msgstr "Herstellen"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Sleutelwoorden voor dit profiel"
 
-#: ../../mod/contacts.php:447
-msgid "Advanced Contact Settings"
-msgstr "Geavanceerde instellingen voor contacten"
+#: ../../mod/newmember.php:40
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen."
 
-#: ../../mod/contacts.php:453
-msgid "Communications lost with this contact!"
-msgstr "Communicatie met dit contact is verbroken!"
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Verbinding aan het maken"
 
-#: ../../mod/contacts.php:456
-msgid "Contact Editor"
-msgstr "Contactbewerker"
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/contacts.php:459
-msgid "Profile Visibility"
-msgstr "Zichtbaarheid profiel"
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
+msgstr "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren."
 
-#: ../../mod/contacts.php:460
-#, php-format
+#: ../../mod/newmember.php:51
 msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. "
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>Als</em> dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken."
 
-#: ../../mod/contacts.php:461
-msgid "Contact Information / Notes"
-msgstr "Contactinformatie / aantekeningen"
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "E-mails importeren"
 
-#: ../../mod/contacts.php:462
-msgid "Edit contact notes"
-msgstr "Wijzig aantekeningen over dit contact"
+#: ../../mod/newmember.php:56
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren"
 
-#: ../../mod/contacts.php:467 ../../mod/contacts.php:657
-#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Bekijk het profiel van %s [%s]"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Ga naar je contactenpagina"
 
-#: ../../mod/contacts.php:468
-msgid "Block/Unblock contact"
-msgstr "Blokkeer/deblokkeer contact"
+#: ../../mod/newmember.php:58
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de <em>Voeg nieuw contact toe</em> dialoog."
 
-#: ../../mod/contacts.php:469
-msgid "Ignore contact"
-msgstr "Negeer contact"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Ga naar de gids van je website"
 
-#: ../../mod/contacts.php:470
-msgid "Repair URL settings"
-msgstr "Repareer URL-instellingen"
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd."
 
-#: ../../mod/contacts.php:471
-msgid "View conversations"
-msgstr "Toon conversaties"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Nieuwe mensen vinden"
 
-#: ../../mod/contacts.php:473
-msgid "Delete contact"
-msgstr "Verwijder contact"
+#: ../../mod/newmember.php:62
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden."
 
-#: ../../mod/contacts.php:477
-msgid "Last update:"
-msgstr "Laatste wijziging:"
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Groepen"
 
-#: ../../mod/contacts.php:479
-msgid "Update public posts"
-msgstr "Openbare posts aanpassen"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Groepeer je contacten"
 
-#: ../../mod/contacts.php:488
-msgid "Currently blocked"
-msgstr "Op dit moment geblokkeerd"
+#: ../../mod/newmember.php:70
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. "
 
-#: ../../mod/contacts.php:489
-msgid "Currently ignored"
-msgstr "Op dit moment genegeerd"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Waarom zijn mijn berichten niet openbaar?"
 
-#: ../../mod/contacts.php:490
-msgid "Currently archived"
-msgstr "Op dit moment gearchiveerd"
+#: ../../mod/newmember.php:73
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie."
 
-#: ../../mod/contacts.php:491 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Verberg dit contact voor anderen"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Hulp krijgen"
 
-#: ../../mod/contacts.php:491
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> nog zichtbaar zijn"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Ga naar de help"
 
-#: ../../mod/contacts.php:542
-msgid "Suggestions"
-msgstr "Voorstellen"
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Je kunt onze <strong>help</strong> pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."
 
-#: ../../mod/contacts.php:545
-msgid "Suggest potential friends"
-msgstr "Stel vrienden voor"
+#: ../../mod/search.php:21 ../../mod/network.php:179
+msgid "Remove term"
+msgstr "Verwijder zoekterm"
 
-#: ../../mod/contacts.php:548 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Alle Contacten"
+#: ../../mod/search.php:30 ../../mod/network.php:188
+#: ../../include/features.php:42
+msgid "Saved Searches"
+msgstr "Opgeslagen zoekopdrachten"
 
-#: ../../mod/contacts.php:551
-msgid "Show all contacts"
-msgstr "Toon alle contacten"
+#: ../../mod/search.php:99 ../../include/text.php:951
+#: ../../include/text.php:952 ../../include/nav.php:118
+msgid "Search"
+msgstr "Zoeken"
 
-#: ../../mod/contacts.php:554
-msgid "Unblocked"
-msgstr "Niet geblokkeerd"
+#: ../../mod/search.php:170 ../../mod/search.php:196
+#: ../../mod/community.php:62 ../../mod/community.php:89
+msgid "No results."
+msgstr "Geen resultaten."
 
-#: ../../mod/contacts.php:557
-msgid "Only show unblocked contacts"
-msgstr "Toon alleen niet-geblokkeerde contacten"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Totale uitnodigingslimiet overschreden."
 
-#: ../../mod/contacts.php:561
-msgid "Blocked"
-msgstr "Geblokkeerd"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s: Geen geldig e-mailadres."
 
-#: ../../mod/contacts.php:564
-msgid "Only show blocked contacts"
-msgstr "Toon alleen geblokkeerde contacten"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Kom bij ons op Friendica"
 
-#: ../../mod/contacts.php:568
-msgid "Ignored"
-msgstr "Genegeerd"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website."
 
-#: ../../mod/contacts.php:571
-msgid "Only show ignored contacts"
-msgstr "Toon alleen genegeerde contacten"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Aflevering van bericht mislukt."
 
-#: ../../mod/contacts.php:575
-msgid "Archived"
-msgstr "Gearchiveerd"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d bericht verzonden."
+msgstr[1] "%d berichten verzonden."
 
-#: ../../mod/contacts.php:578
-msgid "Only show archived contacts"
-msgstr "Toon alleen gearchiveerde contacten"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Je kunt geen uitnodigingen meer sturen"
 
-#: ../../mod/contacts.php:582
-msgid "Hidden"
-msgstr "Verborgen"
+#: ../../mod/invite.php:120
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken."
 
-#: ../../mod/contacts.php:585
-msgid "Only show hidden contacts"
-msgstr "Toon alleen verborgen contacten"
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website."
 
-#: ../../mod/contacts.php:633
-msgid "Mutual Friendship"
-msgstr "Wederzijdse vriendschap"
+#: ../../mod/invite.php:123
+#, php-format
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten."
 
-#: ../../mod/contacts.php:637
-msgid "is a fan of yours"
-msgstr "Is een fan van jou"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen."
 
-#: ../../mod/contacts.php:641
-msgid "you are a fan of"
-msgstr "Jij bent een fan van"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Verstuur uitnodigingen"
 
-#: ../../mod/contacts.php:658 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Contact bewerken"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Vul e-mailadressen in, één per lijn:"
 
-#: ../../mod/contacts.php:684
-msgid "Search your contacts"
-msgstr "Doorzoek je contacten"
+#: ../../mod/invite.php:135
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen."
 
-#: ../../mod/contacts.php:691 ../../mod/settings.php:126
-#: ../../mod/settings.php:627
-msgid "Update"
-msgstr "Wijzigen"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code"
 
-#: ../../mod/settings.php:28 ../../mod/photos.php:79
-msgid "everybody"
-msgstr "iedereen"
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:"
 
-#: ../../mod/settings.php:35 ../../mod/uexport.php:9 ../../include/nav.php:167
-msgid "Account settings"
-msgstr "Account instellingen"
+#: ../../mod/invite.php:139
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken"
 
-#: ../../mod/settings.php:40
+#: ../../mod/settings.php:41
 msgid "Additional features"
 msgstr "Extra functies"
 
-#: ../../mod/settings.php:45 ../../mod/uexport.php:14
-msgid "Display settings"
-msgstr "Scherminstellingen"
+#: ../../mod/settings.php:46
+msgid "Display"
+msgstr ""
 
-#: ../../mod/settings.php:51 ../../mod/uexport.php:20
-msgid "Connector settings"
-msgstr "Connector instellingen"
+#: ../../mod/settings.php:52 ../../mod/settings.php:775
+msgid "Social Networks"
+msgstr ""
 
-#: ../../mod/settings.php:56 ../../mod/uexport.php:25
-msgid "Plugin settings"
-msgstr "Plugin instellingen"
+#: ../../mod/settings.php:62 ../../include/nav.php:167
+msgid "Delegations"
+msgstr ""
 
-#: ../../mod/settings.php:61 ../../mod/uexport.php:30
+#: ../../mod/settings.php:67
 msgid "Connected apps"
 msgstr "Verbonden applicaties"
 
-#: ../../mod/settings.php:66 ../../mod/uexport.php:35 ../../mod/uexport.php:80
+#: ../../mod/settings.php:72 ../../mod/uexport.php:85
 msgid "Export personal data"
 msgstr "Persoonlijke gegevens exporteren"
 
-#: ../../mod/settings.php:71 ../../mod/uexport.php:40
+#: ../../mod/settings.php:77
 msgid "Remove account"
 msgstr "Account verwijderen"
 
-#: ../../mod/settings.php:123
+#: ../../mod/settings.php:129
 msgid "Missing some important data!"
 msgstr "Een belangrijk gegeven ontbreekt!"
 
-#: ../../mod/settings.php:232
+#: ../../mod/settings.php:238
 msgid "Failed to connect with email account using the settings provided."
 msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen."
 
-#: ../../mod/settings.php:237
+#: ../../mod/settings.php:243
 msgid "Email settings updated."
 msgstr "E-mail instellingen bijgewerkt.."
 
-#: ../../mod/settings.php:252
+#: ../../mod/settings.php:258
 msgid "Features updated"
 msgstr "Functies bijgewerkt"
 
-#: ../../mod/settings.php:311
+#: ../../mod/settings.php:319
 msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: ../../mod/settings.php:325
+#: ../../mod/settings.php:333
 msgid "Passwords do not match. Password unchanged."
 msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."
 
-#: ../../mod/settings.php:330
+#: ../../mod/settings.php:338
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd."
 
-#: ../../mod/settings.php:338
+#: ../../mod/settings.php:346
 msgid "Wrong password."
 msgstr "Verkeerd wachtwoord."
 
-#: ../../mod/settings.php:349
+#: ../../mod/settings.php:357
 msgid "Password changed."
 msgstr "Wachtwoord gewijzigd."
 
-#: ../../mod/settings.php:351
+#: ../../mod/settings.php:359
 msgid "Password update failed. Please try again."
 msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw."
 
-#: ../../mod/settings.php:416
+#: ../../mod/settings.php:424
 msgid " Please use a shorter name."
-msgstr "Gebruik a.u.b. een kortere naam."
+msgstr "Gebruik een kortere naam."
 
-#: ../../mod/settings.php:418
+#: ../../mod/settings.php:426
 msgid " Name too short."
 msgstr "Naam te kort."
 
-#: ../../mod/settings.php:427
+#: ../../mod/settings.php:435
 msgid "Wrong Password"
 msgstr "Verkeerd wachtwoord"
 
-#: ../../mod/settings.php:432
+#: ../../mod/settings.php:440
 msgid " Not valid email."
 msgstr "Geen geldig e-mailadres."
 
-#: ../../mod/settings.php:438
+#: ../../mod/settings.php:446
 msgid " Cannot change to that email."
 msgstr "Kan niet veranderen naar die e-mail."
 
-#: ../../mod/settings.php:493
+#: ../../mod/settings.php:501
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr "Privéforum heeft geen privacyrechten . De standaard privacygroep wordt gebruikt."
 
-#: ../../mod/settings.php:497
+#: ../../mod/settings.php:505
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr "Privéforum heeft geen privacyrechten en geen standaard privacygroep."
 
-#: ../../mod/settings.php:527
+#: ../../mod/settings.php:535
 msgid "Settings updated."
 msgstr "Instellingen bijgewerkt."
 
-#: ../../mod/settings.php:600 ../../mod/settings.php:626
-#: ../../mod/settings.php:662
+#: ../../mod/settings.php:608 ../../mod/settings.php:634
+#: ../../mod/settings.php:670
 msgid "Add application"
 msgstr "Toepassing toevoegen"
 
-#: ../../mod/settings.php:604 ../../mod/settings.php:630
+#: ../../mod/settings.php:612 ../../mod/settings.php:638
 msgid "Consumer Key"
 msgstr "Gebruikerssleutel"
 
-#: ../../mod/settings.php:605 ../../mod/settings.php:631
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
 msgid "Consumer Secret"
 msgstr "Gebruikersgeheim"
 
-#: ../../mod/settings.php:606 ../../mod/settings.php:632
+#: ../../mod/settings.php:614 ../../mod/settings.php:640
 msgid "Redirect"
 msgstr "Doorverwijzing"
 
-#: ../../mod/settings.php:607 ../../mod/settings.php:633
+#: ../../mod/settings.php:615 ../../mod/settings.php:641
 msgid "Icon url"
 msgstr "URL pictogram"
 
-#: ../../mod/settings.php:618
+#: ../../mod/settings.php:626
 msgid "You can't edit this application."
 msgstr "Je kunt deze toepassing niet wijzigen."
 
-#: ../../mod/settings.php:661
+#: ../../mod/settings.php:669
 msgid "Connected Apps"
 msgstr "Verbonden applicaties"
 
-#: ../../mod/settings.php:665
+#: ../../mod/settings.php:673
 msgid "Client key starts with"
 msgstr ""
 
-#: ../../mod/settings.php:666
+#: ../../mod/settings.php:674
 msgid "No name"
 msgstr "Geen naam"
 
-#: ../../mod/settings.php:667
+#: ../../mod/settings.php:675
 msgid "Remove authorization"
 msgstr "Verwijder authorisatie"
 
-#: ../../mod/settings.php:679
+#: ../../mod/settings.php:687
 msgid "No Plugin settings configured"
 msgstr ""
 
-#: ../../mod/settings.php:687
+#: ../../mod/settings.php:695
 msgid "Plugin Settings"
 msgstr "Plugin Instellingen"
 
-#: ../../mod/settings.php:701
+#: ../../mod/settings.php:709
 msgid "Off"
 msgstr "Uit"
 
-#: ../../mod/settings.php:701
+#: ../../mod/settings.php:709
 msgid "On"
 msgstr "Aan"
 
-#: ../../mod/settings.php:709
+#: ../../mod/settings.php:717
 msgid "Additional Features"
 msgstr "Extra functies"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 msgid "enabled"
 msgstr "ingeschakeld"
 
-#: ../../mod/settings.php:722 ../../mod/settings.php:723
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
 msgid "disabled"
 msgstr "uitgeschakeld"
 
-#: ../../mod/settings.php:723
+#: ../../mod/settings.php:732
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:755
+#: ../../mod/settings.php:768
 msgid "Email access is disabled on this site."
 msgstr "E-mailtoegang is op deze website uitgeschakeld."
 
-#: ../../mod/settings.php:762
-msgid "Connector Settings"
-msgstr "Connector Instellingen"
-
-#: ../../mod/settings.php:767
+#: ../../mod/settings.php:780
 msgid "Email/Mailbox Setup"
 msgstr "E-mail Instellen"
 
-#: ../../mod/settings.php:768
+#: ../../mod/settings.php:781
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken."
 
-#: ../../mod/settings.php:769
+#: ../../mod/settings.php:782
 msgid "Last successful email check:"
 msgstr "Laatste succesvolle e-mail controle:"
 
-#: ../../mod/settings.php:771
+#: ../../mod/settings.php:784
 msgid "IMAP server name:"
 msgstr "IMAP server naam:"
 
-#: ../../mod/settings.php:772
+#: ../../mod/settings.php:785
 msgid "IMAP port:"
 msgstr "IMAP poort:"
 
-#: ../../mod/settings.php:773
+#: ../../mod/settings.php:786
 msgid "Security:"
 msgstr "Beveiliging:"
 
-#: ../../mod/settings.php:773 ../../mod/settings.php:778
+#: ../../mod/settings.php:786 ../../mod/settings.php:791
 msgid "None"
 msgstr "Geen"
 
-#: ../../mod/settings.php:774
+#: ../../mod/settings.php:787
 msgid "Email login name:"
 msgstr "E-mail login naam:"
 
-#: ../../mod/settings.php:775
+#: ../../mod/settings.php:788
 msgid "Email password:"
 msgstr "E-mail wachtwoord:"
 
-#: ../../mod/settings.php:776
+#: ../../mod/settings.php:789
 msgid "Reply-to address:"
 msgstr "Antwoord adres:"
 
-#: ../../mod/settings.php:777
+#: ../../mod/settings.php:790
 msgid "Send public posts to all email contacts:"
 msgstr "Openbare posts naar alle e-mail contacten versturen:"
 
-#: ../../mod/settings.php:778
+#: ../../mod/settings.php:791
 msgid "Action after import:"
 msgstr "Actie na importeren:"
 
-#: ../../mod/settings.php:778
+#: ../../mod/settings.php:791
 msgid "Mark as seen"
 msgstr "Als 'gelezen' markeren"
 
-#: ../../mod/settings.php:778
+#: ../../mod/settings.php:791
 msgid "Move to folder"
 msgstr "Naar map verplaatsen"
 
-#: ../../mod/settings.php:779
+#: ../../mod/settings.php:792
 msgid "Move to folder:"
 msgstr "Verplaatsen naar map:"
 
-#: ../../mod/settings.php:854
+#: ../../mod/settings.php:870
 msgid "Display Settings"
 msgstr "Scherminstellingen"
 
-#: ../../mod/settings.php:860 ../../mod/settings.php:873
+#: ../../mod/settings.php:876 ../../mod/settings.php:890
 msgid "Display Theme:"
 msgstr "Schermthema:"
 
-#: ../../mod/settings.php:861
+#: ../../mod/settings.php:877
 msgid "Mobile Theme:"
 msgstr "Mobiel thema:"
 
-#: ../../mod/settings.php:862
+#: ../../mod/settings.php:878
 msgid "Update browser every xx seconds"
 msgstr "Browser elke xx seconden verversen"
 
-#: ../../mod/settings.php:862
+#: ../../mod/settings.php:878
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Minimum 10 seconden, geen maximum"
 
-#: ../../mod/settings.php:863
+#: ../../mod/settings.php:879
 msgid "Number of items to display per page:"
 msgstr "Aantal items te tonen per pagina:"
 
-#: ../../mod/settings.php:863 ../../mod/settings.php:864
+#: ../../mod/settings.php:879 ../../mod/settings.php:880
 msgid "Maximum of 100 items"
 msgstr "Maximum 100 items"
 
-#: ../../mod/settings.php:864
+#: ../../mod/settings.php:880
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:"
 
-#: ../../mod/settings.php:865
+#: ../../mod/settings.php:881
 msgid "Don't show emoticons"
 msgstr "Emoticons niet tonen"
 
-#: ../../mod/settings.php:866
+#: ../../mod/settings.php:882
+msgid "Don't show notices"
+msgstr ""
+
+#: ../../mod/settings.php:883
 msgid "Infinite scroll"
 msgstr ""
 
-#: ../../mod/settings.php:942
+#: ../../mod/settings.php:960
+msgid "User Types"
+msgstr ""
+
+#: ../../mod/settings.php:961
+msgid "Community Types"
+msgstr ""
+
+#: ../../mod/settings.php:962
 msgid "Normal Account Page"
 msgstr "Normale account pagina"
 
-#: ../../mod/settings.php:943
+#: ../../mod/settings.php:963
 msgid "This account is a normal personal profile"
 msgstr "Deze account is een normaal persoonlijk profiel"
 
-#: ../../mod/settings.php:946
+#: ../../mod/settings.php:966
 msgid "Soapbox Page"
 msgstr "Zeepkist pagina"
 
-#: ../../mod/settings.php:947
+#: ../../mod/settings.php:967
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen."
 
-#: ../../mod/settings.php:950
+#: ../../mod/settings.php:970
 msgid "Community Forum/Celebrity Account"
 msgstr "Gemeenschapsforum/Account van beroemdheid"
 
-#: ../../mod/settings.php:951
+#: ../../mod/settings.php:971
 msgid ""
 "Automatically approve all connection/friend requests as read-write fans"
 msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven."
 
-#: ../../mod/settings.php:954
+#: ../../mod/settings.php:974
 msgid "Automatic Friend Page"
 msgstr "Automatisch Vriendschapspagina"
 
-#: ../../mod/settings.php:955
+#: ../../mod/settings.php:975
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden."
 
-#: ../../mod/settings.php:958
+#: ../../mod/settings.php:978
 msgid "Private Forum [Experimental]"
 msgstr "Privé-forum [experimenteel]"
 
-#: ../../mod/settings.php:959
+#: ../../mod/settings.php:979
 msgid "Private forum - approved members only"
 msgstr "Privé-forum - enkel voor goedgekeurde leden"
 
-#: ../../mod/settings.php:971
-msgid "OpenID:"
-msgstr "OpenID:"
+#: ../../mod/settings.php:991
+msgid "OpenID:"
+msgstr "OpenID:"
+
+#: ../../mod/settings.php:991
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account."
+
+#: ../../mod/settings.php:1001
+msgid "Publish your default profile in your local site directory?"
+msgstr "Je standaardprofiel in je lokale gids publiceren?"
+
+#: ../../mod/settings.php:1007
+msgid "Publish your default profile in the global social directory?"
+msgstr "Je standaardprofiel in de globale sociale gids publiceren?"
+
+#: ../../mod/settings.php:1015
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?"
+
+#: ../../mod/settings.php:1019 ../../include/conversation.php:1055
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Je profieldetails verbergen voor onbekende bezoekers?"
+
+#: ../../mod/settings.php:1024
+msgid "Allow friends to post to your profile page?"
+msgstr "Vrienden toestaan om op jou profielpagina te posten?"
+
+#: ../../mod/settings.php:1030
+msgid "Allow friends to tag your posts?"
+msgstr "Sta vrienden toe om jouw berichten te labelen?"
+
+#: ../../mod/settings.php:1036
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Sta je mij toe om jou als mogelijke vriend  voor te stellen aan nieuwe leden?"
+
+#: ../../mod/settings.php:1042
+msgid "Permit unknown people to send you private mail?"
+msgstr "Mogen onbekende personen jou privé berichten sturen?"
+
+#: ../../mod/settings.php:1050
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profiel is <strong>niet gepubliceerd</strong>."
+
+#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "of"
+
+#: ../../mod/settings.php:1058
+msgid "Your Identity Address is"
+msgstr "Jouw Identiteitsadres is"
+
+#: ../../mod/settings.php:1069
+msgid "Automatically expire posts after this many days:"
+msgstr "Laat berichten automatisch vervallen na zo veel dagen:"
+
+#: ../../mod/settings.php:1069
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd."
+
+#: ../../mod/settings.php:1070
+msgid "Advanced expiration settings"
+msgstr "Geavanceerde instellingen voor vervallen"
+
+#: ../../mod/settings.php:1071
+msgid "Advanced Expiration"
+msgstr "Geavanceerd Verval:"
+
+#: ../../mod/settings.php:1072
+msgid "Expire posts:"
+msgstr "Laat berichten vervallen:"
+
+#: ../../mod/settings.php:1073
+msgid "Expire personal notes:"
+msgstr "Laat persoonlijke aantekeningen verlopen:"
+
+#: ../../mod/settings.php:1074
+msgid "Expire starred posts:"
+msgstr "Laat berichten met ster verlopen"
+
+#: ../../mod/settings.php:1075
+msgid "Expire photos:"
+msgstr "Laat foto's vervallen:"
+
+#: ../../mod/settings.php:1076
+msgid "Only expire posts by others:"
+msgstr "Laat alleen berichten door anderen vervallen:"
+
+#: ../../mod/settings.php:1102
+msgid "Account Settings"
+msgstr "Account Instellingen"
+
+#: ../../mod/settings.php:1110
+msgid "Password Settings"
+msgstr "Wachtwoord Instellingen"
+
+#: ../../mod/settings.php:1111
+msgid "New Password:"
+msgstr "Nieuw Wachtwoord:"
+
+#: ../../mod/settings.php:1112
+msgid "Confirm:"
+msgstr "Bevestig:"
+
+#: ../../mod/settings.php:1112
+msgid "Leave password fields blank unless changing"
+msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen"
+
+#: ../../mod/settings.php:1113
+msgid "Current Password:"
+msgstr "Huidig wachtwoord:"
+
+#: ../../mod/settings.php:1113 ../../mod/settings.php:1114
+msgid "Your current password to confirm the changes"
+msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen"
+
+#: ../../mod/settings.php:1114
+msgid "Password:"
+msgstr "Wachtwoord:"
+
+#: ../../mod/settings.php:1118
+msgid "Basic Settings"
+msgstr "Basis Instellingen"
+
+#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15
+msgid "Full Name:"
+msgstr "Volledige Naam:"
+
+#: ../../mod/settings.php:1120
+msgid "Email Address:"
+msgstr "E-mailadres:"
+
+#: ../../mod/settings.php:1121
+msgid "Your Timezone:"
+msgstr "Je Tijdzone:"
+
+#: ../../mod/settings.php:1122
+msgid "Default Post Location:"
+msgstr "Standaard locatie:"
+
+#: ../../mod/settings.php:1123
+msgid "Use Browser Location:"
+msgstr "Gebruik Webbrowser Locatie:"
+
+#: ../../mod/settings.php:1126
+msgid "Security and Privacy Settings"
+msgstr "Instellingen voor Beveiliging en Privacy"
+
+#: ../../mod/settings.php:1128
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximum aantal vriendschapsverzoeken per dag:"
+
+#: ../../mod/settings.php:1128 ../../mod/settings.php:1158
+msgid "(to prevent spam abuse)"
+msgstr "(om spam misbruik te voorkomen)"
+
+#: ../../mod/settings.php:1129
+msgid "Default Post Permissions"
+msgstr "Standaard rechten voor nieuwe berichten"
+
+#: ../../mod/settings.php:1130
+msgid "(click to open/close)"
+msgstr "(klik om te openen/sluiten)"
+
+#: ../../mod/settings.php:1141
+msgid "Default Private Post"
+msgstr "Standaard Privé Post"
+
+#: ../../mod/settings.php:1142
+msgid "Default Public Post"
+msgstr "Standaard Publieke Post"
+
+#: ../../mod/settings.php:1146
+msgid "Default Permissions for New Posts"
+msgstr "Standaard rechten voor nieuwe berichten"
+
+#: ../../mod/settings.php:1158
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximum aantal privé-berichten per dag van onbekende personen:"
+
+#: ../../mod/settings.php:1161
+msgid "Notification Settings"
+msgstr "Notificatie Instellingen"
+
+#: ../../mod/settings.php:1162
+msgid "By default post a status message when:"
+msgstr "Post automatisch een bericht op je tijdlijn wanneer:"
+
+#: ../../mod/settings.php:1163
+msgid "accepting a friend request"
+msgstr "Een vriendschapsverzoek accepteren"
+
+#: ../../mod/settings.php:1164
+msgid "joining a forum/community"
+msgstr "Lid worden van een forum of gemeenschap"
+
+#: ../../mod/settings.php:1165
+msgid "making an <em>interesting</em> profile change"
+msgstr "Een <em>interessante</em> verandering aan je profiel"
+
+#: ../../mod/settings.php:1166
+msgid "Send a notification email when:"
+msgstr "Stuur een notificatie e-mail wanneer:"
+
+#: ../../mod/settings.php:1167
+msgid "You receive an introduction"
+msgstr "Je ontvangt een vriendschaps- of connectieverzoek"
+
+#: ../../mod/settings.php:1168
+msgid "Your introductions are confirmed"
+msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"
+
+#: ../../mod/settings.php:1169
+msgid "Someone writes on your profile wall"
+msgstr "Iemand iets op je tijdlijn schrijft"
+
+#: ../../mod/settings.php:1170
+msgid "Someone writes a followup comment"
+msgstr "Iemand een reactie schrijft"
+
+#: ../../mod/settings.php:1171
+msgid "You receive a private message"
+msgstr "Je een privé-bericht ontvangt"
+
+#: ../../mod/settings.php:1172
+msgid "You receive a friend suggestion"
+msgstr "Je een suggestie voor een vriendschap ontvangt"
+
+#: ../../mod/settings.php:1173
+msgid "You are tagged in a post"
+msgstr "Je expliciet in een bericht bent genoemd"
+
+#: ../../mod/settings.php:1174
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Je in een bericht bent aangestoten/gepord/etc."
+
+#: ../../mod/settings.php:1177
+msgid "Advanced Account/Page Type Settings"
+msgstr ""
+
+#: ../../mod/settings.php:1178
+msgid "Change the behaviour of this account for special situations"
+msgstr ""
+
+#: ../../mod/settings.php:1181
+msgid "Relocate"
+msgstr ""
+
+#: ../../mod/settings.php:1182
+msgid ""
+"If you have moved this profile from another server, and some of your "
+"contacts don't receive your updates, try pushing this button."
+msgstr ""
+
+#: ../../mod/settings.php:1183
+msgid "Resend relocate message to contacts"
+msgstr ""
+
+#: ../../mod/display.php:263
+msgid "Item has been removed."
+msgstr "Item is verwijderd."
+
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Mensen Zoeken"
+
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Geen resultaten"
+
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profiel verwijderd"
+
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profiel-"
+
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Nieuw profiel aangemaakt."
+
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Profiel niet beschikbaar om te klonen."
+
+#: ../../mod/profiles.php:170
+msgid "Profile Name is required."
+msgstr "Profielnaam is vereist."
+
+#: ../../mod/profiles.php:321
+msgid "Marital Status"
+msgstr "Echtelijke staat"
+
+#: ../../mod/profiles.php:325
+msgid "Romantic Partner"
+msgstr "Romantische Partner"
 
-#: ../../mod/settings.php:971
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account."
+#: ../../mod/profiles.php:329
+msgid "Likes"
+msgstr "Houdt van"
 
-#: ../../mod/settings.php:981
-msgid "Publish your default profile in your local site directory?"
-msgstr "Je standaardprofiel in je lokale gids publiceren?"
+#: ../../mod/profiles.php:333
+msgid "Dislikes"
+msgstr "Houdt niet van"
 
-#: ../../mod/settings.php:987
-msgid "Publish your default profile in the global social directory?"
-msgstr "Je standaardprofiel in de globale sociale gids publiceren?"
+#: ../../mod/profiles.php:337
+msgid "Work/Employment"
+msgstr "Werk"
 
-#: ../../mod/settings.php:995
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?"
+#: ../../mod/profiles.php:340
+msgid "Religion"
+msgstr "Godsdienst"
 
-#: ../../mod/settings.php:999
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Je profieldetails verbergen voor onbekende bezoekers?"
+#: ../../mod/profiles.php:344
+msgid "Political Views"
+msgstr "Politieke standpunten"
 
-#: ../../mod/settings.php:1004
-msgid "Allow friends to post to your profile page?"
-msgstr "Vrienden toestaan om op jou profielpagina te posten?"
+#: ../../mod/profiles.php:348
+msgid "Gender"
+msgstr "Geslacht"
 
-#: ../../mod/settings.php:1010
-msgid "Allow friends to tag your posts?"
-msgstr "Sta vrienden toe om jouw berichten te labelen?"
+#: ../../mod/profiles.php:352
+msgid "Sexual Preference"
+msgstr "Seksuele Voorkeur"
 
-#: ../../mod/settings.php:1016
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Sta je mij toe om jou als mogelijke vriend  voor te stellen aan nieuwe leden?"
+#: ../../mod/profiles.php:356
+msgid "Homepage"
+msgstr "Tijdlijn"
 
-#: ../../mod/settings.php:1022
-msgid "Permit unknown people to send you private mail?"
-msgstr "Mogen onbekende personen jou privé berichten sturen?"
+#: ../../mod/profiles.php:360
+msgid "Interests"
+msgstr "Interesses"
 
-#: ../../mod/settings.php:1030
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profiel is <strong>niet gepubliceerd</strong>."
+#: ../../mod/profiles.php:364
+msgid "Address"
+msgstr "Adres"
 
-#: ../../mod/settings.php:1033 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr "of"
+#: ../../mod/profiles.php:371
+msgid "Location"
+msgstr "Plaats"
 
-#: ../../mod/settings.php:1038
-msgid "Your Identity Address is"
-msgstr "Jouw Identiteitsadres is"
+#: ../../mod/profiles.php:454
+msgid "Profile updated."
+msgstr "Profiel bijgewerkt."
 
-#: ../../mod/settings.php:1049
-msgid "Automatically expire posts after this many days:"
-msgstr "Laat berichten automatisch vervallen na zo veel dagen:"
+#: ../../mod/profiles.php:525
+msgid " and "
+msgstr "en"
 
-#: ../../mod/settings.php:1049
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd."
+#: ../../mod/profiles.php:533
+msgid "public profile"
+msgstr "publiek profiel"
 
-#: ../../mod/settings.php:1050
-msgid "Advanced expiration settings"
-msgstr "Geavanceerde instellingen voor vervallen"
+#: ../../mod/profiles.php:536
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s veranderde %2$s naar &ldquo;%3$s&rdquo;"
 
-#: ../../mod/settings.php:1051
-msgid "Advanced Expiration"
-msgstr "Geavanceerd Verval:"
+#: ../../mod/profiles.php:537
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " - Bezoek %2$s van %1$s"
 
-#: ../../mod/settings.php:1052
-msgid "Expire posts:"
-msgstr "Laat berichten vervallen:"
+#: ../../mod/profiles.php:540
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s heeft een aangepast %2$s, %3$s veranderd."
 
-#: ../../mod/settings.php:1053
-msgid "Expire personal notes:"
-msgstr "Laat persoonlijke aantekeningen verlopen:"
+#: ../../mod/profiles.php:613
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?"
 
-#: ../../mod/settings.php:1054
-msgid "Expire starred posts:"
-msgstr "Laat berichten met ster verlopen"
+#: ../../mod/profiles.php:633
+msgid "Edit Profile Details"
+msgstr "Profieldetails bewerken"
 
-#: ../../mod/settings.php:1055
-msgid "Expire photos:"
-msgstr "Laat foto's vervallen:"
+#: ../../mod/profiles.php:635
+msgid "Change Profile Photo"
+msgstr "Profielfoto wijzigen"
 
-#: ../../mod/settings.php:1056
-msgid "Only expire posts by others:"
-msgstr "Laat alleen berichten door anderen vervallen:"
+#: ../../mod/profiles.php:636
+msgid "View this profile"
+msgstr "Dit profiel bekijken"
 
-#: ../../mod/settings.php:1082
-msgid "Account Settings"
-msgstr "Account Instellingen"
+#: ../../mod/profiles.php:637
+msgid "Create a new profile using these settings"
+msgstr "Nieuw profiel aanmaken met deze instellingen"
 
-#: ../../mod/settings.php:1090
-msgid "Password Settings"
-msgstr "Wachtwoord Instellingen"
+#: ../../mod/profiles.php:638
+msgid "Clone this profile"
+msgstr "Dit profiel klonen"
 
-#: ../../mod/settings.php:1091
-msgid "New Password:"
-msgstr "Nieuw Wachtwoord:"
+#: ../../mod/profiles.php:639
+msgid "Delete this profile"
+msgstr "Dit profiel verwijderen"
 
-#: ../../mod/settings.php:1092
-msgid "Confirm:"
-msgstr "Bevestig:"
+#: ../../mod/profiles.php:640
+msgid "Profile Name:"
+msgstr "Profiel Naam:"
 
-#: ../../mod/settings.php:1092
-msgid "Leave password fields blank unless changing"
-msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen"
+#: ../../mod/profiles.php:641
+msgid "Your Full Name:"
+msgstr "Je volledige naam:"
 
-#: ../../mod/settings.php:1093
-msgid "Current Password:"
-msgstr "Huidig wachtwoord:"
+#: ../../mod/profiles.php:642
+msgid "Title/Description:"
+msgstr "Titel/Beschrijving:"
 
-#: ../../mod/settings.php:1093 ../../mod/settings.php:1094
-msgid "Your current password to confirm the changes"
-msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen"
+#: ../../mod/profiles.php:643
+msgid "Your Gender:"
+msgstr "Je Geslacht:"
 
-#: ../../mod/settings.php:1094
-msgid "Password:"
-msgstr "Wachtwoord:"
+#: ../../mod/profiles.php:644
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Geboortedatum (%s):"
 
-#: ../../mod/settings.php:1098
-msgid "Basic Settings"
-msgstr "Basis Instellingen"
+#: ../../mod/profiles.php:645
+msgid "Street Address:"
+msgstr "Postadres:"
 
-#: ../../mod/settings.php:1099 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "Volledige Naam:"
+#: ../../mod/profiles.php:646
+msgid "Locality/City:"
+msgstr "Gemeente/Stad:"
 
-#: ../../mod/settings.php:1100
-msgid "Email Address:"
-msgstr "E-mailadres:"
+#: ../../mod/profiles.php:647
+msgid "Postal/Zip Code:"
+msgstr "Postcode:"
 
-#: ../../mod/settings.php:1101
-msgid "Your Timezone:"
-msgstr "Je Tijdzone:"
+#: ../../mod/profiles.php:648
+msgid "Country:"
+msgstr "Land:"
 
-#: ../../mod/settings.php:1102
-msgid "Default Post Location:"
-msgstr "Standaard locatie:"
+#: ../../mod/profiles.php:649
+msgid "Region/State:"
+msgstr "Regio/Staat:"
 
-#: ../../mod/settings.php:1103
-msgid "Use Browser Location:"
-msgstr "Gebruik Webbrowser Locatie:"
+#: ../../mod/profiles.php:650
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Echtelijke Staat:"
 
-#: ../../mod/settings.php:1106
-msgid "Security and Privacy Settings"
-msgstr "Instellingen voor Beveiliging en Privacy"
+#: ../../mod/profiles.php:651
+msgid "Who: (if applicable)"
+msgstr "Wie: (indien toepasbaar)"
 
-#: ../../mod/settings.php:1108
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximum aantal vriendschapsverzoeken per dag:"
+#: ../../mod/profiles.php:652
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl"
 
-#: ../../mod/settings.php:1108 ../../mod/settings.php:1138
-msgid "(to prevent spam abuse)"
-msgstr "(om spam misbruik te voorkomen)"
+#: ../../mod/profiles.php:653
+msgid "Since [date]:"
+msgstr "Sinds [datum]:"
 
-#: ../../mod/settings.php:1109
-msgid "Default Post Permissions"
-msgstr "Standaard rechten voor nieuwe berichten"
+#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
+msgstr "Seksuele Voorkeur:"
 
-#: ../../mod/settings.php:1110
-msgid "(click to open/close)"
-msgstr "(klik om te openen/sluiten)"
+#: ../../mod/profiles.php:655
+msgid "Homepage URL:"
+msgstr "Adres tijdlijn:"
 
-#: ../../mod/settings.php:1119 ../../mod/photos.php:1140
-#: ../../mod/photos.php:1506
-msgid "Show to Groups"
-msgstr "Tonen aan groepen"
+#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50
+msgid "Hometown:"
+msgstr "Woonplaats:"
 
-#: ../../mod/settings.php:1120 ../../mod/photos.php:1141
-#: ../../mod/photos.php:1507
-msgid "Show to Contacts"
-msgstr "Tonen aan contacten"
+#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54
+msgid "Political Views:"
+msgstr "Politieke standpunten:"
 
-#: ../../mod/settings.php:1121
-msgid "Default Private Post"
-msgstr "Standaard Privé Post"
+#: ../../mod/profiles.php:658
+msgid "Religious Views:"
+msgstr "Geloof:"
 
-#: ../../mod/settings.php:1122
-msgid "Default Public Post"
-msgstr "Standaard Publieke Post"
+#: ../../mod/profiles.php:659
+msgid "Public Keywords:"
+msgstr "Publieke Sleutelwoorden:"
 
-#: ../../mod/settings.php:1126
-msgid "Default Permissions for New Posts"
-msgstr "Standaard rechten voor nieuwe berichten"
+#: ../../mod/profiles.php:660
+msgid "Private Keywords:"
+msgstr "Privé Sleutelwoorden:"
 
-#: ../../mod/settings.php:1138
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximum aantal privé-berichten per dag van onbekende personen:"
+#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62
+msgid "Likes:"
+msgstr "Houdt van:"
 
-#: ../../mod/settings.php:1141
-msgid "Notification Settings"
-msgstr "Notificatie Instellingen"
+#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
+msgstr "Houdt niet van:"
 
-#: ../../mod/settings.php:1142
-msgid "By default post a status message when:"
-msgstr "Post automatisch een bericht op je tijdlijn wanneer:"
+#: ../../mod/profiles.php:663
+msgid "Example: fishing photography software"
+msgstr "Voorbeeld: vissen fotografie software"
 
-#: ../../mod/settings.php:1143
-msgid "accepting a friend request"
-msgstr "Een vriendschapsverzoek accepteren"
+#: ../../mod/profiles.php:664
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)"
 
-#: ../../mod/settings.php:1144
-msgid "joining a forum/community"
-msgstr "Lid worden van een forum of gemeenschap"
+#: ../../mod/profiles.php:665
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"
 
-#: ../../mod/settings.php:1145
-msgid "making an <em>interesting</em> profile change"
-msgstr "Een <em>interessante</em> verandering aan je profiel"
+#: ../../mod/profiles.php:666
+msgid "Tell us about yourself..."
+msgstr "Vertel iets over jezelf..."
 
-#: ../../mod/settings.php:1146
-msgid "Send a notification email when:"
-msgstr "Stuur een notificatie e-mail wanneer:"
+#: ../../mod/profiles.php:667
+msgid "Hobbies/Interests"
+msgstr "Hobby's/Interesses"
 
-#: ../../mod/settings.php:1147
-msgid "You receive an introduction"
-msgstr "Je ontvangt een vriendschaps- of connectieverzoek"
+#: ../../mod/profiles.php:668
+msgid "Contact information and Social Networks"
+msgstr "Contactinformatie en sociale netwerken"
 
-#: ../../mod/settings.php:1148
-msgid "Your introductions are confirmed"
-msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"
+#: ../../mod/profiles.php:669
+msgid "Musical interests"
+msgstr "Muzikale interesses"
 
-#: ../../mod/settings.php:1149
-msgid "Someone writes on your profile wall"
-msgstr "Iemand iets op de muur van je profiel schrijft"
+#: ../../mod/profiles.php:670
+msgid "Books, literature"
+msgstr "Boeken, literatuur"
 
-#: ../../mod/settings.php:1150
-msgid "Someone writes a followup comment"
-msgstr "Iemand een commentaar schrijft"
+#: ../../mod/profiles.php:671
+msgid "Television"
+msgstr "Televisie"
 
-#: ../../mod/settings.php:1151
-msgid "You receive a private message"
-msgstr "Je een privé-bericht ontvangt"
+#: ../../mod/profiles.php:672
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/dans/cultuur/ontspanning"
 
-#: ../../mod/settings.php:1152
-msgid "You receive a friend suggestion"
-msgstr "Je een suggestie voor een vriendschap ontvangt"
+#: ../../mod/profiles.php:673
+msgid "Love/romance"
+msgstr "Liefde/romance"
 
-#: ../../mod/settings.php:1153
-msgid "You are tagged in a post"
-msgstr "Je bent in een bericht genoemd"
+#: ../../mod/profiles.php:674
+msgid "Work/employment"
+msgstr "Werk"
 
-#: ../../mod/settings.php:1154
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Je bent in een bericht aangestoten/gepord/etc."
+#: ../../mod/profiles.php:675
+msgid "School/education"
+msgstr "School/opleiding"
 
-#: ../../mod/settings.php:1157
-msgid "Advanced Account/Page Type Settings"
-msgstr ""
+#: ../../mod/profiles.php:680
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Dit is jouw <strong>publiek</strong> profiel.<br />Het <strong>kan</strong> zichtbaar zijn voor iedereen op het internet."
 
-#: ../../mod/settings.php:1158
-msgid "Change the behaviour of this account for special situations"
-msgstr ""
+#: ../../mod/profiles.php:690 ../../mod/directory.php:111
+msgid "Age: "
+msgstr "Leeftijd:"
 
-#: ../../mod/settings.php:1161
-msgid "Relocate"
-msgstr ""
+#: ../../mod/profiles.php:729
+msgid "Edit/Manage Profiles"
+msgstr "Wijzig/Beheer Profielen"
 
-#: ../../mod/settings.php:1162
-msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
-msgstr ""
+#: ../../mod/profiles.php:730 ../../boot.php:1473 ../../boot.php:1499
+msgid "Change profile photo"
+msgstr "Profiel foto wijzigen"
 
-#: ../../mod/settings.php:1163
-msgid "Resend relocate message to contacts"
-msgstr ""
+#: ../../mod/profiles.php:731 ../../boot.php:1474
+msgid "Create New Profile"
+msgstr "Maak nieuw profiel"
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "Profiel verwijderd"
+#: ../../mod/profiles.php:742 ../../boot.php:1484
+msgid "Profile Image"
+msgstr "Profiel afbeelding"
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profiel-"
+#: ../../mod/profiles.php:744 ../../boot.php:1487
+msgid "visible to everybody"
+msgstr "zichtbaar voor iedereen"
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Nieuw profiel aangemaakt."
+#: ../../mod/profiles.php:745 ../../boot.php:1488
+msgid "Edit visibility"
+msgstr "Pas zichtbaarheid aan"
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Profiel niet beschikbaar om te klonen."
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "link"
 
-#: ../../mod/profiles.php:170
-msgid "Profile Name is required."
-msgstr "Profielnaam is vereist."
+#: ../../mod/uexport.php:77
+msgid "Export account"
+msgstr "Account exporteren"
 
-#: ../../mod/profiles.php:317
-msgid "Marital Status"
-msgstr "Echtelijke staat"
+#: ../../mod/uexport.php:77
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."
 
-#: ../../mod/profiles.php:321
-msgid "Romantic Partner"
-msgstr "Romantische Partner"
+#: ../../mod/uexport.php:78
+msgid "Export all"
+msgstr "Alles exporteren"
 
-#: ../../mod/profiles.php:325
-msgid "Likes"
-msgstr "Houdt van"
+#: ../../mod/uexport.php:78
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"
 
-#: ../../mod/profiles.php:329
-msgid "Dislikes"
-msgstr "Houdt niet van"
+#: ../../mod/ping.php:238
+msgid "{0} wants to be your friend"
+msgstr "{0} wilt je vriend worden"
 
-#: ../../mod/profiles.php:333
-msgid "Work/Employment"
-msgstr "Werk"
+#: ../../mod/ping.php:243
+msgid "{0} sent you a message"
+msgstr "{0} stuurde jou een bericht"
 
-#: ../../mod/profiles.php:336
-msgid "Religion"
-msgstr "Godsdienst"
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr "{0} vroeg om zich te registreren"
 
-#: ../../mod/profiles.php:340
-msgid "Political Views"
-msgstr "Politieke standpunten"
+#: ../../mod/ping.php:254
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} gaf een reactie op het bericht van %s"
 
-#: ../../mod/profiles.php:344
-msgid "Gender"
-msgstr "Geslacht"
+#: ../../mod/ping.php:259
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} vond het bericht van %s leuk"
 
-#: ../../mod/profiles.php:348
-msgid "Sexual Preference"
-msgstr "Seksuele Voorkeur"
+#: ../../mod/ping.php:264
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} vond het bericht van %s niet leuk"
 
-#: ../../mod/profiles.php:352
-msgid "Homepage"
-msgstr "Tijdlijn"
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} is nu bevriend met %s"
 
-#: ../../mod/profiles.php:356
-msgid "Interests"
-msgstr "Interesses"
+#: ../../mod/ping.php:274
+msgid "{0} posted"
+msgstr "{0} plaatste"
 
-#: ../../mod/profiles.php:360
-msgid "Address"
-msgstr "Adres"
+#: ../../mod/ping.php:279
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} labelde %s's bericht met #%s"
 
-#: ../../mod/profiles.php:367
-msgid "Location"
-msgstr "Plaats"
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
+msgstr "{0} vermeldde je in een bericht"
 
-#: ../../mod/profiles.php:450
-msgid "Profile updated."
-msgstr "Profiel bijgewerkt."
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Niets nieuw hier"
 
-#: ../../mod/profiles.php:521
-msgid " and "
-msgstr "en"
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Notificaties verwijderen"
 
-#: ../../mod/profiles.php:529
-msgid "public profile"
-msgstr "publiek profiel"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Niet beschikbaar"
 
-#: ../../mod/profiles.php:532
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s veranderde %2$s naar &ldquo;%3$s&rdquo;"
+#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129
+#: ../../include/nav.php:128
+msgid "Community"
+msgstr "Gemeenschap"
 
-#: ../../mod/profiles.php:533
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Bezoek %2$s van %1$s"
+#: ../../mod/filer.php:30 ../../include/conversation.php:1004
+#: ../../include/conversation.php:1022
+msgid "Save to Folder:"
+msgstr "Bewaren in map:"
 
-#: ../../mod/profiles.php:536
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s heeft een aangepast %2$s, %3$s veranderd."
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- Kies -"
 
-#: ../../mod/profiles.php:609
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?"
+#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954
+msgid "Save"
+msgstr "Bewaren"
 
-#: ../../mod/profiles.php:629
-msgid "Edit Profile Details"
-msgstr "Profiel details bewerken"
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr ""
 
-#: ../../mod/profiles.php:631
-msgid "Change Profile Photo"
-msgstr "Profiel foto wijzigen"
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr ""
 
-#: ../../mod/profiles.php:632
-msgid "View this profile"
-msgstr "Dit profiel bekijken"
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Bestand is groter dan de toegelaten %d"
 
-#: ../../mod/profiles.php:633
-msgid "Create a new profile using these settings"
-msgstr "Nieuw profiel aanmaken met deze instellingen"
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Uploaden van bestand mislukt."
 
-#: ../../mod/profiles.php:634
-msgid "Clone this profile"
-msgstr "Dit profiel klonen"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Ongeldige profiel-identificatie."
 
-#: ../../mod/profiles.php:635
-msgid "Delete this profile"
-msgstr "Dit profiel verwijderen"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr ""
 
-#: ../../mod/profiles.php:636
-msgid "Profile Name:"
-msgstr "Profiel Naam:"
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
+msgstr "Klik op een contact om het toe te voegen of te verwijderen."
 
-#: ../../mod/profiles.php:637
-msgid "Your Full Name:"
-msgstr "Je volledige naam:"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Zichtbaar voor"
 
-#: ../../mod/profiles.php:638
-msgid "Title/Description:"
-msgstr "Titel/Beschrijving:"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Alle contacten (met veilige profieltoegang)"
+
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Wil je echt dit voorstel verwijderen?"
 
-#: ../../mod/profiles.php:639
-msgid "Your Gender:"
-msgstr "Je Geslacht:"
+#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527
+#: ../../include/contact_widgets.php:34
+msgid "Friend Suggestions"
+msgstr "Vriendschapsvoorstellen"
 
-#: ../../mod/profiles.php:640
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Geboortedatum (%s):"
+#: ../../mod/suggest.php:72
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."
 
-#: ../../mod/profiles.php:641
-msgid "Street Address:"
-msgstr "Postadres:"
+#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1445
+#: ../../include/contact_widgets.php:9
+msgid "Connect"
+msgstr "Verbinden"
 
-#: ../../mod/profiles.php:642
-msgid "Locality/City:"
-msgstr "Gemeente/Stad:"
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "Negeren/Verbergen"
 
-#: ../../mod/profiles.php:643
-msgid "Postal/Zip Code:"
-msgstr "Postcode:"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Toegang geweigerd"
 
-#: ../../mod/profiles.php:644
-msgid "Country:"
-msgstr "Land:"
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s heet %2$s van harte welkom"
 
-#: ../../mod/profiles.php:645
-msgid "Region/State:"
-msgstr "Regio/Staat:"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Beheer Identiteiten en/of Pagina's"
 
-#: ../../mod/profiles.php:646
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Echtelijke Staat:"
+#: ../../mod/manage.php:107
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Wissel tussen verschillende identiteiten of groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."
 
-#: ../../mod/profiles.php:647
-msgid "Who: (if applicable)"
-msgstr "Wie: (indien toepasbaar)"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Selecteer een identiteit om te beheren:"
 
-#: ../../mod/profiles.php:648
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl"
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden."
 
-#: ../../mod/profiles.php:649
-msgid "Since [date]:"
-msgstr "Sinds [datum]:"
+#: ../../mod/delegate.php:124 ../../include/nav.php:167
+msgid "Delegate Page Management"
+msgstr "Paginabeheer uitbesteden"
 
-#: ../../mod/profiles.php:650 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Seksuele Voorkeur:"
+#: ../../mod/delegate.php:126
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd."
 
-#: ../../mod/profiles.php:651
-msgid "Homepage URL:"
-msgstr "Adres tijdlijn:"
+#: ../../mod/delegate.php:127
+msgid "Existing Page Managers"
+msgstr "Bestaande paginabeheerders"
 
-#: ../../mod/profiles.php:652 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr "Woonplaats:"
+#: ../../mod/delegate.php:129
+msgid "Existing Page Delegates"
+msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed"
 
-#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Politieke standpunten:"
+#: ../../mod/delegate.php:131
+msgid "Potential Delegates"
+msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "
 
-#: ../../mod/profiles.php:654
-msgid "Religious Views:"
-msgstr "Geloof:"
+#: ../../mod/delegate.php:134
+msgid "Add"
+msgstr "Toevoegen"
 
-#: ../../mod/profiles.php:655
-msgid "Public Keywords:"
-msgstr "Publieke Sleutelwoorden:"
+#: ../../mod/delegate.php:135
+msgid "No entries."
+msgstr "Geen gegevens."
 
-#: ../../mod/profiles.php:656
-msgid "Private Keywords:"
-msgstr "Privé Sleutelwoorden:"
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "Geen contacten."
 
-#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "Houdt van:"
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:874
+msgid "View Contacts"
+msgstr "Bekijk contacten"
 
-#: ../../mod/profiles.php:658 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "Houdt niet van:"
+#: ../../mod/notes.php:44 ../../boot.php:2010
+msgid "Personal Notes"
+msgstr "Persoonlijke Nota's"
 
-#: ../../mod/profiles.php:659
-msgid "Example: fishing photography software"
-msgstr "Voorbeeld: vissen fotografie software"
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Aanstoten/porren"
 
-#: ../../mod/profiles.php:660
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)"
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "aanstoten, porren of andere dingen met iemand doen"
 
-#: ../../mod/profiles.php:661
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)"
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Ontvanger"
 
-#: ../../mod/profiles.php:662
-msgid "Tell us about yourself..."
-msgstr "Vertel iets over jezelf..."
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Kies wat je met de ontvanger wil doen"
 
-#: ../../mod/profiles.php:663
-msgid "Hobbies/Interests"
-msgstr "Hobby's/Interesses"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Dit bericht privé maken"
 
-#: ../../mod/profiles.php:664
-msgid "Contact information and Social Networks"
-msgstr "Contactinformatie en sociale netwerken"
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:525
+msgid "Global Directory"
+msgstr "Globale gids"
 
-#: ../../mod/profiles.php:665
-msgid "Musical interests"
-msgstr "Muzikale interesses"
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "Op deze website zoeken"
 
-#: ../../mod/profiles.php:666
-msgid "Books, literature"
-msgstr "Boeken, literatuur"
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "Websitegids"
 
-#: ../../mod/profiles.php:667
-msgid "Television"
-msgstr "Televisie"
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "Geslacht:"
 
-#: ../../mod/profiles.php:668
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/dans/cultuur/ontspanning"
+#: ../../mod/directory.php:136 ../../boot.php:1515
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Geslacht:"
 
-#: ../../mod/profiles.php:669
-msgid "Love/romance"
-msgstr "Liefde/romance"
+#: ../../mod/directory.php:138 ../../boot.php:1518
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
+msgstr "Tijdlijn:"
 
-#: ../../mod/profiles.php:670
-msgid "Work/employment"
-msgstr "Werk"
+#: ../../mod/directory.php:140 ../../boot.php:1520
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
+msgstr "Jouw tijdlijn:"
 
-#: ../../mod/profiles.php:671
-msgid "School/education"
-msgstr "School/opleiding"
+#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "Over:"
 
-#: ../../mod/profiles.php:676
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Dit is jouw <strong>publiek</strong> profiel.<br />Het <strong>kan</strong> zichtbaar zijn voor iedereen op het internet."
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)."
 
-#: ../../mod/profiles.php:725
-msgid "Edit/Manage Profiles"
-msgstr "Wijzig/Beheer Profielen"
+#: ../../mod/localtime.php:12 ../../include/event.php:11
+#: ../../include/bb2diaspora.php:133
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Groep aangemaakt."
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Tijdsconversie"
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Kon de groep niet aanmaken."
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones."
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Groep niet gevonden."
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC tijd: %s"
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Groepsnaam gewijzigd."
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Huidige Tijdzone: %s"
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr ""
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Omgerekende lokale tijd: %s"
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Maak een groep contacten/vrienden aan."
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Selecteer je tijdzone:"
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Groepsnaam:"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Bericht succesvol geplaatst."
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Groep verwijderd."
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Afbeelding opgeladen, maar bijsnijden mislukt."
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Niet in staat om groep te verwijderen."
+#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
+#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Verkleining van de afbeelding [%s] mislukt."
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Groepsbewerker"
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen."
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Leden"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Ik kan de afbeelding niet verwerken"
 
-#: ../../mod/group.php:224 ../../mod/profperm.php:105
-msgid "Click on a contact to add or remove."
-msgstr "Klik op een contact om het toe te voegen of te verwijderen."
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Upload bestand:"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Bron (bbcode) tekst:"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Kies een profiel:"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Bron (Diaspora) tekst om naar BBCode om te zetten:"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Uploaden"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Bron ingave:"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "Deze stap overslaan"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (ruwe HTML):"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "Kies een foto uit je fotoalbums"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html:"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Afbeelding bijsnijden"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat."
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Wijzigingen compleet"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Uploaden van afbeelding gelukt."
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr ""
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Kon geen toegang krijgen tot de database."
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Bron ingave (Diaspora formaat):"
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Kon tabel niet aanmaken."
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "De database van je Friendica-website is geïnstalleerd."
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Niet beschikbaar"
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql."
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Contact toegevoegd"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:521
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Zie het bestand \"INSTALL.txt\"."
 
-#: ../../mod/notify.php:61 ../../mod/notifications.php:332
-msgid "No more system notifications."
-msgstr "Geen systeemnotificaties meer."
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Systeemcontrole"
 
-#: ../../mod/notify.php:65 ../../mod/notifications.php:336
-msgid "System Notifications"
-msgstr "Systeemnotificaties"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Controleer opnieuw"
 
-#: ../../mod/message.php:9 ../../include/nav.php:159
-msgid "New Message"
-msgstr "Nieuw Bericht"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Verbinding met database"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Ik kan geen contact informatie vinden."
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken."
 
-#: ../../mod/message.php:182 ../../mod/notifications.php:103
-#: ../../include/nav.php:156
-msgid "Messages"
-msgstr "Privéberichten"
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. "
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Wil je echt dit bericht verwijderen?"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat."
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Bericht verwijderd."
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Servernaam database"
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Gesprek verwijderd."
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Gebruikersnaam database"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Geen berichten."
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Wachtwoord database"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Onbekende afzender - %s"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Naam database"
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Jij en %s"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "E-mailadres van de websitebeheerder"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s en jij"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken."
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Verwijder gesprek"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Selecteer een standaard tijdzone voor uw website"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Website-instellingen"
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d bericht"
-msgstr[1] "%d berichten"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver."
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Bericht niet beschikbaar."
+#: ../../mod/install.php:322
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie  <a href='http://friendica.com/node/27'>'Activeren van geplande taken'</a>"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Verwijder bericht"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "PATH van het PHP commando"
 
-#: ../../mod/message.php:548
+#: ../../mod/install.php:326
 msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender."
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten."
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Verstuur Antwoord"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "PHP-opdrachtregel"
 
-#: ../../mod/like.php:170 ../../include/conversation.php:140
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s vind %3$s van %2$s niet leuk"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr ""
+
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Gevonden PHP versie:"
+
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr ""
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Bericht succesvol geplaatst."
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd."
 
-#: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:393
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken."
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Tijdsconversie"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/localtime.php:26
+#: ../../mod/install.php:378
 msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones."
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr ""
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC tijd: %s"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait."
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Huidige Tijdzone: %s"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr ""
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Omgerekende lokale tijd: %s"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "libCurl PHP module"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Selecteer je tijdzone:"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "GD graphics PHP module"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1001
-#: ../../include/conversation.php:1019
-msgid "Save to Folder:"
-msgstr "Bewaren in map:"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP module"
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- Kies -"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "mysqli PHP module"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Ongeldige profiel-identificatie."
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "mb_string PHP module"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr ""
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Zichtbaar voor"
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd."
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle contacten (met veilige profieltoegang)"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd."
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Geen contacten."
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd."
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:857
-msgid "View Contacts"
-msgstr "Bekijk contacten"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd."
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Mensen Zoeken"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd."
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Geen resultaten"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd."
 
-#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
-msgid "Upload New Photos"
-msgstr "Nieuwe foto's uploaden"
+#: ../../mod/install.php:438
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen."
 
-#: ../../mod/photos.php:143
-msgid "Contact information unavailable"
-msgstr "Contactinformatie niet beschikbaar"
+#: ../../mod/install.php:439
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel."
 
-#: ../../mod/photos.php:164
-msgid "Album not found."
-msgstr "Album niet gevonden"
+#: ../../mod/install.php:440
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map."
 
-#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
-msgid "Delete Album"
-msgstr "Verwijder album"
+#: ../../mod/install.php:441
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies."
 
-#: ../../mod/photos.php:197
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php is schrijfbaar"
 
-#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
-msgid "Delete Photo"
-msgstr "Verwijder foto"
+#: ../../mod/install.php:454
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen."
 
-#: ../../mod/photos.php:285
-msgid "Do you really want to delete this photo?"
-msgstr "Wil je echt deze foto verwijderen?"
+#: ../../mod/install.php:455
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie."
 
-#: ../../mod/photos.php:656
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s is gelabeld in %2$s door %3$s"
+#: ../../mod/install.php:456
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map."
 
-#: ../../mod/photos.php:656
-msgid "a photo"
-msgstr "een foto"
+#: ../../mod/install.php:457
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten."
 
-#: ../../mod/photos.php:761
-msgid "Image exceeds size limit of "
-msgstr "Afbeelding is groter dan de maximale afmeting van"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 is schrijfbaar"
 
-#: ../../mod/photos.php:769
-msgid "Image file is empty."
-msgstr "Afbeeldingsbestand is leeg."
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr ""
 
-#: ../../mod/photos.php:801 ../../mod/wall_upload.php:112
-#: ../../mod/profile_photo.php:153
-msgid "Unable to process image."
-msgstr "Niet in staat om de afbeelding te verwerken"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr ""
 
-#: ../../mod/photos.php:828 ../../mod/wall_upload.php:138
-#: ../../mod/profile_photo.php:301
-msgid "Image upload failed."
-msgstr "Uploaden van afbeelding mislukt."
+#: ../../mod/install.php:484
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver."
 
-#: ../../mod/photos.php:924
-msgid "No photos selected"
-msgstr "Geen foto's geselecteerd"
+#: ../../mod/install.php:508
+msgid "Errors encountered creating database tables."
+msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."
 
-#: ../../mod/photos.php:1025 ../../mod/videos.php:226
-msgid "Access to this item is restricted."
-msgstr "Toegang tot dit item is beperkt."
+#: ../../mod/install.php:519
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wat nu</h1>"
 
-#: ../../mod/photos.php:1088
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt."
+#: ../../mod/install.php:520
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller."
 
-#: ../../mod/photos.php:1123
-msgid "Upload Photos"
-msgstr "Upload foto's"
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Groep aangemaakt."
 
-#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
-msgid "New album name: "
-msgstr "Nieuwe albumnaam: "
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Kon de groep niet aanmaken."
 
-#: ../../mod/photos.php:1128
-msgid "or existing album name: "
-msgstr "of bestaande albumnaam: "
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Groep niet gevonden."
 
-#: ../../mod/photos.php:1129
-msgid "Do not show a status post for this upload"
-msgstr "Toon geen bericht op je tijdlijn van deze upload"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Groepsnaam gewijzigd."
 
-#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
-msgid "Permissions"
-msgstr "Rechten"
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr ""
+
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Maak een groep contacten/vrienden aan."
+
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Groepsnaam:"
 
-#: ../../mod/photos.php:1142
-msgid "Private Photo"
-msgstr "Privé foto"
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Groep verwijderd."
 
-#: ../../mod/photos.php:1143
-msgid "Public Photo"
-msgstr "Publieke foto"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Niet in staat om groep te verwijderen."
 
-#: ../../mod/photos.php:1210
-msgid "Edit Album"
-msgstr "Album wijzigen"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Groepsbewerker"
 
-#: ../../mod/photos.php:1216
-msgid "Show Newest First"
-msgstr "Toon niewste eerst"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Leden"
 
-#: ../../mod/photos.php:1218
-msgid "Show Oldest First"
-msgstr "Toon oudste eerst"
+#: ../../mod/content.php:119 ../../mod/network.php:514
+msgid "No such group"
+msgstr "Zo'n groep bestaat niet"
 
-#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
-msgid "View Photo"
-msgstr "Bekijk foto"
+#: ../../mod/content.php:130 ../../mod/network.php:531
+msgid "Group is empty"
+msgstr "De groep is leeg"
 
-#: ../../mod/photos.php:1286
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."
+#: ../../mod/content.php:134 ../../mod/network.php:538
+msgid "Group: "
+msgstr "Groep:"
 
-#: ../../mod/photos.php:1288
-msgid "Photo not available"
-msgstr "Foto is niet beschikbaar"
+#: ../../mod/content.php:496 ../../include/conversation.php:688
+msgid "View in context"
+msgstr "In context bekijken"
 
-#: ../../mod/photos.php:1344
-msgid "View photo"
-msgstr "Bekijk foto"
+#: ../../mod/regmod.php:63
+msgid "Account approved."
+msgstr "Account goedgekeurd."
 
-#: ../../mod/photos.php:1344
-msgid "Edit photo"
-msgstr "Bewerk foto"
+#: ../../mod/regmod.php:100
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registratie ingetrokken voor %s"
 
-#: ../../mod/photos.php:1345
-msgid "Use as profile photo"
-msgstr "Gebruik als profielfoto"
+#: ../../mod/regmod.php:112
+msgid "Please login."
+msgstr "Inloggen."
 
-#: ../../mod/photos.php:1370
-msgid "View Full Size"
-msgstr "Bekijk in volledig formaat"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Profielmatch"
 
-#: ../../mod/photos.php:1444
-msgid "Tags: "
-msgstr "Labels: "
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."
 
-#: ../../mod/photos.php:1447
-msgid "[Remove any tag]"
-msgstr "[Alle labels verwijderen]"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "Is geïnteresseerd in:"
 
-#: ../../mod/photos.php:1487
-msgid "Rotate CW (right)"
-msgstr "Roteren met de klok mee (rechts)"
+#: ../../mod/item.php:110
+msgid "Unable to locate original post."
+msgstr "Ik kan de originele post niet meer vinden."
 
-#: ../../mod/photos.php:1488
-msgid "Rotate CCW (left)"
-msgstr "Roteren tegen de klok in (links)"
+#: ../../mod/item.php:319
+msgid "Empty post discarded."
+msgstr "Lege post weggegooid."
 
-#: ../../mod/photos.php:1490
-msgid "New album name"
-msgstr "Nieuwe albumnaam"
+#: ../../mod/item.php:891
+msgid "System error. Post not saved."
+msgstr "Systeemfout. Post niet bewaard."
 
-#: ../../mod/photos.php:1493
-msgid "Caption"
-msgstr "Onderschrift"
+#: ../../mod/item.php:917
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk."
 
-#: ../../mod/photos.php:1495
-msgid "Add a Tag"
-msgstr "Een label toevoegen"
+#: ../../mod/item.php:919
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Je kunt ze online bezoeken op %s"
 
-#: ../../mod/photos.php:1499
+#: ../../mod/item.php:920
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen."
 
-#: ../../mod/photos.php:1508
-msgid "Private photo"
-msgstr "Privé foto"
+#: ../../mod/item.php:924
+#, php-format
+msgid "%s posted an update."
+msgstr "%s heeft een wijziging geplaatst."
 
-#: ../../mod/photos.php:1509
-msgid "Public photo"
-msgstr "Publieke foto"
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s is op dit moment %2$s"
 
-#: ../../mod/photos.php:1531 ../../include/conversation.php:1080
-msgid "Share"
-msgstr "Delen"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Stemming"
 
-#: ../../mod/photos.php:1784 ../../mod/videos.php:308
-msgid "View Album"
-msgstr "Album bekijken"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Stel je huidige stemming in, en vertel het je vrienden"
 
-#: ../../mod/photos.php:1793
-msgid "Recent Photos"
-msgstr "Recente foto's"
+#: ../../mod/network.php:136
+msgid "Search Results For:"
+msgstr "Zoekresultaten voor:"
 
-#: ../../mod/wall_attach.php:69
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Bestand is groter dan de toegelaten %d"
+#: ../../mod/network.php:189 ../../include/group.php:275
+msgid "add"
+msgstr "toevoegen"
 
-#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
-msgid "File upload failed."
-msgstr "Uploaden van bestand mislukt."
+#: ../../mod/network.php:350
+msgid "Commented Order"
+msgstr "Nieuwe reacties bovenaan"
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Geen video's geselecteerd"
+#: ../../mod/network.php:353
+msgid "Sort by Comment Date"
+msgstr "Berichten met nieuwe reacties bovenaan"
 
-#: ../../mod/videos.php:301 ../../include/text.php:1383
-msgid "View Video"
-msgstr "Bekijk Video"
+#: ../../mod/network.php:356
+msgid "Posted Order"
+msgstr "Nieuwe berichten bovenaan"
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Recente video's"
+#: ../../mod/network.php:359
+msgid "Sort by Post Date"
+msgstr "Nieuwe berichten bovenaan"
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Nieuwe video's uploaden"
+#: ../../mod/network.php:368
+msgid "Posts that mention or involve you"
+msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben"
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Aanstoten/porren"
+#: ../../mod/network.php:374
+msgid "New"
+msgstr "Nieuw"
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "aanstoten, porren of andere dingen met iemand doen"
+#: ../../mod/network.php:377
+msgid "Activity Stream - by date"
+msgstr "Activiteitenstroom - volgens datum"
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Ontvanger"
+#: ../../mod/network.php:383
+msgid "Shared Links"
+msgstr "Gedeelde links"
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Kies wat je met de ontvanger wil doen"
+#: ../../mod/network.php:386
+msgid "Interesting Links"
+msgstr "Interessante links"
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Dit bericht privé maken"
+#: ../../mod/network.php:392
+msgid "Starred"
+msgstr "Met ster"
 
-#: ../../mod/subthread.php:103
+#: ../../mod/network.php:395
+msgid "Favourite Posts"
+msgstr "Favoriete berichten"
+
+#: ../../mod/network.php:457
 #, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s volgt %3$s van %2$s"
+msgid "Warning: This group contains %s member from an insecure network."
+msgid_plural ""
+"Warning: This group contains %s members from an insecure network."
+msgstr[0] "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk."
+msgstr[1] "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk."
 
-#: ../../mod/uexport.php:72
-msgid "Export account"
-msgstr "Account exporteren"
+#: ../../mod/network.php:460
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Privéberichten naar deze groep kunnen openbaar gemaakt worden."
 
-#: ../../mod/uexport.php:72
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."
+#: ../../mod/network.php:548
+msgid "Contact: "
+msgstr "Contact: "
 
-#: ../../mod/uexport.php:73
-msgid "Export all"
-msgstr "Alles exporteren"
+#: ../../mod/network.php:550
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."
 
-#: ../../mod/uexport.php:73
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"
+#: ../../mod/network.php:555
+msgid "Invalid contact."
+msgstr "Ongeldig contact."
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Gedeelde Vrienden"
+#: ../../mod/crepair.php:104
+msgid "Contact settings applied."
+msgstr "Contactinstellingen toegepast."
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Geen gedeelde contacten."
+#: ../../mod/crepair.php:106
+msgid "Contact update failed."
+msgstr "Aanpassen van contact mislukt."
 
-#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "Afbeelding is groter dan de toegestane %d"
+#: ../../mod/crepair.php:137
+msgid "Repair Contact Settings"
+msgstr "Contactinstellingen herstellen"
 
-#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
-#: ../../mod/wall_upload.php:151 ../../mod/item.php:453
-#: ../../include/message.php:144
-msgid "Wall Photos"
+#: ../../mod/crepair.php:139
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
 msgstr ""
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Afbeelding opgeladen, maar bijsnijden mislukt."
+#: ../../mod/crepair.php:140
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."
 
-#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
-#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Verkleining van de afbeelding [%s] mislukt."
+#: ../../mod/crepair.php:146
+msgid "Return to contact editor"
+msgstr "Ga terug naar contactbewerker"
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen."
+#: ../../mod/crepair.php:151
+msgid "Account Nickname"
+msgstr "Bijnaam account"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Ik kan de afbeelding niet verwerken"
+#: ../../mod/crepair.php:152
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Upload bestand:"
+#: ../../mod/crepair.php:153
+msgid "Account URL"
+msgstr "URL account"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Kies een profiel:"
+#: ../../mod/crepair.php:154
+msgid "Friend Request URL"
+msgstr "URL vriendschapsverzoek"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Uploaden"
+#: ../../mod/crepair.php:155
+msgid "Friend Confirm URL"
+msgstr ""
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "Deze stap overslaan"
+#: ../../mod/crepair.php:156
+msgid "Notification Endpoint URL"
+msgstr ""
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "Kies een foto uit je fotoalbums"
+#: ../../mod/crepair.php:157
+msgid "Poll/Feed URL"
+msgstr "URL poll/feed"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Afbeelding bijsnijden"
+#: ../../mod/crepair.php:158
+msgid "New photo from this URL"
+msgstr "Nieuwe foto van deze URL"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat."
+#: ../../mod/crepair.php:159
+msgid "Remote Self"
+msgstr ""
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Wijzigingen compleet"
+#: ../../mod/crepair.php:161
+msgid "Mirror postings from this contact"
+msgstr ""
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Uploaden van afbeelding gelukt."
+#: ../../mod/crepair.php:161
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr ""
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Toepassingen"
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:145
+msgid "Your posts and conversations"
+msgstr "Jouw berichten en conversaties"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Geen toepassingen geïnstalleerd"
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Jouw profiel pagina"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "Niets nieuw hier"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Jouw contacten"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr "Notificaties verwijderen"
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Jouw foto's"
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Profielmatch"
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
+msgid "Your events"
+msgstr "Jouw gebeurtenissen"
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Personal notes"
+msgstr "Persoonlijke nota's"
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "Is geïnteresseerd in:"
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Your personal photos"
+msgstr "Jouw persoonlijke foto's"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Label verwijderd"
+#: ../../view/theme/diabook/theme.php:130
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:624
+#: ../../view/theme/diabook/config.php:158
+msgid "Community Pages"
+msgstr "Gemeenschapspagina's"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Verwijder label van item"
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+#: ../../view/theme/diabook/config.php:160
+msgid "Community Profiles"
+msgstr "Gemeenschapsprofielen"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Selecteer een label om te verwijderen: "
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+#: ../../view/theme/diabook/config.php:164
+msgid "Last users"
+msgstr "Laatste gebruikers"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
-msgid "Remove"
-msgstr "Verwijderen"
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:166
+msgid "Last likes"
+msgstr "Recent leuk gevonden"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Titel en begintijd van de gebeurtenis zijn vereist."
+#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1953
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+msgid "event"
+msgstr "gebeurtenis"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l j F"
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+#: ../../view/theme/diabook/config.php:165
+msgid "Last photos"
+msgstr "Laatste foto's"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Gebeurtenis bewerken"
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:163
+msgid "Find Friends"
+msgstr "Zoek vrienden"
 
-#: ../../mod/events.php:335 ../../include/text.php:1615
-msgid "link to source"
-msgstr "Verwijzing naar bron"
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Lokale gids"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Maak een nieuwe gebeurtenis"
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
+msgid "Similar Interests"
+msgstr "Dezelfde interesses"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Vorige"
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
+msgid "Invite Friends"
+msgstr "Vrienden uitnodigen"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "uur:minuut"
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+#: ../../view/theme/diabook/config.php:159
+msgid "Earth Layers"
+msgstr "Earth Layers"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Gebeurtenis details"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr ""
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Formaat is %s %s. Begindatum en titel zijn vereist."
+#: ../../view/theme/diabook/theme.php:585
+#: ../../view/theme/diabook/config.php:156
+msgid "Set longitude (X) for Earth Layers"
+msgstr ""
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Gebeurtenis begint:"
+#: ../../view/theme/diabook/theme.php:586
+#: ../../view/theme/diabook/config.php:157
+msgid "Set latitude (Y) for Earth Layers"
+msgstr ""
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Vereist"
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+#: ../../view/theme/diabook/config.php:161
+msgid "Help or @NewHere ?"
+msgstr ""
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Einddatum/tijd is niet gekend of niet relevant"
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+#: ../../view/theme/diabook/config.php:162
+msgid "Connect Services"
+msgstr "Diensten verbinden"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Gebeurtenis eindigt:"
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328
+msgid "don't show"
+msgstr "Niet tonen"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Pas aan aan de tijdzone van de gebruiker"
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
+msgid "show"
+msgstr "tonen"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Beschrijving:"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr ""
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Titel:"
+#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:49
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+#: ../../view/theme/cleanzero/config.php:82
+msgid "Theme settings"
+msgstr "Thema-instellingen"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Deel deze gebeurtenis"
+#: ../../view/theme/diabook/config.php:151
+#: ../../view/theme/dispy/config.php:73
+#: ../../view/theme/cleanzero/config.php:84
+msgid "Set font-size for posts and comments"
+msgstr "Stel lettergrootte voor berichten en reacties in"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden."
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Stel lijnhoogte voor berichten en reacties in"
 
-#: ../../mod/delegate.php:121 ../../include/nav.php:165
-msgid "Delegate Page Management"
-msgstr "Paginabeheer uitbesteden"
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Stel resolutie in voor de middelste kolom. "
 
-#: ../../mod/delegate.php:123
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd."
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Stel kleurenschema in"
 
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr "Bestaande paginabeheerders"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr ""
 
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed"
+#: ../../view/theme/vier/config.php:50
+msgid "Set style"
+msgstr ""
 
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Stel kleurschema in"
 
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Toevoegen"
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Uitlijning"
 
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Geen gegevens."
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Links"
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Contacten die geen leden zijn van een groep"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Gecentreerd"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Bestanden"
+#: ../../view/theme/quattro/config.php:68
+#: ../../view/theme/cleanzero/config.php:86
+msgid "Color scheme"
+msgstr "Kleurschema"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "Systeem onbeschikbaar wegens onderhoud"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Lettergrootte berichten"
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
-msgstr "Verwijder mijn account"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Lettergrootte tekstgebieden"
 
-#: ../../mod/removeme.php:46
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr ""
 
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
-msgstr "Voer je wachtwoord in voor verificatie:"
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Stel breedte van het thema in"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Vriendschapsvoorstel verzonden."
+#: ../../boot.php:692
+msgid "Delete this item?"
+msgstr "Dit item verwijderen?"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Stel vrienden voor"
+#: ../../boot.php:695
+msgid "show fewer"
+msgstr "Minder tonen"
 
-#: ../../mod/fsuggest.php:99
+#: ../../boot.php:1023
 #, php-format
-msgid "Suggest a friend for %s"
-msgstr "Stel een vriend voor aan %s"
+msgid "Update %s failed. See error logs."
+msgstr "Wijziging %s mislukt. Lees de error logbestanden."
 
-#: ../../mod/item.php:108
-msgid "Unable to locate original post."
-msgstr "Ik kan de originele post niet meer vinden."
+#: ../../boot.php:1025
+#, php-format
+msgid "Update Error at %s"
+msgstr "Wijzigingsfout op %s"
 
-#: ../../mod/item.php:317
-msgid "Empty post discarded."
-msgstr "Lege post weggegooid."
+#: ../../boot.php:1135
+msgid "Create a New Account"
+msgstr "Nieuw account aanmaken"
 
-#: ../../mod/item.php:884
-msgid "System error. Post not saved."
-msgstr "Systeemfout. Post niet bewaard."
+#: ../../boot.php:1160 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Uitloggen"
 
-#: ../../mod/item.php:909
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk."
+#: ../../boot.php:1161 ../../include/nav.php:91
+msgid "Login"
+msgstr "Login"
 
-#: ../../mod/item.php:911
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Je kunt ze online bezoeken op %s"
+#: ../../boot.php:1163
+msgid "Nickname or Email address: "
+msgstr "Bijnaam of e-mailadres:"
 
-#: ../../mod/item.php:912
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen."
+#: ../../boot.php:1164
+msgid "Password: "
+msgstr "Wachtwoord:"
 
-#: ../../mod/item.php:916
-#, php-format
-msgid "%s posted an update."
-msgstr "%s heeft een wijziging geplaatst."
+#: ../../boot.php:1165
+msgid "Remember me"
+msgstr "Onthou me"
 
-#: ../../mod/ping.php:238
-msgid "{0} wants to be your friend"
-msgstr "{0} wilt je vriend worden"
+#: ../../boot.php:1168
+msgid "Or login using OpenID: "
+msgstr "Of log in met OpenID:"
 
-#: ../../mod/ping.php:243
-msgid "{0} sent you a message"
-msgstr "{0} stuurde jou een berichtje"
+#: ../../boot.php:1174
+msgid "Forgot your password?"
+msgstr "Wachtwoord vergeten?"
 
-#: ../../mod/ping.php:248
-msgid "{0} requested registration"
-msgstr "{0} vroeg om zich te registreren"
+#: ../../boot.php:1177
+msgid "Website Terms of Service"
+msgstr "Gebruikersvoorwaarden website"
 
-#: ../../mod/ping.php:254
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} gaf een reactie op het bericht van %s"
+#: ../../boot.php:1178
+msgid "terms of service"
+msgstr "servicevoorwaarden"
 
-#: ../../mod/ping.php:259
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} vond het bericht van %s leuk"
+#: ../../boot.php:1180
+msgid "Website Privacy Policy"
+msgstr "Privacybeleid website"
 
-#: ../../mod/ping.php:264
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} vond het bericht van %s niet leuk"
+#: ../../boot.php:1181
+msgid "privacy policy"
+msgstr "privacybeleid"
 
-#: ../../mod/ping.php:269
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} is nu bevriend met %s"
+#: ../../boot.php:1314
+msgid "Requested account is not available."
+msgstr "Gevraagde account is niet beschikbaar."
 
-#: ../../mod/ping.php:274
-msgid "{0} posted"
-msgstr "{0} plaatste"
+#: ../../boot.php:1393 ../../boot.php:1497
+msgid "Edit profile"
+msgstr "Bewerk profiel"
 
-#: ../../mod/ping.php:279
-#, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} labelde %s's bericht met #%s"
+#: ../../boot.php:1459
+msgid "Message"
+msgstr "Bericht"
 
-#: ../../mod/ping.php:285
-msgid "{0} mentioned you in a post"
-msgstr "{0} vermeldde je in een bericht"
+#: ../../boot.php:1467 ../../include/nav.php:171
+msgid "Profiles"
+msgstr "Profielen"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID protocol fout. Geen ID Gevonden."
+#: ../../boot.php:1467
+msgid "Manage/edit profiles"
+msgstr "Beheer/wijzig profielen"
 
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."
+#: ../../boot.php:1596 ../../boot.php:1682
+msgid "g A l F d"
+msgstr "G l j F"
 
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "Login mislukt."
+#: ../../boot.php:1597 ../../boot.php:1683
+msgid "F d"
+msgstr "d F"
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Ongeldige <em>request identifier</em>."
+#: ../../boot.php:1642 ../../boot.php:1723
+msgid "[today]"
+msgstr "[vandaag]"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Verwerpen"
+#: ../../boot.php:1654
+msgid "Birthday Reminders"
+msgstr "Verjaardagsherinneringen"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Systeem"
+#: ../../boot.php:1655
+msgid "Birthdays this week:"
+msgstr "Verjaardagen deze week:"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:140
-msgid "Network"
-msgstr "Netwerk"
+#: ../../boot.php:1716
+msgid "[No description]"
+msgstr "[Geen beschrijving]"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:149
-msgid "Introductions"
-msgstr "Verzoeken"
+#: ../../boot.php:1734
+msgid "Event Reminders"
+msgstr "Gebeurtenisherinneringen"
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Toon genegeerde verzoeken"
+#: ../../boot.php:1735
+msgid "Events this week:"
+msgstr "Gebeurtenissen deze week:"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Verberg genegeerde verzoeken"
+#: ../../boot.php:1972 ../../include/nav.php:76
+msgid "Status"
+msgstr "Tijdlijn"
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Notificatiesoort:"
+#: ../../boot.php:1975
+msgid "Status Messages and Posts"
+msgstr "Berichten op jouw tijdlijn"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Vriendschapsvoorstel"
+#: ../../boot.php:1982
+msgid "Profile Details"
+msgstr "Profieldetails"
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "Voorgesteld door %s"
+#: ../../boot.php:1993 ../../boot.php:1996
+msgid "Videos"
+msgstr "Video's"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Bericht over een nieuwe vriend"
+#: ../../boot.php:2006
+msgid "Events and Calendar"
+msgstr "Gebeurtenissen en kalender"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "Indien toepasbaar"
+#: ../../boot.php:2013
+msgid "Only You Can See This"
+msgstr "Alleen jij kunt dit zien"
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Denkt dat u hem of haar kent:"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Algemene functies"
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "Ja"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Meerdere profielen"
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "Nee"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Mogelijkheid om meerdere profielen aan te maken"
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Goedkeuren als:"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Functies voor het opstellen van berichten"
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Vriend"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "RTF-tekstverwerker"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Deler"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fan/Bewonderaar"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Voorvertoning bericht"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Vriendschapsverzoek"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr ""
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Nieuwe Volger"
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr ""
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Geen vriendschaps- of connectieverzoeken."
+#: ../../include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr ""
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:150
-msgid "Notifications"
-msgstr "Notificaties"
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Zijbalkwidgets op netwerkpagina"
 
-#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
-#: ../../mod/notifications.php:469
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s vond het bericht van %s leuk"
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Zoeken op datum"
 
-#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s vond het bericht van %s niet leuk"
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik"
 
-#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
-#: ../../mod/notifications.php:492
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s is nu bevriend met %s"
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Groepsfilter"
 
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#, php-format
-msgid "%s created a new post"
-msgstr "%s schreef een nieuw bericht"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen"
 
-#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
-#: ../../mod/notifications.php:501
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s gaf een reactie op het bericht van %s"
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Netwerkfilter"
 
-#: ../../mod/notifications.php:302
-msgid "No more network notifications."
-msgstr "Geen netwerknotificaties meer"
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken"
 
-#: ../../mod/notifications.php:306
-msgid "Network Notifications"
-msgstr "Netwerknotificaties"
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Sla zoekopdrachten op voor hergebruik"
 
-#: ../../mod/notifications.php:427
-msgid "No more personal notifications."
-msgstr "Geen persoonlijke notificaties meer"
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Netwerktabs"
 
-#: ../../mod/notifications.php:431
-msgid "Personal Notifications"
-msgstr "Persoonlijke notificaties"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Persoonlijke netwerktab"
 
-#: ../../mod/notifications.php:508
-msgid "No more home notifications."
-msgstr "Geen tijdlijn-notificaties meer"
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"
 
-#: ../../mod/notifications.php:512
-msgid "Home Notifications"
-msgstr "Tijdlijn-notificaties"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Nieuwe netwerktab"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Totale uitnodigingslimiet overschreden."
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)"
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Geen geldig e-mailadres."
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr ""
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Kom bij ons op Friendica"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr ""
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website."
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Bericht-/reactiehulpmiddelen"
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Aflevering van bericht mislukt."
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Meervoudige verwijdering"
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d bericht verzonden."
-msgstr[1] "%d berichten verzonden."
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Je kunt geen uitnodigingen meer sturen"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Bewerk verzonden berichten"
 
-#: ../../mod/invite.php:120
-#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken."
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Bewerk en corrigeer berichten en reacties na verzending"
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website."
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Labelen"
 
-#: ../../mod/invite.php:123
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten."
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Mogelijkheid om bestaande berichten te labelen"
 
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen."
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Categorieën berichten"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Verstuur uitnodigingen"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Voeg categorieën toe aan je berichten"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Vul e-mailadressen in, één per lijn:"
+#: ../../include/features.php:60 ../../include/contact_widgets.php:103
+msgid "Saved Folders"
+msgstr "Bewaarde Mappen"
 
-#: ../../mod/invite.php:135
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen."
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Mogelijkheid om berichten in mappen te bewaren"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code"
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Vind berichten niet leuk"
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:"
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden"
 
-#: ../../mod/invite.php:139
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken"
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Geef berichten een ster"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Beheer Identiteiten en/of Pagina's"
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr ""
 
-#: ../../mod/manage.php:107
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Uitgelogd."
+
+#: ../../include/auth.php:128 ../../include/user.php:66
 msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Wissel tussen verschillende identiteiten of groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr ""
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Selecteer een identiteit om te beheren:"
+#: ../../include/auth.php:128 ../../include/user.php:66
+msgid "The error message was:"
+msgstr "De foutboodschap was:"
 
-#: ../../mod/home.php:34
-#, php-format
-msgid "Welcome to %s"
-msgstr "Welkom op %s"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
+msgid "Starts:"
+msgstr "Begint:"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Vrienden van %s"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
+msgid "Finishes:"
+msgstr "Eindigt:"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Geen vrienden om te laten zien."
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "F j Y"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Nieuw Contact toevoegen"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "F j"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Voeg een webadres of -locatie in:"
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Verjaardag:"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Leeftijd:"
 
-#: ../../include/contact_widgets.php:23
+#: ../../include/profile_advanced.php:43
 #, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d uitnodiging beschikbaar"
-msgstr[1] "%d uitnodigingen beschikbaar"
+msgid "for %1$d %2$s"
+msgstr "voor %1$d %2$s"
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
-msgstr "Zoek mensen"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Labels:"
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
-msgstr "Vul naam of interesse in"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religie:"
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
-msgstr "Verbind/Volg"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Hobby:"
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Voorbeelden: Jan Peeters, Vissen"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Contactinformatie en sociale netwerken:"
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
-msgstr "Willekeurig Profiel"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Muzikale interesse "
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
-msgstr "Netwerken"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Boeken, literatuur:"
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
-msgstr "Alle netwerken"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Televisie"
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:59
-msgid "Saved Folders"
-msgstr "Bewaarde Mappen"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/dans/cultuur/ontspanning:"
 
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
-msgstr "Alles"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Liefde/romance:"
 
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
-msgstr "Categorieën"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Werk/beroep:"
 
-#: ../../include/plugin.php:454 ../../include/plugin.php:456
-msgid "Click here to upgrade."
-msgstr ""
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "School/opleiding:"
 
-#: ../../include/plugin.php:462
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr ""
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[geen onderwerp]"
 
-#: ../../include/plugin.php:467
-msgid "This action is not available under your subscription plan."
-msgstr ""
+#: ../../include/Scrape.php:584
+msgid " on Last.fm"
+msgstr " op Last.fm"
 
-#: ../../include/api.php:255 ../../include/api.php:266
-#: ../../include/api.php:356
-msgid "User not found."
-msgstr ""
+#: ../../include/text.php:296
+msgid "newer"
+msgstr "nieuwere berichten"
 
-#: ../../include/api.php:1024
-msgid "There is no status with this id."
-msgstr "Er is geen status met dit kenmerk"
+#: ../../include/text.php:298
+msgid "older"
+msgstr "oudere berichten"
 
-#: ../../include/network.php:883
-msgid "view full size"
-msgstr "Volledig formaat"
+#: ../../include/text.php:303
+msgid "prev"
+msgstr "vorige"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
-msgid "Starts:"
-msgstr "Begint:"
+#: ../../include/text.php:305
+msgid "first"
+msgstr "eerste"
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
-msgid "Finishes:"
-msgstr "Eindigt:"
+#: ../../include/text.php:337
+msgid "last"
+msgstr "laatste"
 
-#: ../../include/notifier.php:774 ../../include/delivery.php:457
-msgid "(no subject)"
-msgstr "(geen onderwerp)"
+#: ../../include/text.php:340
+msgid "next"
+msgstr "volgende"
 
-#: ../../include/notifier.php:784 ../../include/enotify.php:28
-#: ../../include/delivery.php:468
-msgid "noreply"
-msgstr "geen reactie"
+#: ../../include/text.php:853
+msgid "No contacts"
+msgstr "Geen contacten"
 
-#: ../../include/user.php:39
-msgid "An invitation is required."
-msgstr "Een uitnodiging is vereist."
+#: ../../include/text.php:862
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d contact"
+msgstr[1] "%d contacten"
 
-#: ../../include/user.php:44
-msgid "Invitation could not be verified."
-msgstr "Uitnodiging kon niet geverifieerd worden."
+#: ../../include/text.php:1003
+msgid "poke"
+msgstr "aanstoten"
 
-#: ../../include/user.php:52
-msgid "Invalid OpenID url"
-msgstr "Ongeldige OpenID url"
+#: ../../include/text.php:1003 ../../include/conversation.php:211
+msgid "poked"
+msgstr "aangestoten"
 
-#: ../../include/user.php:66 ../../include/auth.php:128
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr ""
+#: ../../include/text.php:1004
+msgid "ping"
+msgstr "ping"
 
-#: ../../include/user.php:66 ../../include/auth.php:128
-msgid "The error message was:"
-msgstr "De foutboodschap was:"
+#: ../../include/text.php:1004
+msgid "pinged"
+msgstr "gepingd"
 
-#: ../../include/user.php:73
-msgid "Please enter the required information."
-msgstr "Vul a.u.b. de vereiste informatie in."
+#: ../../include/text.php:1005
+msgid "prod"
+msgstr "porren"
 
-#: ../../include/user.php:87
-msgid "Please use a shorter name."
-msgstr "gebruik een kortere naam"
+#: ../../include/text.php:1005
+msgid "prodded"
+msgstr "gepord"
 
-#: ../../include/user.php:89
-msgid "Name too short."
-msgstr "Naam te kort"
+#: ../../include/text.php:1006
+msgid "slap"
+msgstr ""
 
-#: ../../include/user.php:104
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."
+#: ../../include/text.php:1006
+msgid "slapped"
+msgstr ""
 
-#: ../../include/user.php:109
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Je e-maildomein is op deze website niet toegestaan."
+#: ../../include/text.php:1007
+msgid "finger"
+msgstr ""
 
-#: ../../include/user.php:112
-msgid "Not a valid email address."
-msgstr "Geen geldig e-mailadres."
+#: ../../include/text.php:1007
+msgid "fingered"
+msgstr ""
 
-#: ../../include/user.php:125
-msgid "Cannot use that email."
-msgstr "Ik kan die e-mail niet gebruiken."
+#: ../../include/text.php:1008
+msgid "rebuff"
+msgstr ""
 
-#: ../../include/user.php:131
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen."
+#: ../../include/text.php:1008
+msgid "rebuffed"
+msgstr ""
 
-#: ../../include/user.php:137 ../../include/user.php:235
-msgid "Nickname is already registered. Please choose another."
-msgstr "Bijnaam is al geregistreerd. Kies een andere."
+#: ../../include/text.php:1022
+msgid "happy"
+msgstr "Blij"
 
-#: ../../include/user.php:147
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere."
+#: ../../include/text.php:1023
+msgid "sad"
+msgstr "Verdrietig"
 
-#: ../../include/user.php:163
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."
+#: ../../include/text.php:1024
+msgid "mellow"
+msgstr ""
 
-#: ../../include/user.php:221
-msgid "An error occurred during registration. Please try again."
+#: ../../include/text.php:1025
+msgid "tired"
+msgstr "vermoeid"
+
+#: ../../include/text.php:1026
+msgid "perky"
 msgstr ""
 
-#: ../../include/user.php:256
-msgid "An error occurred creating your default profile. Please try again."
+#: ../../include/text.php:1027
+msgid "angry"
+msgstr "boos"
+
+#: ../../include/text.php:1028
+msgid "stupified"
 msgstr ""
 
-#: ../../include/user.php:288 ../../include/user.php:292
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Vrienden"
+#: ../../include/text.php:1029
+msgid "puzzled"
+msgstr "onzeker"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stootte %2$s aan"
+#: ../../include/text.php:1030
+msgid "interested"
+msgstr "Geïnteresseerd"
 
-#: ../../include/conversation.php:211 ../../include/text.php:986
-msgid "poked"
-msgstr "aangestoten"
+#: ../../include/text.php:1031
+msgid "bitter"
+msgstr "bitter"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "bericht/item"
+#: ../../include/text.php:1032
+msgid "cheerful"
+msgstr "vrolijk"
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s markeerde %2$s's %3$s als favoriet"
+#: ../../include/text.php:1033
+msgid "alive"
+msgstr "levend"
 
-#: ../../include/conversation.php:767
-msgid "remove"
-msgstr "verwijder"
+#: ../../include/text.php:1034
+msgid "annoyed"
+msgstr "verveeld"
 
-#: ../../include/conversation.php:771
-msgid "Delete Selected Items"
-msgstr "Geselecteerde items verwijderen"
+#: ../../include/text.php:1035
+msgid "anxious"
+msgstr ""
 
-#: ../../include/conversation.php:870
-msgid "Follow Thread"
-msgstr "Conversatie volgen"
+#: ../../include/text.php:1036
+msgid "cranky"
+msgstr ""
 
-#: ../../include/conversation.php:871 ../../include/Contact.php:229
-msgid "View Status"
-msgstr "Bekijk status"
+#: ../../include/text.php:1037
+msgid "disturbed"
+msgstr ""
 
-#: ../../include/conversation.php:872 ../../include/Contact.php:230
-msgid "View Profile"
-msgstr "Bekijk profiel"
+#: ../../include/text.php:1038
+msgid "frustrated"
+msgstr "gefrustreerd"
 
-#: ../../include/conversation.php:873 ../../include/Contact.php:231
-msgid "View Photos"
-msgstr "Bekijk foto's"
+#: ../../include/text.php:1039
+msgid "motivated"
+msgstr "gemotiveerd"
 
-#: ../../include/conversation.php:874 ../../include/Contact.php:232
-#: ../../include/Contact.php:255
-msgid "Network Posts"
-msgstr "Netwerkberichten"
+#: ../../include/text.php:1040
+msgid "relaxed"
+msgstr "ontspannen"
 
-#: ../../include/conversation.php:875 ../../include/Contact.php:233
-#: ../../include/Contact.php:255
-msgid "Edit Contact"
-msgstr "Bewerk contact"
+#: ../../include/text.php:1041
+msgid "surprised"
+msgstr "verbaasd"
 
-#: ../../include/conversation.php:876 ../../include/Contact.php:235
-#: ../../include/Contact.php:255
-msgid "Send PM"
-msgstr "Stuur een privébericht"
+#: ../../include/text.php:1209
+msgid "Monday"
+msgstr "Maandag"
 
-#: ../../include/conversation.php:877 ../../include/Contact.php:228
-msgid "Poke"
-msgstr "Aanstoten"
+#: ../../include/text.php:1209
+msgid "Tuesday"
+msgstr "Dinsdag"
 
-#: ../../include/conversation.php:939
-#, php-format
-msgid "%s likes this."
-msgstr "%s vind dit leuk."
+#: ../../include/text.php:1209
+msgid "Wednesday"
+msgstr "Woensdag"
 
-#: ../../include/conversation.php:939
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s vind dit niet leuk."
+#: ../../include/text.php:1209
+msgid "Thursday"
+msgstr "Donderdag"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d mensen</span> vinden dit leuk"
+#: ../../include/text.php:1209
+msgid "Friday"
+msgstr "Vrijdag"
 
-#: ../../include/conversation.php:947
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d people</span> vinden dit niet leuk"
+#: ../../include/text.php:1209
+msgid "Saturday"
+msgstr "Zaterdag"
 
-#: ../../include/conversation.php:961
-msgid "and"
-msgstr "en"
+#: ../../include/text.php:1209
+msgid "Sunday"
+msgstr "Zondag"
 
-#: ../../include/conversation.php:967
-#, php-format
-msgid ", and %d other people"
-msgstr ", en %d andere mensen"
+#: ../../include/text.php:1213
+msgid "January"
+msgstr "Januari"
 
-#: ../../include/conversation.php:969
-#, php-format
-msgid "%s like this."
-msgstr "%s vind dit leuk."
+#: ../../include/text.php:1213
+msgid "February"
+msgstr "Februari"
 
-#: ../../include/conversation.php:969
-#, php-format
-msgid "%s don't like this."
-msgstr "%s vind dit niet leuk."
+#: ../../include/text.php:1213
+msgid "March"
+msgstr "Maart"
 
-#: ../../include/conversation.php:996 ../../include/conversation.php:1014
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Zichtbaar voor <strong>iedereen</strong>"
+#: ../../include/text.php:1213
+msgid "April"
+msgstr "April"
 
-#: ../../include/conversation.php:998 ../../include/conversation.php:1016
-msgid "Please enter a video link/URL:"
-msgstr "Vul een videolink/URL in:"
+#: ../../include/text.php:1213
+msgid "May"
+msgstr "Mei"
 
-#: ../../include/conversation.php:999 ../../include/conversation.php:1017
-msgid "Please enter an audio link/URL:"
-msgstr "Vul een audiolink/URL in:"
+#: ../../include/text.php:1213
+msgid "June"
+msgstr "Juni"
 
-#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
-msgid "Tag term:"
-msgstr "Label:"
+#: ../../include/text.php:1213
+msgid "July"
+msgstr "Juli"
 
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Where are you right now?"
-msgstr "Waar ben je nu?"
+#: ../../include/text.php:1213
+msgid "August"
+msgstr "Augustus"
 
-#: ../../include/conversation.php:1003
-msgid "Delete item(s)?"
-msgstr "Item(s) verwijderen?"
+#: ../../include/text.php:1213
+msgid "September"
+msgstr "September"
 
-#: ../../include/conversation.php:1045
-msgid "Post to Email"
-msgstr "Verzenden per e-mail"
+#: ../../include/text.php:1213
+msgid "October"
+msgstr "Oktober"
 
-#: ../../include/conversation.php:1101
-msgid "permissions"
-msgstr "rechten"
+#: ../../include/text.php:1213
+msgid "November"
+msgstr "November"
 
-#: ../../include/conversation.php:1125
-msgid "Post to Groups"
-msgstr "Verzenden naar Groepen"
+#: ../../include/text.php:1213
+msgid "December"
+msgstr "December"
 
-#: ../../include/conversation.php:1126
-msgid "Post to Contacts"
-msgstr "Verzenden naar Contacten"
+#: ../../include/text.php:1432
+msgid "bytes"
+msgstr "bytes"
 
-#: ../../include/conversation.php:1127
-msgid "Private post"
-msgstr "Privé verzending"
+#: ../../include/text.php:1456 ../../include/text.php:1468
+msgid "Click to open/close"
+msgstr "klik om te openen/sluiten"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Uitgelogd."
+#: ../../include/text.php:1689 ../../include/user.php:246
+msgid "default"
+msgstr "standaard"
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr ""
+#: ../../include/text.php:1701
+msgid "Select an alternate language"
+msgstr "Kies een andere taal"
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr ""
+#: ../../include/text.php:1957
+msgid "activity"
+msgstr "activiteit"
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr ""
+#: ../../include/text.php:1960
+msgid "post"
+msgstr "bericht"
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Gebruiker '%s' bestaat al op deze server!"
+#: ../../include/text.php:2128
+msgid "Item filed"
+msgstr "Item bewaard"
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Fout bij het aanmaken van de gebruiker"
+#: ../../include/api.php:263 ../../include/api.php:274
+#: ../../include/api.php:375
+msgid "User not found."
+msgstr ""
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Fout bij het aanmaken van het gebruikersprofiel"
+#: ../../include/api.php:1123
+msgid "There is no status with this id."
+msgstr "Er is geen status met dit kenmerk"
 
-#: ../../include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d contact werd niet geïmporteerd"
-msgstr[1] "%d contacten werden niet geïmporteerd"
+#: ../../include/api.php:1193
+msgid "There is no conversation with this id."
+msgstr ""
 
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"
+#: ../../include/dba.php:51 ../../include/dba_pdo.php:72
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr ""
 
-#: ../../include/text.php:300
-msgid "newer"
-msgstr "nieuwere berichten"
+#: ../../include/items.php:1981 ../../include/datetime.php:472
+#, php-format
+msgid "%s's birthday"
+msgstr "%s's verjaardag"
 
-#: ../../include/text.php:302
-msgid "older"
-msgstr "oudere berichten"
+#: ../../include/items.php:1982 ../../include/datetime.php:473
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Gefeliciteerd %s"
 
-#: ../../include/text.php:307
-msgid "prev"
-msgstr "vorige"
+#: ../../include/items.php:3710
+msgid "A new person is sharing with you at "
+msgstr ""
 
-#: ../../include/text.php:309
-msgid "first"
-msgstr "eerste"
+#: ../../include/items.php:3710
+msgid "You have a new follower at "
+msgstr "Je hebt een nieuwe volger op "
 
-#: ../../include/text.php:341
-msgid "last"
-msgstr "laatste"
+#: ../../include/items.php:4233
+msgid "Do you really want to delete this item?"
+msgstr "Wil je echt dit item verwijderen?"
 
-#: ../../include/text.php:344
-msgid "next"
-msgstr "volgende"
+#: ../../include/items.php:4460
+msgid "Archives"
+msgstr "Archieven"
 
-#: ../../include/text.php:836
-msgid "No contacts"
-msgstr "Geen contacten"
+#: ../../include/delivery.php:456 ../../include/notifier.php:774
+msgid "(no subject)"
+msgstr "(geen onderwerp)"
 
-#: ../../include/text.php:845
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d contact"
-msgstr[1] "%d contacten"
+#: ../../include/delivery.php:467 ../../include/notifier.php:784
+#: ../../include/enotify.php:28
+msgid "noreply"
+msgstr "geen reactie"
 
-#: ../../include/text.php:986
-msgid "poke"
-msgstr "aanstoten"
+#: ../../include/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
+msgstr ""
 
-#: ../../include/text.php:987
-msgid "ping"
-msgstr "ping"
+#: ../../include/diaspora.php:2299
+msgid "Attachments:"
+msgstr "Bijlagen:"
 
-#: ../../include/text.php:987
-msgid "pinged"
-msgstr "gepingd"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr ""
 
-#: ../../include/text.php:988
-msgid "prod"
-msgstr "porren"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken."
 
-#: ../../include/text.php:988
-msgid "prodded"
-msgstr "gepord"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt."
 
-#: ../../include/text.php:989
-msgid "slap"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
 msgstr ""
 
-#: ../../include/text.php:989
-msgid "slapped"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
 msgstr ""
 
-#: ../../include/text.php:990
-msgid "finger"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
 msgstr ""
 
-#: ../../include/text.php:990
-msgid "fingered"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."
+
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."
+
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
 msgstr ""
 
-#: ../../include/text.php:991
-msgid "rebuff"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
 msgstr ""
 
-#: ../../include/text.php:991
-msgid "rebuffed"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
 msgstr ""
 
-#: ../../include/text.php:1005
-msgid "happy"
-msgstr "Blij"
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "volgend"
 
-#: ../../include/text.php:1006
-msgid "sad"
-msgstr "Verdrietig"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Welkom"
 
-#: ../../include/text.php:1007
-msgid "mellow"
-msgstr ""
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Upload een profielfoto."
 
-#: ../../include/text.php:1008
-msgid "tired"
-msgstr "vermoeid"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Welkom terug "
 
-#: ../../include/text.php:1009
-msgid "perky"
+#: ../../include/security.php:366
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
 msgstr ""
 
-#: ../../include/text.php:1010
-msgid "angry"
-msgstr "boos"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Man"
 
-#: ../../include/text.php:1011
-msgid "stupified"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Vrouw"
 
-#: ../../include/text.php:1012
-msgid "puzzled"
-msgstr "onzeker"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Momenteel mannelijk"
 
-#: ../../include/text.php:1013
-msgid "interested"
-msgstr "Geïnteresseerd"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Momenteel vrouwelijk"
 
-#: ../../include/text.php:1014
-msgid "bitter"
-msgstr "bitter"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Meestal mannelijk"
 
-#: ../../include/text.php:1015
-msgid "cheerful"
-msgstr "vrolijk"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Meestal vrouwelijk"
 
-#: ../../include/text.php:1016
-msgid "alive"
-msgstr "levend"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: ../../include/text.php:1017
-msgid "annoyed"
-msgstr "verveeld"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Interseksueel"
 
-#: ../../include/text.php:1018
-msgid "anxious"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transseksueel"
 
-#: ../../include/text.php:1019
-msgid "cranky"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermafrodiet"
 
-#: ../../include/text.php:1020
-msgid "disturbed"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Genderneutraal"
 
-#: ../../include/text.php:1021
-msgid "frustrated"
-msgstr "gefrustreerd"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Niet-specifiek"
 
-#: ../../include/text.php:1022
-msgid "motivated"
-msgstr "gemotiveerd"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Anders"
 
-#: ../../include/text.php:1023
-msgid "relaxed"
-msgstr "ontspannen"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Onbeslist"
 
-#: ../../include/text.php:1024
-msgid "surprised"
-msgstr "verbaasd"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Manen"
 
-#: ../../include/text.php:1192
-msgid "Monday"
-msgstr "Maandag"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Vrouwen"
 
-#: ../../include/text.php:1192
-msgid "Tuesday"
-msgstr "Dinsdag"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Homo"
 
-#: ../../include/text.php:1192
-msgid "Wednesday"
-msgstr "Woensdag"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbie"
 
-#: ../../include/text.php:1192
-msgid "Thursday"
-msgstr "Donderdag"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Geen voorkeur"
 
-#: ../../include/text.php:1192
-msgid "Friday"
-msgstr "Vrijdag"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Biseksueel"
 
-#: ../../include/text.php:1192
-msgid "Saturday"
-msgstr "Zaterdag"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autoseksueel"
 
-#: ../../include/text.php:1192
-msgid "Sunday"
-msgstr "Zondag"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Onthouder"
 
-#: ../../include/text.php:1196
-msgid "January"
-msgstr "Januari"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Maagd"
 
-#: ../../include/text.php:1196
-msgid "February"
-msgstr "Februari"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Afwijkend"
+
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Niet seksueel"
+
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Alleenstaand"
+
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Eenzaam"
+
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Beschikbaar"
+
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Onbeschikbaar"
+
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Verliefd"
+
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Aan het daten"
+
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Ontrouw"
 
-#: ../../include/text.php:1196
-msgid "March"
-msgstr "Maart"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Seksverslaafd"
 
-#: ../../include/text.php:1196
-msgid "April"
-msgstr "April"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:288
+#: ../../include/user.php:292
+msgid "Friends"
+msgstr "Vrienden"
 
-#: ../../include/text.php:1196
-msgid "May"
-msgstr "Mei"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Vriendschap plus"
 
-#: ../../include/text.php:1196
-msgid "June"
-msgstr "Juni"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr ""
 
-#: ../../include/text.php:1196
-msgid "July"
-msgstr "Juli"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Verloofd"
 
-#: ../../include/text.php:1196
-msgid "August"
-msgstr "Augustus"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Getrouwd"
 
-#: ../../include/text.php:1196
-msgid "September"
-msgstr "September"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr ""
 
-#: ../../include/text.php:1196
-msgid "October"
-msgstr "Oktober"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partners"
 
-#: ../../include/text.php:1196
-msgid "November"
-msgstr "November"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Samenwonend"
 
-#: ../../include/text.php:1196
-msgid "December"
-msgstr "December"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr ""
 
-#: ../../include/text.php:1415
-msgid "bytes"
-msgstr "bytes"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Blij"
 
-#: ../../include/text.php:1439 ../../include/text.php:1451
-msgid "Click to open/close"
-msgstr "klik om te openen/sluiten"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr ""
 
-#: ../../include/text.php:1670
-msgid "Select an alternate language"
-msgstr "Kies een andere taal"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../include/text.php:1926
-msgid "activity"
-msgstr "activiteit"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Bedrogen"
 
-#: ../../include/text.php:1929
-msgid "post"
-msgstr "bericht"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr ""
 
-#: ../../include/text.php:2084
-msgid "Item filed"
-msgstr "Item bewaard"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Onstabiel"
 
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
-msgstr "Friendica Notificatie"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Gescheiden"
 
-#: ../../include/enotify.php:19
-msgid "Thank You,"
-msgstr "Bedankt"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr ""
 
-#: ../../include/enotify.php:21
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Beheerder"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr ""
 
-#: ../../include/enotify.php:40
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Onzeker"
 
-#: ../../include/enotify.php:44
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notificatie] Nieuw bericht ontvangen op %s"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Het is gecompliceerd"
 
-#: ../../include/enotify.php:46
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s sent you a new private message at %2$s."
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Kan me niet schelen"
 
-#: ../../include/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s stuurde jou %2$s."
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Vraag me"
 
-#: ../../include/enotify.php:47
-msgid "a private message"
-msgstr "een prive bericht"
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr ""
 
-#: ../../include/enotify.php:48
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden."
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr ""
 
-#: ../../include/enotify.php:90
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s gaf een reactie op [url=%2$s]a %3$s[/url]"
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr ""
 
-#: ../../include/enotify.php:97
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
 #, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s gaf een reactie op [url=%2$s]%3$s's %4$s[/url]"
+msgid "User '%s' already exists on this server!"
+msgstr "Gebruiker '%s' bestaat al op deze server!"
 
-#: ../../include/enotify.php:105
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s gaf een reactie op [url=%2$s]jouw %3$s[/url]"
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Fout bij het aanmaken van de gebruiker"
 
-#: ../../include/enotify.php:115
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr ""
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Fout bij het aanmaken van het gebruikersprofiel"
 
-#: ../../include/enotify.php:116
+#: ../../include/uimport.php:220
 #, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s gaf een reactie op een bericht/conversatie die jij volgt."
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contact werd niet geïmporteerd"
+msgstr[1] "%d contacten werden niet geïmporteerd"
 
-#: ../../include/enotify.php:119 ../../include/enotify.php:134
-#: ../../include/enotify.php:147 ../../include/enotify.php:165
-#: ../../include/enotify.php:178
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Bezoek %s om de conversatie te bekijken en/of te beantwoorden."
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"
 
-#: ../../include/enotify.php:126
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
 msgstr ""
 
-#: ../../include/enotify.php:128
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
 msgstr ""
 
-#: ../../include/enotify.php:130
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
 msgstr ""
 
-#: ../../include/enotify.php:141
+#: ../../include/conversation.php:207
 #, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notificatie] %s heeft jou genoemd"
+msgid "%1$s poked %2$s"
+msgstr "%1$s stootte %2$s aan"
 
-#: ../../include/enotify.php:142
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s heeft jou in %2$s genoemd"
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr "bericht/item"
 
-#: ../../include/enotify.php:143
+#: ../../include/conversation.php:292
 #, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]."
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s markeerde %2$s's %3$s als favoriet"
 
-#: ../../include/enotify.php:155
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s heeft jou aangestoten"
+#: ../../include/conversation.php:770
+msgid "remove"
+msgstr "verwijder"
 
-#: ../../include/enotify.php:156
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s heeft jou aangestoten op %2$s"
+#: ../../include/conversation.php:774
+msgid "Delete Selected Items"
+msgstr "Geselecteerde items verwijderen"
 
-#: ../../include/enotify.php:157
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr ""
+#: ../../include/conversation.php:873
+msgid "Follow Thread"
+msgstr "Conversatie volgen"
 
-#: ../../include/enotify.php:172
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld"
+#: ../../include/conversation.php:874 ../../include/Contact.php:229
+msgid "View Status"
+msgstr "Bekijk status"
 
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s heeft jouw bericht gelabeld in %2$s"
+#: ../../include/conversation.php:875 ../../include/Contact.php:230
+msgid "View Profile"
+msgstr "Bekijk profiel"
 
-#: ../../include/enotify.php:174
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s labelde [url=%2$s]jouw bericht[/url]"
+#: ../../include/conversation.php:876 ../../include/Contact.php:231
+msgid "View Photos"
+msgstr "Bekijk foto's"
 
-#: ../../include/enotify.php:185
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen"
+#: ../../include/conversation.php:877 ../../include/Contact.php:232
+#: ../../include/Contact.php:255
+msgid "Network Posts"
+msgstr "Netwerkberichten"
 
-#: ../../include/enotify.php:186
+#: ../../include/conversation.php:878 ../../include/Contact.php:233
+#: ../../include/Contact.php:255
+msgid "Edit Contact"
+msgstr "Bewerk contact"
+
+#: ../../include/conversation.php:879 ../../include/Contact.php:235
+#: ../../include/Contact.php:255
+msgid "Send PM"
+msgstr "Stuur een privébericht"
+
+#: ../../include/conversation.php:880 ../../include/Contact.php:228
+msgid "Poke"
+msgstr "Aanstoten"
+
+#: ../../include/conversation.php:942
 #, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s"
+msgid "%s likes this."
+msgstr "%s vind dit leuk."
 
-#: ../../include/enotify.php:187
+#: ../../include/conversation.php:942
 #, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s."
+msgid "%s doesn't like this."
+msgstr "%s vind dit niet leuk."
 
-#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#: ../../include/conversation.php:947
 #, php-format
-msgid "You may visit their profile at %s"
-msgstr "U kunt hun profiel bezoeken op %s"
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d mensen</span> vinden dit leuk"
 
-#: ../../include/enotify.php:192
+#: ../../include/conversation.php:950
 #, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Bezoek %s om het verzoek goed of af te keuren."
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d people</span> vinden dit niet leuk"
 
-#: ../../include/enotify.php:199
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr ""
+#: ../../include/conversation.php:964
+msgid "and"
+msgstr "en"
 
-#: ../../include/enotify.php:200
+#: ../../include/conversation.php:970
 #, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr ""
+msgid ", and %d other people"
+msgstr ", en %d andere mensen"
 
-#: ../../include/enotify.php:201
+#: ../../include/conversation.php:972
 #, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr ""
-
-#: ../../include/enotify.php:206
-msgid "Name:"
-msgstr "Naam:"
-
-#: ../../include/enotify.php:207
-msgid "Photo:"
-msgstr "Foto: "
+msgid "%s like this."
+msgstr "%s vind dit leuk."
 
-#: ../../include/enotify.php:210
+#: ../../include/conversation.php:972
 #, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr ""
+msgid "%s don't like this."
+msgstr "%s vind dit niet leuk."
 
-#: ../../include/Scrape.php:583
-msgid " on Last.fm"
-msgstr " op Last.fm"
+#: ../../include/conversation.php:999 ../../include/conversation.php:1017
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Zichtbaar voor <strong>iedereen</strong>"
 
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+msgid "Please enter a video link/URL:"
+msgstr "Vul een videolink/URL in:"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr ""
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter an audio link/URL:"
+msgstr "Vul een audiolink/URL in:"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Iedereen"
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Tag term:"
+msgstr "Label:"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "verander"
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+msgid "Where are you right now?"
+msgstr "Waar ben je nu?"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Verander groep"
+#: ../../include/conversation.php:1006
+msgid "Delete item(s)?"
+msgstr "Item(s) verwijderen?"
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Maak nieuwe groep"
+#: ../../include/conversation.php:1049
+msgid "Post to Email"
+msgstr "Verzenden per e-mail"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
+#: ../../include/conversation.php:1054
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
 msgstr ""
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr ""
+#: ../../include/conversation.php:1109
+msgid "permissions"
+msgstr "rechten"
 
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken."
+#: ../../include/conversation.php:1133
+msgid "Post to Groups"
+msgstr "Verzenden naar Groepen"
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt."
+#: ../../include/conversation.php:1134
+msgid "Post to Contacts"
+msgstr "Verzenden naar Contacten"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr ""
+#: ../../include/conversation.php:1135
+msgid "Private post"
+msgstr "Privé verzending"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr ""
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Nieuw Contact toevoegen"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr ""
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Voeg een webadres of -locatie in:"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."
+#: ../../include/contact_widgets.php:23
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d uitnodiging beschikbaar"
+msgstr[1] "%d uitnodigingen beschikbaar"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr ""
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "Zoek mensen"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr ""
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "Vul naam of interesse in"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr ""
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "Verbind/Volg"
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "volgend"
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Voorbeelden: Jan Peeters, Vissen"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[geen onderwerp]"
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr "Willekeurig Profiel"
+
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
+msgstr "Netwerken"
+
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
+msgstr "Alle netwerken"
+
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
+msgstr "Alles"
+
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
+msgstr "Categorieën"
 
 #: ../../include/nav.php:73
 msgid "End this session"
@@ -6565,158 +6778,81 @@ msgstr "Gids"
 msgid "People directory"
 msgstr "Personengids"
 
-#: ../../include/nav.php:140
-msgid "Conversations from your friends"
-msgstr "Conversaties van je vrienden"
-
-#: ../../include/nav.php:141
-msgid "Network Reset"
-msgstr "Netwerkpagina opnieuw instellen"
-
-#: ../../include/nav.php:141
-msgid "Load Network page with no filters"
-msgstr "Laad de netwerkpagina zonder filters"
-
-#: ../../include/nav.php:149
-msgid "Friend Requests"
-msgstr "Vriendschapsverzoeken"
-
-#: ../../include/nav.php:151
-msgid "See all notifications"
-msgstr "Toon alle notificaties"
-
-#: ../../include/nav.php:152
-msgid "Mark all system notifications seen"
-msgstr "Alle systeemnotificaties als gelezen markeren"
-
-#: ../../include/nav.php:156
-msgid "Private mail"
-msgstr "Privéberichten"
-
-#: ../../include/nav.php:157
-msgid "Inbox"
-msgstr "Inbox"
-
-#: ../../include/nav.php:158
-msgid "Outbox"
-msgstr "Verzonden berichten"
-
-#: ../../include/nav.php:162
-msgid "Manage"
-msgstr "Beheren"
-
-#: ../../include/nav.php:162
-msgid "Manage other pages"
-msgstr "Andere pagina's beheren"
-
-#: ../../include/nav.php:165
-msgid "Delegations"
+#: ../../include/nav.php:132
+msgid "Information"
 msgstr ""
 
-#: ../../include/nav.php:169
-msgid "Manage/Edit Profiles"
-msgstr "Beheer/Wijzig Profielen"
-
-#: ../../include/nav.php:171
-msgid "Manage/edit friends and contacts"
-msgstr "Beheer/Wijzig vrienden en contacten"
-
-#: ../../include/nav.php:178
-msgid "Site setup and configuration"
-msgstr "Website opzetten en configureren"
-
-#: ../../include/nav.php:182
-msgid "Navigation"
-msgstr "Navigatie"
-
-#: ../../include/nav.php:182
-msgid "Site map"
-msgstr "Sitemap"
-
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "F j Y"
-
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "F j"
-
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Verjaardag:"
+#: ../../include/nav.php:132
+msgid "Information about this friendica instance"
+msgstr ""
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Leeftijd:"
+#: ../../include/nav.php:142
+msgid "Conversations from your friends"
+msgstr "Conversaties van je vrienden"
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "voor %1$d %2$s"
+#: ../../include/nav.php:143
+msgid "Network Reset"
+msgstr "Netwerkpagina opnieuw instellen"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Labels:"
+#: ../../include/nav.php:143
+msgid "Load Network page with no filters"
+msgstr "Laad de netwerkpagina zonder filters"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religie:"
+#: ../../include/nav.php:151
+msgid "Friend Requests"
+msgstr "Vriendschapsverzoeken"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Hobby:"
+#: ../../include/nav.php:153
+msgid "See all notifications"
+msgstr "Toon alle notificaties"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Contactinformatie en sociale netwerken:"
+#: ../../include/nav.php:154
+msgid "Mark all system notifications seen"
+msgstr "Alle systeemnotificaties als gelezen markeren"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Muzikale interesse "
+#: ../../include/nav.php:158
+msgid "Private mail"
+msgstr "Privéberichten"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Boeken, literatuur:"
+#: ../../include/nav.php:159
+msgid "Inbox"
+msgstr "Inbox"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Televisie"
+#: ../../include/nav.php:160
+msgid "Outbox"
+msgstr "Verzonden berichten"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/dans/cultuur/ontspanning:"
+#: ../../include/nav.php:164
+msgid "Manage"
+msgstr "Beheren"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Liefde/romance:"
+#: ../../include/nav.php:164
+msgid "Manage other pages"
+msgstr "Andere pagina's beheren"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Werk/beroep:"
+#: ../../include/nav.php:169
+msgid "Account settings"
+msgstr "Account instellingen"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "School/opleiding:"
+#: ../../include/nav.php:171
+msgid "Manage/Edit Profiles"
+msgstr "Beheer/Wijzig Profielen"
 
-#: ../../include/bbcode.php:215 ../../include/bbcode.php:620
-#: ../../include/bbcode.php:621
-msgid "Image/photo"
-msgstr "Afbeelding/foto"
+#: ../../include/nav.php:173
+msgid "Manage/edit friends and contacts"
+msgstr "Beheer/Wijzig vrienden en contacten"
 
-#: ../../include/bbcode.php:285
-#, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"external-link\">post</a>"
-msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a> schreef het volgende <a href=\"%s\" target=\"external-link\">bericht</a>"
+#: ../../include/nav.php:180
+msgid "Site setup and configuration"
+msgstr "Website opzetten en configureren"
 
-#: ../../include/bbcode.php:584 ../../include/bbcode.php:604
-msgid "$1 wrote:"
-msgstr "$1 schreef:"
+#: ../../include/nav.php:184
+msgid "Navigation"
+msgstr "Navigatie"
 
-#: ../../include/bbcode.php:631 ../../include/bbcode.php:632
-msgid "Encrypted content"
-msgstr "Versleutelde inhoud"
+#: ../../include/nav.php:184
+msgid "Site map"
+msgstr "Sitemap"
 
 #: ../../include/contact_selectors.php:32
 msgid "Unknown | Not categorised"
@@ -6786,528 +6922,432 @@ msgstr ""
 msgid "Twitter"
 msgstr ""
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Diversen"
-
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr "jaar"
-
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "maand"
-
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr "dag"
-
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "nooit"
-
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "minder dan een seconde geleden"
-
-#: ../../include/datetime.php:285
-msgid "years"
-msgstr "jaren"
-
-#: ../../include/datetime.php:286
-msgid "months"
-msgstr "maanden"
-
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "week"
-
-#: ../../include/datetime.php:287
-msgid "weeks"
-msgstr "weken"
-
-#: ../../include/datetime.php:288
-msgid "days"
-msgstr "dagen"
-
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "uur"
-
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "uren"
-
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "minuut"
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr ""
 
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "minuten"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr ""
 
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr "seconde"
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr "Friendica Notificatie"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "secondes"
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr "Bedankt"
 
-#: ../../include/datetime.php:300
+#: ../../include/enotify.php:21
 #, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s geleden"
+msgid "%s Administrator"
+msgstr "%s Beheerder"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1829
+#: ../../include/enotify.php:40
 #, php-format
-msgid "%s's birthday"
-msgstr "%s's verjaardag"
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../include/datetime.php:473 ../../include/items.php:1830
+#: ../../include/enotify.php:44
 #, php-format
-msgid "Happy Birthday %s"
-msgstr "Gefeliciteerd %s"
-
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Algemene functies"
-
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Meerdere profielen"
-
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Mogelijkheid om meerdere profielen aan te maken"
-
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Functies voor het opstellen van berichten"
-
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "RTF-tekstverwerker"
-
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"
-
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Voorvertoning bericht"
-
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr ""
-
-#: ../../include/features.php:37
-msgid "Network Sidebar Widgets"
-msgstr "Zijbalkwidgets op netwerkpagina"
-
-#: ../../include/features.php:38
-msgid "Search by Date"
-msgstr "Zoeken op datum"
-
-#: ../../include/features.php:38
-msgid "Ability to select posts by date ranges"
-msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik"
-
-#: ../../include/features.php:39
-msgid "Group Filter"
-msgstr "Groepsfilter"
-
-#: ../../include/features.php:39
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen"
-
-#: ../../include/features.php:40
-msgid "Network Filter"
-msgstr "Netwerkfilter"
-
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken"
-
-#: ../../include/features.php:41
-msgid "Save search terms for re-use"
-msgstr "Sla zoekopdrachten op voor hergebruik"
-
-#: ../../include/features.php:46
-msgid "Network Tabs"
-msgstr "Netwerktabs"
-
-#: ../../include/features.php:47
-msgid "Network Personal Tab"
-msgstr "Persoonlijke netwerktab"
-
-#: ../../include/features.php:47
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notificatie] Nieuw bericht ontvangen op %s"
 
-#: ../../include/features.php:48
-msgid "Network New Tab"
-msgstr "Nieuwe netwerktab"
+#: ../../include/enotify.php:46
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s sent you a new private message at %2$s."
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)"
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s stuurde jou %2$s."
 
-#: ../../include/features.php:49
-msgid "Network Shared Links Tab"
-msgstr ""
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr "een prive bericht"
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only Network posts with links in them"
-msgstr ""
+#: ../../include/enotify.php:48
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden."
 
-#: ../../include/features.php:54
-msgid "Post/Comment Tools"
-msgstr "Bericht-/reactiehulpmiddelen"
+#: ../../include/enotify.php:91
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s gaf een reactie op [url=%2$s]a %3$s[/url]"
 
-#: ../../include/features.php:55
-msgid "Multiple Deletion"
-msgstr "Meervoudige verwijdering"
+#: ../../include/enotify.php:98
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s gaf een reactie op [url=%2$s]%3$s's %4$s[/url]"
 
-#: ../../include/features.php:55
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer"
+#: ../../include/enotify.php:106
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s gaf een reactie op [url=%2$s]jouw %3$s[/url]"
 
-#: ../../include/features.php:56
-msgid "Edit Sent Posts"
-msgstr "Bewerk verzonden berichten"
+#: ../../include/enotify.php:116
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr ""
 
-#: ../../include/features.php:56
-msgid "Edit and correct posts and comments after sending"
-msgstr "Bewerk en corrigeer berichten en reacties na verzending"
+#: ../../include/enotify.php:117
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s gaf een reactie op een bericht/conversatie die jij volgt."
 
-#: ../../include/features.php:57
-msgid "Tagging"
-msgstr "Labelen"
+#: ../../include/enotify.php:120 ../../include/enotify.php:135
+#: ../../include/enotify.php:148 ../../include/enotify.php:161
+#: ../../include/enotify.php:179 ../../include/enotify.php:192
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Bezoek %s om de conversatie te bekijken en/of te beantwoorden."
 
-#: ../../include/features.php:57
-msgid "Ability to tag existing posts"
-msgstr "Mogelijkheid om bestaande berichten te labelen"
+#: ../../include/enotify.php:127
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr ""
 
-#: ../../include/features.php:58
-msgid "Post Categories"
-msgstr "Categorieën berichten"
+#: ../../include/enotify.php:129
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr ""
 
-#: ../../include/features.php:58
-msgid "Add categories to your posts"
-msgstr "Voeg categorieën toe aan je berichten"
+#: ../../include/enotify.php:131
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr ""
 
-#: ../../include/features.php:59
-msgid "Ability to file posts under folders"
-msgstr "Mogelijkheid om berichten in mappen te bewaren"
+#: ../../include/enotify.php:142
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notificatie] %s heeft jou genoemd"
 
-#: ../../include/features.php:60
-msgid "Dislike Posts"
-msgstr "Vind berichten niet leuk"
+#: ../../include/enotify.php:143
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s heeft jou in %2$s genoemd"
 
-#: ../../include/features.php:60
-msgid "Ability to dislike posts/comments"
-msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden"
+#: ../../include/enotify.php:144
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]."
 
-#: ../../include/features.php:61
-msgid "Star Posts"
-msgstr "Geef berichten een ster"
+#: ../../include/enotify.php:155
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr ""
 
-#: ../../include/features.php:61
-msgid "Ability to mark special posts with a star indicator"
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s shared a new post at %2$s"
 msgstr ""
 
-#: ../../include/diaspora.php:704
-msgid "Sharing notification from Diaspora network"
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
 msgstr ""
 
-#: ../../include/diaspora.php:2269
-msgid "Attachments:"
-msgstr "Bijlagen:"
+#: ../../include/enotify.php:169
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s heeft jou aangestoten"
 
-#: ../../include/acl_selectors.php:325
-msgid "Visible to everybody"
-msgstr "Zichtbaar voor iedereen"
+#: ../../include/enotify.php:170
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s heeft jou aangestoten op %2$s"
 
-#: ../../include/items.php:3539
-msgid "A new person is sharing with you at "
+#: ../../include/enotify.php:171
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr ""
 
-#: ../../include/items.php:3539
-msgid "You have a new follower at "
-msgstr "Je hebt een nieuwe volger op "
+#: ../../include/enotify.php:186
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld"
 
-#: ../../include/items.php:4062
-msgid "Do you really want to delete this item?"
-msgstr "Wil je echt dit item verwijderen?"
+#: ../../include/enotify.php:187
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s heeft jouw bericht gelabeld in %2$s"
 
-#: ../../include/items.php:4285
-msgid "Archives"
-msgstr "Archieven"
+#: ../../include/enotify.php:188
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s labelde [url=%2$s]jouw bericht[/url]"
 
-#: ../../include/oembed.php:140
-msgid "Embedded content"
-msgstr "Ingebedde inhoud"
+#: ../../include/enotify.php:199
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen"
 
-#: ../../include/oembed.php:149
-msgid "Embedding disabled"
-msgstr "Inbedden uitgeschakeld"
+#: ../../include/enotify.php:200
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s"
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Welkom"
+#: ../../include/enotify.php:201
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s."
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Upload een profielfoto."
+#: ../../include/enotify.php:204 ../../include/enotify.php:222
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "U kunt hun profiel bezoeken op %s"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Welkom terug "
+#: ../../include/enotify.php:206
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Bezoek %s om het verzoek goed of af te keuren."
 
-#: ../../include/security.php:366
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
+#: ../../include/enotify.php:213
+msgid "[Friendica:Notify] Friend suggestion received"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Man"
-
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Vrouw"
+#: ../../include/enotify.php:214
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Momenteel mannelijk"
+#: ../../include/enotify.php:215
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Momenteel vrouwelijk"
+#: ../../include/enotify.php:220
+msgid "Name:"
+msgstr "Naam:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Meestal mannelijk"
+#: ../../include/enotify.php:221
+msgid "Photo:"
+msgstr "Foto: "
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Meestal vrouwelijk"
+#: ../../include/enotify.php:224
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: ../../include/user.php:39
+msgid "An invitation is required."
+msgstr "Een uitnodiging is vereist."
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Interseksueel"
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
+msgstr "Uitnodiging kon niet geverifieerd worden."
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transseksueel"
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
+msgstr "Ongeldige OpenID url"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermafrodiet"
+#: ../../include/user.php:73
+msgid "Please enter the required information."
+msgstr "Vul de vereiste informatie in."
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Genderneutraal"
+#: ../../include/user.php:87
+msgid "Please use a shorter name."
+msgstr "gebruik een kortere naam"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Niet-specifiek"
+#: ../../include/user.php:89
+msgid "Name too short."
+msgstr "Naam te kort"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Anders"
+#: ../../include/user.php:104
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Onbeslist"
+#: ../../include/user.php:109
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Je e-maildomein is op deze website niet toegestaan."
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Manen"
+#: ../../include/user.php:112
+msgid "Not a valid email address."
+msgstr "Geen geldig e-mailadres."
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Vrouwen"
+#: ../../include/user.php:125
+msgid "Cannot use that email."
+msgstr "Ik kan die e-mail niet gebruiken."
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Homo"
+#: ../../include/user.php:131
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen."
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbie"
+#: ../../include/user.php:137 ../../include/user.php:235
+msgid "Nickname is already registered. Please choose another."
+msgstr "Bijnaam is al geregistreerd. Kies een andere."
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Geen voorkeur"
+#: ../../include/user.php:147
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere."
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Biseksueel"
+#: ../../include/user.php:163
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autoseksueel"
+#: ../../include/user.php:221
+msgid "An error occurred during registration. Please try again."
+msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Onthouder"
+#: ../../include/user.php:256
+msgid "An error occurred creating your default profile. Please try again."
+msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Maagd"
+#: ../../include/acl_selectors.php:326
+msgid "Visible to everybody"
+msgstr "Zichtbaar voor iedereen"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Afwijkend"
+#: ../../include/bbcode.php:287 ../../include/bbcode.php:920
+#: ../../include/bbcode.php:921
+msgid "Image/photo"
+msgstr "Afbeelding/foto"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
+#: ../../include/bbcode.php:357
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
+#: ../../include/bbcode.php:458
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Niet seksueel"
-
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Alleenstaand"
+#: ../../include/bbcode.php:884 ../../include/bbcode.php:904
+msgid "$1 wrote:"
+msgstr "$1 schreef:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Eenzaam"
+#: ../../include/bbcode.php:935 ../../include/bbcode.php:936
+msgid "Encrypted content"
+msgstr "Versleutelde inhoud"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Beschikbaar"
+#: ../../include/oembed.php:174
+msgid "Embedded content"
+msgstr "Ingebedde inhoud"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Onbeschikbaar"
+#: ../../include/oembed.php:183
+msgid "Embedding disabled"
+msgstr "Inbedden uitgeschakeld"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Verliefd"
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Aan het daten"
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Iedereen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Ontrouw"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "verander"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Seksverslaafd"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Verander groep"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Vriendschap plus"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Maak nieuwe groep"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Verloofd"
-
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Getrouwd"
-
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
+#: ../../include/Contact.php:115
+msgid "stopped following"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partners"
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Samenwonend"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Diversen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr ""
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "jaar"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Blij"
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr "maand"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr ""
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr "dag"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nooit"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Bedrogen"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "minder dan een seconde geleden"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr ""
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr "jaren"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Onstabiel"
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr "maanden"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Gescheiden"
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "week"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr ""
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "weken"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr ""
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr "dagen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Onzeker"
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "uur"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Het is gecompliceerd"
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "uren"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Kan me niet schelen"
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "minuut"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Vraag me"
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "minuten"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr ""
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr "seconde"
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr ""
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "secondes"
 
-#: ../../include/dba.php:44
+#: ../../include/datetime.php:300
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr ""
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s geleden"
+
+#: ../../include/network.php:886
+msgid "view full size"
+msgstr "Volledig formaat"
index 2b757898539c45e77504fd0216dd79601bfb8b20..4f6e5476b065f7f411348520a70fe6b637aef16e 100644 (file)
@@ -52,346 +52,132 @@ $a->strings["Image"] = "Afbeelding";
 $a->strings["Link"] = "Link";
 $a->strings["Video"] = "Video";
 $a->strings["Preview"] = "Voorvertoning";
-$a->strings["You must be logged in to use addons. "] = "";
+$a->strings["You must be logged in to use addons. "] = "Je moet ingelogd zijn om deze addons te kunnen gebruiken. ";
 $a->strings["Not Found"] = "Niet gevonden";
 $a->strings["Page not found."] = "Pagina niet gevonden";
 $a->strings["Permission denied"] = "Toegang geweigerd";
 $a->strings["Permission denied."] = "Toegang geweigerd";
 $a->strings["toggle mobile"] = "mobiel thema omwisselen";
-$a->strings["Home"] = "Tijdlijn";
-$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties";
-$a->strings["Profile"] = "Profiel";
-$a->strings["Your profile page"] = "Jouw profiel pagina";
-$a->strings["Photos"] = "Foto's";
-$a->strings["Your photos"] = "Jouw foto's";
-$a->strings["Events"] = "Gebeurtenissen";
-$a->strings["Your events"] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen.";
-$a->strings["Personal notes"] = "Persoonlijke nota's";
-$a->strings["Your personal photos"] = "Jouw persoonlijke foto's";
-$a->strings["Community"] = "Gemeenschap";
-$a->strings["don't show"] = "Niet tonen";
-$a->strings["show"] = "tonen";
-$a->strings["Theme settings"] = "Thema instellingen";
-$a->strings["Set font-size for posts and comments"] = "Stel lettergrootte voor berichten en reacties in";
-$a->strings["Set line-height for posts and comments"] = "";
-$a->strings["Set resolution for middle column"] = "";
-$a->strings["Contacts"] = "Contacten";
-$a->strings["Your contacts"] = "Jouw contacten";
-$a->strings["Community Pages"] = "Gemeenschapspagina's";
-$a->strings["Community Profiles"] = "Gemeenschapsprofielen";
-$a->strings["Last users"] = "Laatste gebruikers";
-$a->strings["Last likes"] = "Recent leuk gevonden";
-$a->strings["event"] = "gebeurtenis";
-$a->strings["status"] = "Status";
-$a->strings["photo"] = "Foto";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vind %3\$s van %2\$s leuk";
-$a->strings["Last photos"] = "Laatste foto's";
-$a->strings["Contact Photos"] = "Contactfoto's";
-$a->strings["Profile Photos"] = "Profielfoto's";
-$a->strings["Find Friends"] = "Zoek vrienden";
-$a->strings["Local Directory"] = "Lokale gids";
-$a->strings["Global Directory"] = "Globale gids";
-$a->strings["Similar Interests"] = "Dezelfde interesses";
-$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen";
-$a->strings["Invite Friends"] = "Vrienden uitnodigen";
-$a->strings["Settings"] = "Instellingen";
-$a->strings["Earth Layers"] = "Earth Layers";
-$a->strings["Set zoomfactor for Earth Layers"] = "";
-$a->strings["Set longitude (X) for Earth Layers"] = "";
-$a->strings["Set latitude (Y) for Earth Layers"] = "";
-$a->strings["Help or @NewHere ?"] = "";
-$a->strings["Connect Services"] = "Diensten verbinden";
-$a->strings["Show/hide boxes at right-hand column:"] = "";
-$a->strings["Set color scheme"] = "Stel kleurenschema in";
-$a->strings["Set zoomfactor for Earth Layer"] = "";
-$a->strings["Alignment"] = "Uitlijning";
-$a->strings["Left"] = "Links";
-$a->strings["Center"] = "Gecentreerd";
-$a->strings["Color scheme"] = "Kleurschema";
-$a->strings["Posts font size"] = "Lettergrootte berichten";
-$a->strings["Textareas font size"] = "Lettergrootte tekstgebieden";
-$a->strings["Set colour scheme"] = "Stel kleurschema in";
-$a->strings["default"] = "standaard";
-$a->strings["Background Image"] = "";
-$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "";
-$a->strings["Background Color"] = "";
-$a->strings["HEX value for the background color. Don't include the #"] = "";
-$a->strings["font size"] = "";
-$a->strings["base font size for your interface"] = "";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "";
-$a->strings["Set theme width"] = "Stel breedte van het thema in";
-$a->strings["Delete this item?"] = "Dit item verwijderen?";
-$a->strings["show fewer"] = "Minder tonen";
-$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden.";
-$a->strings["Update Error at %s"] = "Wijzigingsfout op %s";
-$a->strings["Create a New Account"] = "Nieuw account aanmaken";
-$a->strings["Register"] = "Registreer";
-$a->strings["Logout"] = "Uitloggen";
-$a->strings["Login"] = "Login";
-$a->strings["Nickname or Email address: "] = "Bijnaam of e-mailadres:";
-$a->strings["Password: "] = "Wachtwoord:";
-$a->strings["Remember me"] = "Onthou me";
-$a->strings["Or login using OpenID: "] = "Of log in met OpenID:";
-$a->strings["Forgot your password?"] = "Wachtwoord vergeten?";
-$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen";
-$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website";
-$a->strings["terms of service"] = "servicevoorwaarden";
-$a->strings["Website Privacy Policy"] = "Privacybeleid website";
-$a->strings["privacy policy"] = "privacybeleid";
-$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar.";
-$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar.";
-$a->strings["Edit profile"] = "Bewerk profiel";
-$a->strings["Connect"] = "Verbinden";
-$a->strings["Message"] = "Bericht";
-$a->strings["Profiles"] = "Profielen";
-$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen";
-$a->strings["Change profile photo"] = "Profiel foto wijzigen";
-$a->strings["Create New Profile"] = "Maak nieuw profiel";
-$a->strings["Profile Image"] = "Profiel afbeelding";
-$a->strings["visible to everybody"] = "zichtbaar voor iedereen";
-$a->strings["Edit visibility"] = "Pas zichtbaarheid aan";
-$a->strings["Location:"] = "Plaats:";
-$a->strings["Gender:"] = "Geslacht:";
-$a->strings["Status:"] = "Tijdlijn:";
-$a->strings["Homepage:"] = "Jouw tijdlijn:";
-$a->strings["g A l F d"] = "G l j F";
-$a->strings["F d"] = "d F";
-$a->strings["[today]"] = "[vandaag]";
-$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen";
-$a->strings["Birthdays this week:"] = "Verjaardagen deze week:";
-$a->strings["[No description]"] = "[Geen beschrijving]";
-$a->strings["Event Reminders"] = "Gebeurtenisherinneringen";
-$a->strings["Events this week:"] = "Gebeurtenissen deze week:";
-$a->strings["Status"] = "Tijdlijn";
-$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn";
-$a->strings["Profile Details"] = "Profiel Details";
-$a->strings["Photo Albums"] = "Fotoalbums";
-$a->strings["Videos"] = "Video's";
-$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender";
-$a->strings["Personal Notes"] = "Persoonlijke Nota's";
-$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s is op dit moment %2\$s";
-$a->strings["Mood"] = "Stemming";
-$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden";
-$a->strings["Public access denied."] = "Niet vrij toegankelijk";
-$a->strings["Item not found."] = "Item niet gevonden.";
-$a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt.";
-$a->strings["Item has been removed."] = "Item is verwijderd.";
-$a->strings["Access denied."] = "Toegang geweigerd";
-$a->strings["This is Friendica, version"] = "Dit is Friendica, versie";
-$a->strings["running at web location"] = "draaiend op web-adres";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bezoek <a href=\"http://friendica.com\">Friendica.com</a> om meer te leren over het Friendica project.";
-$a->strings["Bug reports and issues: please visit"] = "Bug rapporten en problemen: bezoek";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com";
-$a->strings["Installed plugins/addons/apps:"] = "Geïnstalleerde plugins/toepassingen:";
-$a->strings["No installed plugins/addons/apps"] = "Geen plugins of toepassingen geïnstalleerd";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom";
-$a->strings["Registration details for %s"] = "Registratie details voor %s";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies.";
-$a->strings["Failed to send email message. Here is the message that failed."] = "E-mail bericht kon niet verstuurd worden. Hier is het bericht.";
-$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden.";
-$a->strings["Registration request at %s"] = "Registratieverzoek op %s";
-$a->strings["Your registration is pending approval by the site owner."] = "Je registratie wacht op goedkeuring van de beheerder.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen a.u.b. opnieuw.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in.";
-$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):";
-$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?";
-$a->strings["Yes"] = "Ja";
-$a->strings["No"] = "Nee";
-$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging.";
-$a->strings["Your invitation ID: "] = "Je uitnodigingsid:";
-$a->strings["Registration"] = "Registratie";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Je volledige naam (bijv. Jan Jansens):";
-$a->strings["Your Email Address: "] = "Je email adres:";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan '<strong>bijnaam@\$sitename</strong>' zijn.";
-$a->strings["Choose a nickname: "] = "Kies een bijnaam:";
-$a->strings["Import"] = "Importeren";
-$a->strings["Import your profile to this friendica instance"] = "";
-$a->strings["Profile not found."] = "Profiel niet gevonden";
+$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]";
 $a->strings["Contact not found."] = "Contact niet gevonden";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd.";
-$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen.";
-$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:";
-$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid.";
-$a->strings["Remote site reported: "] = "Website op afstand berichtte: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw.";
-$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen.";
-$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s";
-$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'";
-$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons.";
-$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou.";
-$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken.";
-$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen.";
-$a->strings["Unable to update your contact profile details on our system"] = "";
-$a->strings["Connection accepted at %s"] = "Uw connectie werd geaccepteerd op %s";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s";
-$a->strings["Authorize application connection"] = "";
-$a->strings["Return to your app and insert this Securty Code:"] = "";
-$a->strings["Please login to continue."] = "Log in om verder te gaan.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?";
-$a->strings["No valid account found."] = "Geen geldige account gevonden.";
-$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na.";
-$a->strings["Password reset requested at %s"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld.";
-$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd.";
-$a->strings["Your new password is"] = "Je nieuwe wachtwoord is";
-$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan";
-$a->strings["click here to login"] = "klik hier om in te loggen";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina.";
-$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s";
-$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies.";
-$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:";
-$a->strings["Reset"] = "Opnieuw";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
-$a->strings["No recipient selected."] = "Geen ontvanger geselecteerd.";
-$a->strings["Unable to check your home location."] = "Niet in staat om je tijdlijn-locatie vast te stellen";
-$a->strings["Message could not be sent."] = "Bericht kon niet verzonden worden.";
-$a->strings["Message collection failure."] = "Fout bij het verzamelen van berichten.";
-$a->strings["Message sent."] = "Bericht verzonden.";
-$a->strings["No recipient."] = "Geen ontvanger.";
-$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:";
-$a->strings["Send Private Message"] = "Verstuur privébericht";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat.";
-$a->strings["To:"] = "Aan:";
-$a->strings["Subject:"] = "Onderwerp:";
-$a->strings["Your message:"] = "Jouw bericht:";
-$a->strings["Upload photo"] = "Foto uploaden";
-$a->strings["Insert web link"] = "Voeg een webadres in";
-$a->strings["Welcome to Friendica"] = "Welkom bij Friendica";
-$a->strings["New Member Checklist"] = "Checklist voor nieuwe leden";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen.";
-$a->strings["Getting Started"] = "Aan de slag";
-$a->strings["Friendica Walk-Through"] = "Doorloop Friendica";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden.";
-$a->strings["Go to Your Settings"] = "Ga naar je instellingen";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden.";
-$a->strings["Upload Profile Photo"] = "Profielfoto uploaden";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen.";
-$a->strings["Edit Your Profile"] = "Bewerk je profiel";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Bewerk je <strong>standaard</strong> profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen.";
-$a->strings["Profile Keywords"] = "Sleutelwoorden voor dit profiel";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen.";
-$a->strings["Connecting"] = "Verbinding aan het maken";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Als</em> dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken.";
-$a->strings["Importing Emails"] = "E-mails importeren";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren";
-$a->strings["Go to Your Contacts Page"] = "Ga naar je contactenpagina";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de <em>Voeg nieuw contact toe</em> dialoog.";
-$a->strings["Go to Your Site's Directory"] = "Ga naar de gids van je website";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd.";
-$a->strings["Finding New People"] = "Nieuwe mensen vinden";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden.";
-$a->strings["Groups"] = "Groepen";
-$a->strings["Group Your Contacts"] = "Groepeer je contacten";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. ";
-$a->strings["Why Aren't My Posts Public?"] = "Waarom zijn mijn berichten niet openbaar?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie.";
-$a->strings["Getting Help"] = "Hulp krijgen";
-$a->strings["Go to the Help Section"] = "Ga naar de help";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Je kunt onze <strong>help</strong> pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma.";
-$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?";
-$a->strings["Cancel"] = "Annuleren";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen.";
-$a->strings["Ignore/Hide"] = "Negeren/Verbergen";
-$a->strings["Search Results For:"] = "Zoekresultaten voor:";
-$a->strings["Remove term"] = "Verwijder zoekterm";
-$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten";
-$a->strings["add"] = "toevoegen";
-$a->strings["Commented Order"] = "Nieuwe reacties bovenaan";
-$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan";
-$a->strings["Posted Order"] = "Nieuwe berichten bovenaan";
-$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan";
-$a->strings["Personal"] = "Persoonlijk";
-$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben";
-$a->strings["New"] = "Nieuw";
-$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum";
-$a->strings["Shared Links"] = "Gedeelde links";
-$a->strings["Interesting Links"] = "Interessante links";
-$a->strings["Starred"] = "Met ster";
-$a->strings["Favourite Posts"] = "Favoriete berichten";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk.",
-       1 => "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk.",
+$a->strings["Friend suggestion sent."] = "Vriendschapsvoorstel verzonden.";
+$a->strings["Suggest Friends"] = "Stel vrienden voor";
+$a->strings["Suggest a friend for %s"] = "Stel een vriend voor aan %s";
+$a->strings["This introduction has already been accepted."] = "Verzoek is al goedgekeurd";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar.";
+$a->strings["Warning: profile location has no profile photo."] = "Waarschuwing: Profieladres heeft geen profielfoto.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "De %d vereiste parameter is niet op het gegeven adres gevonden",
+       1 => "De %d vereiste parameters zijn niet op het gegeven adres gevonden",
 );
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Privéberichten naar deze groep kunnen openbaar gemaakt worden.";
-$a->strings["No such group"] = "Zo'n groep bestaat niet";
-$a->strings["Group is empty"] = "De groep is leeg";
-$a->strings["Group: "] = "Groep:";
-$a->strings["Contact: "] = "Contact: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden.";
-$a->strings["Invalid contact."] = "Ongeldig contact.";
-$a->strings["Friendica Communications Server - Setup"] = "";
-$a->strings["Could not connect to database."] = "Kon geen toegang krijgen tot de database.";
-$a->strings["Could not create table."] = "Kon tabel niet aanmaken.";
-$a->strings["Your Friendica site database has been installed."] = "De database van je Friendica-website is geïnstalleerd.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Zie het bestand \"INSTALL.txt\".";
-$a->strings["System check"] = "Systeemcontrole";
-$a->strings["Next"] = "Volgende";
-$a->strings["Check again"] = "Controleer opnieuw";
-$a->strings["Database connection"] = "Verbinding met database";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. ";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat.";
-$a->strings["Database Server Name"] = "Servernaam database";
-$a->strings["Database Login Name"] = "Gebruikersnaam database";
-$a->strings["Database Login Password"] = "Wachtwoord database";
-$a->strings["Database Name"] = "Naam database";
-$a->strings["Site administrator email address"] = "E-mailadres van de websitebeheerder";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken.";
-$a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor uw website";
-$a->strings["Site settings"] = "Website-instellingen";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kan geen command-line-versie van PHP vinden in het PATH van de webserver.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie  <a href='http://friendica.com/node/27'>'Activeren van geplande taken'</a>";
-$a->strings["PHP executable path"] = "PATH van het PHP commando";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten.";
-$a->strings["Command line PHP"] = "PHP-opdrachtregel";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
-$a->strings["Found PHP version: "] = "Gevonden PHP versie:";
-$a->strings["PHP cli binary"] = "";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd.";
-$a->strings["This is required for message delivery to work."] = "Dit is nodig om het verzenden van berichten mogelijk te maken.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait.";
-$a->strings["Generate encryption keys"] = "";
-$a->strings["libCurl PHP module"] = "libCurl PHP module";
-$a->strings["GD graphics PHP module"] = "GD graphics PHP module";
-$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module";
-$a->strings["mysqli PHP module"] = "mysqli PHP module";
-$a->strings["mb_string PHP module"] = "mb_string PHP module";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php is schrijfbaar";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Zorg er a.u.b. voor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map.";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 is schrijfbaar";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
-$a->strings["Url rewrite is working"] = "";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver.";
-$a->strings["Errors encountered creating database tables."] = "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld.";
-$a->strings["<h1>What next</h1>"] = "<h1>Wat nu</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller.";
-$a->strings["Theme settings updated."] = "Thema instellingen aangepast.";
+$a->strings["Introduction complete."] = "Verzoek voltooid.";
+$a->strings["Unrecoverable protocol error."] = "Onherstelbare protocolfout. ";
+$a->strings["Profile unavailable."] = "Profiel onbeschikbaar";
+$a->strings["%s has received too many connection requests today."] = "%s heeft te veel verzoeken gehad vandaag.";
+$a->strings["Spam protection measures have been invoked."] = "Beveiligingsmaatregelen tegen spam zijn in werking getreden.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Wij adviseren vrienden om het over 24 uur nog een keer te proberen.";
+$a->strings["Invalid locator"] = "Ongeldige plaatsbepaler";
+$a->strings["Invalid email address."] = "Geen geldig e-mailadres";
+$a->strings["This account has not been configured for email. Request failed."] = "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail.";
+$a->strings["Unable to resolve your name at the provided location."] = "Ik kan jouw naam op het opgegeven adres niet vinden.";
+$a->strings["You have already introduced yourself here."] = "Je hebt jezelf hier al voorgesteld.";
+$a->strings["Apparently you are already friends with %s."] = "Blijkbaar bent u al bevriend met %s.";
+$a->strings["Invalid profile URL."] = "Ongeldig profiel adres.";
+$a->strings["Disallowed profile URL."] = "Niet toegelaten profiel adres.";
+$a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen.";
+$a->strings["Your introduction has been sent."] = "Je verzoek is verzonden.";
+$a->strings["Please login to confirm introduction."] = "Log in om je verzoek te bevestigen.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Je huidige identiteit is niet de juiste. Log met <strong>dit</strong> profiel in.";
+$a->strings["Hide this contact"] = "Verberg dit contact";
+$a->strings["Welcome home %s."] = "Welkom terug %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je vriendschaps-/connectieverzoek voor %s.";
+$a->strings["Confirm"] = "Bevestig";
+$a->strings["[Name Withheld]"] = "[Naam achtergehouden]";
+$a->strings["Public access denied."] = "Niet vrij toegankelijk";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:";
+$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Sluit aan als e-mail volger</strike> (Binnenkort)";
+$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Als je nog geen lid bent van het vrije sociale web,  <a href=\"http://dir.friendica.com/siteinfo\">volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan</a>.";
+$a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Beantwoord het volgende:";
+$a->strings["Does %s know you?"] = "Kent %s jou?";
+$a->strings["Yes"] = "Ja";
+$a->strings["No"] = "Nee";
+$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Gefedereerde Sociale Web";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk.";
+$a->strings["Your Identity Address:"] = "Adres van uw identiteit:";
+$a->strings["Submit Request"] = "Aanvraag indienen";
+$a->strings["Cancel"] = "Annuleren";
+$a->strings["View Video"] = "Bekijk Video";
+$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar.";
+$a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt.";
+$a->strings["Tips for New Members"] = "Tips voor nieuwe leden";
+$a->strings["Invalid request identifier."] = "Ongeldige <em>request identifier</em>.";
+$a->strings["Discard"] = "Verwerpen";
+$a->strings["Ignore"] = "Negeren";
+$a->strings["System"] = "Systeem";
+$a->strings["Network"] = "Netwerk";
+$a->strings["Personal"] = "Persoonlijk";
+$a->strings["Home"] = "Tijdlijn";
+$a->strings["Introductions"] = "Verzoeken";
+$a->strings["Messages"] = "Privéberichten";
+$a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken";
+$a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken";
+$a->strings["Notification type: "] = "Notificatiesoort:";
+$a->strings["Friend Suggestion"] = "Vriendschapsvoorstel";
+$a->strings["suggested by %s"] = "Voorgesteld door %s";
+$a->strings["Hide this contact from others"] = "Verberg dit contact voor anderen";
+$a->strings["Post a new friend activity"] = "Bericht over een nieuwe vriend";
+$a->strings["if applicable"] = "Indien toepasbaar";
+$a->strings["Approve"] = "Goedkeuren";
+$a->strings["Claims to be known to you: "] = "Denkt dat u hem of haar kent:";
+$a->strings["yes"] = "Ja";
+$a->strings["no"] = "Nee";
+$a->strings["Approve as: "] = "Goedkeuren als:";
+$a->strings["Friend"] = "Vriend";
+$a->strings["Sharer"] = "Deler";
+$a->strings["Fan/Admirer"] = "Fan/Bewonderaar";
+$a->strings["Friend/Connect Request"] = "Vriendschapsverzoek";
+$a->strings["New Follower"] = "Nieuwe Volger";
+$a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken.";
+$a->strings["Notifications"] = "Notificaties";
+$a->strings["%s liked %s's post"] = "%s vond het bericht van %s leuk";
+$a->strings["%s disliked %s's post"] = "%s vond het bericht van %s niet leuk";
+$a->strings["%s is now friends with %s"] = "%s is nu bevriend met %s";
+$a->strings["%s created a new post"] = "%s schreef een nieuw bericht";
+$a->strings["%s commented on %s's post"] = "%s gaf een reactie op het bericht van %s";
+$a->strings["No more network notifications."] = "Geen netwerknotificaties meer";
+$a->strings["Network Notifications"] = "Netwerknotificaties";
+$a->strings["No more system notifications."] = "Geen systeemnotificaties meer.";
+$a->strings["System Notifications"] = "Systeemnotificaties";
+$a->strings["No more personal notifications."] = "Geen persoonlijke notificaties meer";
+$a->strings["Personal Notifications"] = "Persoonlijke notificaties";
+$a->strings["No more home notifications."] = "Geen tijdlijn-notificaties meer";
+$a->strings["Home Notifications"] = "Tijdlijn-notificaties";
+$a->strings["photo"] = "foto";
+$a->strings["status"] = "status";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vind %3\$s van %2\$s leuk";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vind %3\$s van %2\$s niet leuk";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website.";
+$a->strings["Login failed."] = "Login mislukt.";
+$a->strings["Source (bbcode) text:"] = "Bron (bbcode) tekst:";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Bron (Diaspora) tekst om naar BBCode om te zetten:";
+$a->strings["Source input: "] = "Bron ingave:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (ruwe HTML):";
+$a->strings["bb2html: "] = "bb2html:";
+$a->strings["bb2html2bb: "] = "bb2html2bb: ";
+$a->strings["bb2md: "] = "bb2md: ";
+$a->strings["bb2md2html: "] = "bb2md2html: ";
+$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
+$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
+$a->strings["Source input (Diaspora format): "] = "Bron ingave (Diaspora formaat):";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Theme settings updated."] = "Thema-instellingen aangepast.";
 $a->strings["Site"] = "Website";
 $a->strings["Users"] = "Gebruiker";
 $a->strings["Plugins"] = "Plugins";
@@ -401,6 +187,7 @@ $a->strings["Logs"] = "Logs";
 $a->strings["Admin"] = "Beheer";
 $a->strings["Plugin Features"] = "Plugin Functies";
 $a->strings["User registrations waiting for confirmation"] = "Gebruikersregistraties wachten op bevestiging";
+$a->strings["Item not found."] = "Item niet gevonden.";
 $a->strings["Normal Account"] = "Normale Account";
 $a->strings["Soapbox Account"] = "Zeepkist Account";
 $a->strings["Community/Celebrity Account"] = "Gemeenschap/Beroemdheid Account";
@@ -418,6 +205,7 @@ $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] =
 $a->strings["Site settings updated."] = "Site instellingen gewijzigd.";
 $a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten";
 $a->strings["Never"] = "Nooit";
+$a->strings["At post arrival"] = "";
 $a->strings["Frequently"] = "Frequent";
 $a->strings["Hourly"] = "elk uur";
 $a->strings["Twice daily"] = "Twee keer per dag";
@@ -430,6 +218,7 @@ $a->strings["No SSL policy, links will track page SSL state"] = "Geen SSL beleid
 $a->strings["Force all links to use SSL"] = "Verplicht alle links om SSL te gebruiken";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)";
 $a->strings["Save Settings"] = "";
+$a->strings["Registration"] = "Registratie";
 $a->strings["File upload"] = "Uploaden bestand";
 $a->strings["Policies"] = "Beleid";
 $a->strings["Advanced"] = "Geavanceerd";
@@ -478,7 +267,7 @@ $a->strings["URL to update the global directory. If this is not set, the global
 $a->strings["Allow threaded items"] = "Sta threads in conversaties toe";
 $a->strings["Allow infinite level threading for items on this site."] = "Sta oneindige niveaus threads in conversaties op deze website toe.";
 $a->strings["Private posts by default for new users"] = "Privéberichten als standaard voor nieuwe gebruikers";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Stel de standaard rechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar.";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar.";
 $a->strings["Don't include post content in email notifications"] = "De inhoud van het bericht niet insluiten bij e-mailnotificaties";
 $a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "De inhoud van berichten/commentaar/privéberichten/enzovoort  niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy.";
 $a->strings["Disallow public access to addons listed in the apps menu."] = "";
@@ -498,7 +287,7 @@ $a->strings["Use PHP UTF8 regular expressions"] = "Gebruik PHP UTF8 reguliere ui
 $a->strings["Show Community Page"] = "Toon Gemeenschapspagina";
 $a->strings["Display a Community page showing all recent public postings on this site."] = "Toon een gemeenschapspagina die alle recente openbare berichten op deze website toont.";
 $a->strings["Enable OStatus support"] = "Activeer OStatus ondersteuning";
-$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Bied ingebouwde Ostatus (identi.ca, status.net, enz.) ondersteuning. Alle communicaties in Ostatus zijn openbaar, dus zullen af en toe privacy waarschuwingen getoond worden.";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
 $a->strings["OStatus conversation completion interval"] = "";
 $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "";
 $a->strings["Enable Diaspora support"] = "Activeer Diaspora ondersteuning";
@@ -538,6 +327,7 @@ $a->strings["Failed Updates"] = "Misluke wijzigingen";
 $a->strings["This does not include updates prior to 1139, which did not return a status."] = "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven.";
 $a->strings["Mark success (if update was manually applied)"] = "Markeren als succes (als aanpassing manueel doorgevoerd werd)";
 $a->strings["Attempt to execute this update step automatically"] = "Probeer deze stap automatisch uit te voeren";
+$a->strings["Registration details for %s"] = "Registratie details voor %s";
 $a->strings["Registration successful. Email send to user"] = "";
 $a->strings["%s user blocked/unblocked"] = array(
        0 => "%s gebruiker geblokkeerd/niet geblokkeerd",
@@ -558,7 +348,6 @@ $a->strings["Request date"] = "Registratiedatum";
 $a->strings["Name"] = "Naam";
 $a->strings["Email"] = "E-mail";
 $a->strings["No registrations."] = "Geen registraties.";
-$a->strings["Approve"] = "Goedkeuren";
 $a->strings["Deny"] = "Weiger";
 $a->strings["Block"] = "Blokkeren";
 $a->strings["Unblock"] = "Blokkering opheffen";
@@ -581,6 +370,7 @@ $a->strings["Plugin %s enabled."] = "Plugin %s ingeschakeld.";
 $a->strings["Disable"] = "Uitschakelen";
 $a->strings["Enable"] = "Inschakelen";
 $a->strings["Toggle"] = "Schakelaar";
+$a->strings["Settings"] = "Instellingen";
 $a->strings["Author: "] = "Auteur:";
 $a->strings["Maintainer: "] = "Onderhoud:";
 $a->strings["No themes found."] = "Geen thema's gevonden.";
@@ -599,11 +389,36 @@ $a->strings["FTP Host"] = "FTP Server";
 $a->strings["FTP Path"] = "FTP Pad";
 $a->strings["FTP User"] = "FTP Gebruiker";
 $a->strings["FTP Password"] = "FTP wachtwoord";
-$a->strings["Search"] = "Zoeken";
-$a->strings["No results."] = "Geen resultaten.";
-$a->strings["Tips for New Members"] = "Tips voor nieuwe leden";
-$a->strings["link"] = "link";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s";
+$a->strings["New Message"] = "Nieuw Bericht";
+$a->strings["No recipient selected."] = "Geen ontvanger geselecteerd.";
+$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden.";
+$a->strings["Message could not be sent."] = "Bericht kon niet verzonden worden.";
+$a->strings["Message collection failure."] = "Fout bij het verzamelen van berichten.";
+$a->strings["Message sent."] = "Bericht verzonden.";
+$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?";
+$a->strings["Message deleted."] = "Bericht verwijderd.";
+$a->strings["Conversation removed."] = "Gesprek verwijderd.";
+$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:";
+$a->strings["Send Private Message"] = "Verstuur privébericht";
+$a->strings["To:"] = "Aan:";
+$a->strings["Subject:"] = "Onderwerp:";
+$a->strings["Your message:"] = "Jouw bericht:";
+$a->strings["Upload photo"] = "Foto uploaden";
+$a->strings["Insert web link"] = "Voeg een webadres in";
+$a->strings["No messages."] = "Geen berichten.";
+$a->strings["Unknown sender - %s"] = "Onbekende afzender - %s";
+$a->strings["You and %s"] = "Jij en %s";
+$a->strings["%s and You"] = "%s en jij";
+$a->strings["Delete conversation"] = "Verwijder gesprek";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d bericht",
+       1 => "%d berichten",
+);
+$a->strings["Message not available."] = "Bericht niet beschikbaar.";
+$a->strings["Delete message"] = "Verwijder bericht";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender.";
+$a->strings["Send Reply"] = "Verstuur Antwoord";
 $a->strings["Item not found"] = "Item niet gevonden";
 $a->strings["Edit post"] = "Bericht bewerken";
 $a->strings["upload photo"] = "Foto uploaden";
@@ -624,95 +439,169 @@ $a->strings["Public post"] = "Openbare post";
 $a->strings["Set title"] = "Titel plaatsen";
 $a->strings["Categories (comma-separated list)"] = "Categorieën (komma-gescheiden lijst)";
 $a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be";
+$a->strings["Profile not found."] = "Profiel niet gevonden";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd.";
+$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen.";
+$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:";
+$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid.";
+$a->strings["Remote site reported: "] = "Website op afstand berichtte: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw.";
+$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen.";
+$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen.";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s";
+$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'";
+$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons.";
+$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou.";
+$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken.";
+$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen.";
+$a->strings["Unable to update your contact profile details on our system"] = "";
+$a->strings["Connection accepted at %s"] = "Uw connectie werd geaccepteerd op %s";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s";
+$a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist.";
+$a->strings["l, F j"] = "l j F";
+$a->strings["Edit event"] = "Gebeurtenis bewerken";
+$a->strings["link to source"] = "Verwijzing naar bron";
+$a->strings["Events"] = "Gebeurtenissen";
+$a->strings["Create New Event"] = "Maak een nieuwe gebeurtenis";
+$a->strings["Previous"] = "Vorige";
+$a->strings["Next"] = "Volgende";
+$a->strings["hour:minute"] = "uur:minuut";
+$a->strings["Event details"] = "Gebeurtenis details";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Formaat is %s %s. Begindatum en titel zijn vereist.";
+$a->strings["Event Starts:"] = "Gebeurtenis begint:";
+$a->strings["Required"] = "Vereist";
+$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/tijd is niet gekend of niet relevant";
+$a->strings["Event Finishes:"] = "Gebeurtenis eindigt:";
+$a->strings["Adjust for viewer timezone"] = "Pas aan aan de tijdzone van de gebruiker";
+$a->strings["Description:"] = "Beschrijving:";
+$a->strings["Location:"] = "Plaats:";
+$a->strings["Title:"] = "Titel:";
+$a->strings["Share this event"] = "Deel deze gebeurtenis";
+$a->strings["Photos"] = "Foto's";
+$a->strings["Files"] = "Bestanden";
+$a->strings["Welcome to %s"] = "Welkom op %s";
+$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar.";
+$a->strings["Visible to:"] = "Zichtbaar voor:";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
+$a->strings["Unable to check your home location."] = "Niet in staat om je tijdlijn-locatie vast te stellen";
+$a->strings["No recipient."] = "Geen ontvanger.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat.";
+$a->strings["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]";
+$a->strings["Edit contact"] = "Contact bewerken";
+$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep";
+$a->strings["This is Friendica, version"] = "Dit is Friendica, versie";
+$a->strings["running at web location"] = "draaiend op web-adres";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bezoek <a href=\"http://friendica.com\">Friendica.com</a> om meer te leren over het Friendica project.";
+$a->strings["Bug reports and issues: please visit"] = "Bug rapporten en problemen: bezoek";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com";
+$a->strings["Installed plugins/addons/apps:"] = "Geïnstalleerde plugins/toepassingen:";
+$a->strings["No installed plugins/addons/apps"] = "Geen plugins of toepassingen geïnstalleerd";
+$a->strings["Remove My Account"] = "Verwijder mijn account";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is.";
+$a->strings["Please enter your password for verification:"] = "Voer je wachtwoord in voor verificatie:";
+$a->strings["Image exceeds size limit of %d"] = "Afbeelding is groter dan de toegestane %d";
+$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken";
+$a->strings["Wall Photos"] = "";
+$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt.";
+$a->strings["Authorize application connection"] = "";
+$a->strings["Return to your app and insert this Securty Code:"] = "";
+$a->strings["Please login to continue."] = "Log in om verder te gaan.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s";
+$a->strings["Photo Albums"] = "Fotoalbums";
+$a->strings["Contact Photos"] = "Contactfoto's";
+$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden";
+$a->strings["everybody"] = "iedereen";
+$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar";
+$a->strings["Profile Photos"] = "Profielfoto's";
+$a->strings["Album not found."] = "Album niet gevonden";
+$a->strings["Delete Album"] = "Verwijder album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?";
+$a->strings["Delete Photo"] = "Verwijder foto";
+$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s";
+$a->strings["a photo"] = "een foto";
+$a->strings["Image exceeds size limit of "] = "Afbeelding is groter dan de maximale afmeting van";
+$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg.";
+$a->strings["No photos selected"] = "Geen foto's geselecteerd";
+$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt.";
+$a->strings["Upload Photos"] = "Upload foto's";
+$a->strings["New album name: "] = "Nieuwe albumnaam: ";
+$a->strings["or existing album name: "] = "of bestaande albumnaam: ";
+$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload";
+$a->strings["Permissions"] = "Rechten";
+$a->strings["Show to Groups"] = "Tonen aan groepen";
+$a->strings["Show to Contacts"] = "Tonen aan contacten";
+$a->strings["Private Photo"] = "Privé foto";
+$a->strings["Public Photo"] = "Publieke foto";
+$a->strings["Edit Album"] = "Album wijzigen";
+$a->strings["Show Newest First"] = "Toon niewste eerst";
+$a->strings["Show Oldest First"] = "Toon oudste eerst";
+$a->strings["View Photo"] = "Bekijk foto";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt.";
+$a->strings["Photo not available"] = "Foto is niet beschikbaar";
+$a->strings["View photo"] = "Bekijk foto";
+$a->strings["Edit photo"] = "Bewerk foto";
+$a->strings["Use as profile photo"] = "Gebruik als profielfoto";
+$a->strings["View Full Size"] = "Bekijk in volledig formaat";
+$a->strings["Tags: "] = "Labels: ";
+$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]";
+$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)";
+$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)";
+$a->strings["New album name"] = "Nieuwe albumnaam";
+$a->strings["Caption"] = "Onderschrift";
+$a->strings["Add a Tag"] = "Een label toevoegen";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping ";
+$a->strings["Private photo"] = "Privé foto";
+$a->strings["Public photo"] = "Publieke foto";
+$a->strings["Share"] = "Delen";
+$a->strings["View Album"] = "Album bekijken";
+$a->strings["Recent Photos"] = "Recente foto's";
+$a->strings["No profile"] = "Geen profiel";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies.";
+$a->strings["Failed to send email message. Here is the message that failed."] = "E-mail bericht kon niet verstuurd worden. Hier is het bericht.";
+$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden.";
+$a->strings["Registration request at %s"] = "Registratieverzoek op %s";
+$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in.";
+$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):";
+$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?";
+$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging.";
+$a->strings["Your invitation ID: "] = "Je uitnodigingsid:";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Je volledige naam (bijv. Jan Jansens):";
+$a->strings["Your Email Address: "] = "Je email adres:";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan '<strong>bijnaam@\$sitename</strong>' zijn.";
+$a->strings["Choose a nickname: "] = "Kies een bijnaam:";
+$a->strings["Register"] = "Registreer";
+$a->strings["Import"] = "Importeren";
+$a->strings["Import your profile to this friendica instance"] = "";
+$a->strings["No valid account found."] = "Geen geldige account gevonden.";
+$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na.";
+$a->strings["Password reset requested at %s"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld.";
+$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen";
+$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd.";
+$a->strings["Your new password is"] = "Je nieuwe wachtwoord is";
+$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan";
+$a->strings["click here to login"] = "klik hier om in te loggen";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de <em>Instellingen></em> pagina.";
+$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s";
+$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies.";
+$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:";
+$a->strings["Reset"] = "Opnieuw";
+$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud";
 $a->strings["Item not available."] = "Item niet beschikbaar";
 $a->strings["Item was not found."] = "Item niet gevonden";
-$a->strings["Account approved."] = "Account goedgekeurd.";
-$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s";
-$a->strings["Please login."] = "Log a.u.b. in.";
-$a->strings["Find on this site"] = "Op deze website zoeken";
-$a->strings["Finding: "] = "Gevonden:";
-$a->strings["Site Directory"] = "Websitegids";
-$a->strings["Find"] = "Zoek";
-$a->strings["Age: "] = "Leeftijd:";
-$a->strings["Gender: "] = "Geslacht:";
-$a->strings["About:"] = "Over:";
-$a->strings["No entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn).";
-$a->strings["Contact settings applied."] = "Contactinstellingen toegepast.";
-$a->strings["Contact update failed."] = "Aanpassen van contact mislukt.";
-$a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen.";
-$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker";
-$a->strings["Account Nickname"] = "Bijnaam account";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam";
-$a->strings["Account URL"] = "URL account";
-$a->strings["Friend Request URL"] = "URL vriendschapsverzoek";
-$a->strings["Friend Confirm URL"] = "";
-$a->strings["Notification Endpoint URL"] = "";
-$a->strings["Poll/Feed URL"] = "URL poll/feed";
-$a->strings["New photo from this URL"] = "Nieuwe foto van deze URL";
-$a->strings["Remote Self"] = "";
-$a->strings["Mirror postings from this contact"] = "";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
-$a->strings["Move account"] = "Account verplaatsen";
-$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren.";
-$a->strings["Account file"] = "Account bestand";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "";
-$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar.";
-$a->strings["Visible to:"] = "Zichtbaar voor:";
-$a->strings["Save"] = "Bewaren";
+$a->strings["Applications"] = "Toepassingen";
+$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd";
 $a->strings["Help:"] = "Help:";
 $a->strings["Help"] = "Help";
-$a->strings["No profile"] = "Geen profiel";
-$a->strings["This introduction has already been accepted."] = "Verzoek is al goedgekeurd";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar.";
-$a->strings["Warning: profile location has no profile photo."] = "Waarschuwing: Profieladres heeft geen profielfoto.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "De %d vereiste parameter is niet op het gegeven adres gevonden",
-       1 => "De %d vereiste parameters zijn niet op het gegeven adres gevonden",
-);
-$a->strings["Introduction complete."] = "Verzoek voltooid.";
-$a->strings["Unrecoverable protocol error."] = "Onherstelbare protocolfout. ";
-$a->strings["Profile unavailable."] = "Profiel onbeschikbaar";
-$a->strings["%s has received too many connection requests today."] = "%s heeft te veel verzoeken gehad vandaag.";
-$a->strings["Spam protection measures have been invoked."] = "Beveiligingsmaatregelen tegen spam zijn in werking getreden.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Wij adviseren vrienden om het over 24 uur nog een keer te proberen.";
-$a->strings["Invalid locator"] = "Ongeldige plaatsbepaler";
-$a->strings["Invalid email address."] = "Geen geldig e-mailadres";
-$a->strings["This account has not been configured for email. Request failed."] = "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail.";
-$a->strings["Unable to resolve your name at the provided location."] = "Ik kan jouw naam op het opgegeven adres niet vinden.";
-$a->strings["You have already introduced yourself here."] = "Je hebt jezelf hier al voorgesteld.";
-$a->strings["Apparently you are already friends with %s."] = "Blijkbaar bent u al bevriend met %s.";
-$a->strings["Invalid profile URL."] = "Ongeldig profiel adres.";
-$a->strings["Disallowed profile URL."] = "Niet toegelaten profiel adres.";
-$a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen.";
-$a->strings["Your introduction has been sent."] = "Je verzoek is verzonden.";
-$a->strings["Please login to confirm introduction."] = "Log in om je verzoek te bevestigen.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Je huidige identiteit is niet de juiste. Log a.u.b. in met <strong>dit</strong> profiel.";
-$a->strings["Hide this contact"] = "Verberg dit contact";
-$a->strings["Welcome home %s."] = "Welkom terug %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je vriendschaps-/connectieverzoek voor %s.";
-$a->strings["Confirm"] = "Bevestig";
-$a->strings["[Name Withheld]"] = "[Naam achtergehouden]";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:";
-$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Sluit aan als e-mail volger</strike> (Binnenkort)";
-$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Als je nog geen lid bent van het vrije sociale web,  <a href=\"http://dir.friendica.com/siteinfo\">volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan</a>.";
-$a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Beantwoord het volgende:";
-$a->strings["Does %s know you?"] = "Kent %s jou?";
-$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Gefedereerde Sociale Web";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "- Gebruik a.u.b. niet dit formulier. Vul %s in in je Diaspora zoekbalk.";
-$a->strings["Your Identity Address:"] = "Adres van uw identiteit:";
-$a->strings["Submit Request"] = "Aanvraag indienen";
-$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]";
-$a->strings["View in context"] = "In context bekijken";
 $a->strings["%d contact edited."] = array(
        0 => "",
        1 => "",
@@ -743,7 +632,6 @@ $a->strings["%d contact in common"] = array(
 $a->strings["View all contacts"] = "Alle contacten zien";
 $a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status";
 $a->strings["Unignore"] = "Negeer niet meer";
-$a->strings["Ignore"] = "Negeren";
 $a->strings["Toggle Ignored status"] = "Schakel negeerstatus";
 $a->strings["Unarchive"] = "Archiveer niet meer";
 $a->strings["Archive"] = "Archiveer";
@@ -756,7 +644,6 @@ $a->strings["Profile Visibility"] = "Zichtbaarheid profiel";
 $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. ";
 $a->strings["Contact Information / Notes"] = "Contactinformatie / aantekeningen";
 $a->strings["Edit contact notes"] = "Wijzig aantekeningen over dit contact";
-$a->strings["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]";
 $a->strings["Block/Unblock contact"] = "Blokkeer/deblokkeer contact";
 $a->strings["Ignore contact"] = "Negeer contact";
 $a->strings["Repair URL settings"] = "Repareer URL-instellingen";
@@ -767,8 +654,10 @@ $a->strings["Update public posts"] = "Openbare posts aanpassen";
 $a->strings["Currently blocked"] = "Op dit moment geblokkeerd";
 $a->strings["Currently ignored"] = "Op dit moment genegeerd";
 $a->strings["Currently archived"] = "Op dit moment gearchiveerd";
-$a->strings["Hide this contact from others"] = "Verberg dit contact voor anderen";
 $a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antwoorden of 'vind ik leuk's op je openbare posts <strong>kunnen</strong> nog zichtbaar zijn";
+$a->strings["Notification for new posts"] = "";
+$a->strings["Send a notification of every new post of this contact"] = "";
+$a->strings["Fetch further information for feeds"] = "";
 $a->strings["Suggestions"] = "Voorstellen";
 $a->strings["Suggest potential friends"] = "Stel vrienden voor";
 $a->strings["All Contacts"] = "Alle Contacten";
@@ -786,15 +675,94 @@ $a->strings["Only show hidden contacts"] = "Toon alleen verborgen contacten";
 $a->strings["Mutual Friendship"] = "Wederzijdse vriendschap";
 $a->strings["is a fan of yours"] = "Is een fan van jou";
 $a->strings["you are a fan of"] = "Jij bent een fan van";
-$a->strings["Edit contact"] = "Contact bewerken";
+$a->strings["Contacts"] = "Contacten";
 $a->strings["Search your contacts"] = "Doorzoek je contacten";
+$a->strings["Finding: "] = "Gevonden:";
+$a->strings["Find"] = "Zoek";
 $a->strings["Update"] = "Wijzigen";
-$a->strings["everybody"] = "iedereen";
-$a->strings["Account settings"] = "Account instellingen";
+$a->strings["No videos selected"] = "Geen video's geselecteerd";
+$a->strings["Recent Videos"] = "Recente video's";
+$a->strings["Upload New Videos"] = "Nieuwe video's uploaden";
+$a->strings["Common Friends"] = "Gedeelde Vrienden";
+$a->strings["No contacts in common."] = "Geen gedeelde contacten.";
+$a->strings["Contact added"] = "Contact toegevoegd";
+$a->strings["Move account"] = "Account verplaatsen";
+$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren.";
+$a->strings["Account file"] = "Account bestand";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s";
+$a->strings["Friends of %s"] = "Vrienden van %s";
+$a->strings["No friends to display."] = "Geen vrienden om te laten zien.";
+$a->strings["Tag removed"] = "Label verwijderd";
+$a->strings["Remove Item Tag"] = "Verwijder label van item";
+$a->strings["Select a tag to remove: "] = "Selecteer een label om te verwijderen: ";
+$a->strings["Remove"] = "Verwijderen";
+$a->strings["Welcome to Friendica"] = "Welkom bij Friendica";
+$a->strings["New Member Checklist"] = "Checklist voor nieuwe leden";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen.";
+$a->strings["Getting Started"] = "Aan de slag";
+$a->strings["Friendica Walk-Through"] = "Doorloop Friendica";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Op je <em>Snelstart</em> pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden.";
+$a->strings["Go to Your Settings"] = "Ga naar je instellingen";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Verander je initieel wachtwoord op je <em>instellingenpagina</em>. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden.";
+$a->strings["Profile"] = "Profiel";
+$a->strings["Upload Profile Photo"] = "Profielfoto uploaden";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen.";
+$a->strings["Edit Your Profile"] = "Bewerk je profiel";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Bewerk je <strong>standaard</strong> profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen.";
+$a->strings["Profile Keywords"] = "Sleutelwoorden voor dit profiel";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Stel enkele openbare sleutelwoorden in voor je standaard profiel die je interesses beschrijven. We kunnen dan misschien mensen vinden met gelijkaardige interesses, en vrienden voorstellen.";
+$a->strings["Connecting"] = "Verbinding aan het maken";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Machtig de Facebook Connector als je een Facebook account hebt. We zullen (optioneel) al je Facebook vrienden en conversaties importeren.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Als</em> dit jouw eigen persoonlijke server is kan het installeren van de Facebook toevoeging je overgang naar het vrije sociale web vergemakkelijken.";
+$a->strings["Importing Emails"] = "E-mails importeren";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren";
+$a->strings["Go to Your Contacts Page"] = "Ga naar je contactenpagina";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de <em>Voeg nieuw contact toe</em> dialoog.";
+$a->strings["Go to Your Site's Directory"] = "Ga naar de gids van je website";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord <em>Connect</em> of <em>Follow</em> op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd.";
+$a->strings["Finding New People"] = "Nieuwe mensen vinden";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden.";
+$a->strings["Groups"] = "Groepen";
+$a->strings["Group Your Contacts"] = "Groepeer je contacten";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Als je een aantal vrienden gemaakt hebt kun je ze in je eigen conversatiegroepen indelen vanuit de zijbalk van je 'Conacten' pagina, en dan kun je met elke groep apart contact houden op je Netwerk pagina. ";
+$a->strings["Why Aren't My Posts Public?"] = "Waarom zijn mijn berichten niet openbaar?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie.";
+$a->strings["Getting Help"] = "Hulp krijgen";
+$a->strings["Go to the Help Section"] = "Ga naar de help";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Je kunt onze <strong>help</strong> pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma.";
+$a->strings["Remove term"] = "Verwijder zoekterm";
+$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten";
+$a->strings["Search"] = "Zoeken";
+$a->strings["No results."] = "Geen resultaten.";
+$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden.";
+$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres.";
+$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website.";
+$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt.";
+$a->strings["%d message sent."] = array(
+       0 => "%d bericht verzonden.",
+       1 => "%d berichten verzonden.",
+);
+$a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen.";
+$a->strings["Send invitations"] = "Verstuur uitnodigingen";
+$a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken";
 $a->strings["Additional features"] = "Extra functies";
-$a->strings["Display settings"] = "Scherminstellingen";
-$a->strings["Connector settings"] = "Connector instellingen";
-$a->strings["Plugin settings"] = "Plugin instellingen";
+$a->strings["Display"] = "";
+$a->strings["Social Networks"] = "";
+$a->strings["Delegations"] = "";
 $a->strings["Connected apps"] = "Verbonden applicaties";
 $a->strings["Export personal data"] = "Persoonlijke gegevens exporteren";
 $a->strings["Remove account"] = "Account verwijderen";
@@ -808,7 +776,7 @@ $a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wach
 $a->strings["Wrong password."] = "Verkeerd wachtwoord.";
 $a->strings["Password changed."] = "Wachtwoord gewijzigd.";
 $a->strings["Password update failed. Please try again."] = "Wachtwoord-)wijziging mislukt. Probeer opnieuw.";
-$a->strings[" Please use a shorter name."] = "Gebruik a.u.b. een kortere naam.";
+$a->strings[" Please use a shorter name."] = "Gebruik een kortere naam.";
 $a->strings[" Name too short."] = "Naam te kort.";
 $a->strings["Wrong Password"] = "Verkeerd wachtwoord";
 $a->strings[" Not valid email."] = "Geen geldig e-mailadres.";
@@ -836,7 +804,6 @@ $a->strings["enabled"] = "ingeschakeld";
 $a->strings["disabled"] = "uitgeschakeld";
 $a->strings["StatusNet"] = "StatusNet";
 $a->strings["Email access is disabled on this site."] = "E-mailtoegang is op deze website uitgeschakeld.";
-$a->strings["Connector Settings"] = "Connector Instellingen";
 $a->strings["Email/Mailbox Setup"] = "E-mail Instellen";
 $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken.";
 $a->strings["Last successful email check:"] = "Laatste succesvolle e-mail controle:";
@@ -861,7 +828,10 @@ $a->strings["Number of items to display per page:"] = "Aantal items te tonen per
 $a->strings["Maximum of 100 items"] = "Maximum 100 items";
 $a->strings["Number of items to display per page when viewed from mobile device:"] = "Aantal items per pagina als je een mobiel toestel gebruikt:";
 $a->strings["Don't show emoticons"] = "Emoticons niet tonen";
+$a->strings["Don't show notices"] = "";
 $a->strings["Infinite scroll"] = "";
+$a->strings["User Types"] = "";
+$a->strings["Community Types"] = "";
 $a->strings["Normal Account Page"] = "Normale account pagina";
 $a->strings["This account is a normal personal profile"] = "Deze account is een normaal persoonlijk profiel";
 $a->strings["Soapbox Page"] = "Zeepkist pagina";
@@ -913,8 +883,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal vriendschapsverzoe
 $a->strings["(to prevent spam abuse)"] = "(om spam misbruik te voorkomen)";
 $a->strings["Default Post Permissions"] = "Standaard rechten voor nieuwe berichten";
 $a->strings["(click to open/close)"] = "(klik om te openen/sluiten)";
-$a->strings["Show to Groups"] = "Tonen aan groepen";
-$a->strings["Show to Contacts"] = "Tonen aan contacten";
 $a->strings["Default Private Post"] = "Standaard Privé Post";
 $a->strings["Default Public Post"] = "Standaard Publieke Post";
 $a->strings["Default Permissions for New Posts"] = "Standaard rechten voor nieuwe berichten";
@@ -927,17 +895,20 @@ $a->strings["making an <em>interesting</em> profile change"] = "Een <em>interess
 $a->strings["Send a notification email when:"] = "Stuur een notificatie e-mail wanneer:";
 $a->strings["You receive an introduction"] = "Je ontvangt een vriendschaps- of connectieverzoek";
 $a->strings["Your introductions are confirmed"] = "Jouw vriendschaps- of connectieverzoeken zijn bevestigd";
-$a->strings["Someone writes on your profile wall"] = "Iemand iets op de muur van je profiel schrijft";
-$a->strings["Someone writes a followup comment"] = "Iemand een commentaar schrijft";
+$a->strings["Someone writes on your profile wall"] = "Iemand iets op je tijdlijn schrijft";
+$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft";
 $a->strings["You receive a private message"] = "Je een privé-bericht ontvangt";
 $a->strings["You receive a friend suggestion"] = "Je een suggestie voor een vriendschap ontvangt";
-$a->strings["You are tagged in a post"] = "Je bent in een bericht genoemd";
-$a->strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc.";
+$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd";
+$a->strings["You are poked/prodded/etc. in a post"] = "Je in een bericht bent aangestoten/gepord/etc.";
 $a->strings["Advanced Account/Page Type Settings"] = "";
 $a->strings["Change the behaviour of this account for special situations"] = "";
 $a->strings["Relocate"] = "";
 $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "";
 $a->strings["Resend relocate message to contacts"] = "";
+$a->strings["Item has been removed."] = "Item is verwijderd.";
+$a->strings["People Search"] = "Mensen Zoeken";
+$a->strings["No matches"] = "Geen resultaten";
 $a->strings["Profile deleted."] = "Profiel verwijderd";
 $a->strings["Profile-"] = "Profiel-";
 $a->strings["New profile created."] = "Nieuw profiel aangemaakt.";
@@ -963,8 +934,8 @@ $a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s veranderde %2
 $a->strings[" - Visit %1\$s's %2\$s"] = " - Bezoek %2\$s van %1\$s";
 $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepast %2\$s, %3\$s veranderd.";
 $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Je vrienden/contacten verbergen voor bezoekers van dit profiel?";
-$a->strings["Edit Profile Details"] = "Profiel details bewerken";
-$a->strings["Change Profile Photo"] = "Profiel foto wijzigen";
+$a->strings["Edit Profile Details"] = "Profieldetails bewerken";
+$a->strings["Change Profile Photo"] = "Profielfoto wijzigen";
 $a->strings["View this profile"] = "Dit profiel bekijken";
 $a->strings["Create a new profile using these settings"] = "Nieuw profiel aanmaken met deze instellingen";
 $a->strings["Clone this profile"] = "Dit profiel klonen";
@@ -988,158 +959,105 @@ $a->strings["Homepage URL:"] = "Adres tijdlijn:";
 $a->strings["Hometown:"] = "Woonplaats:";
 $a->strings["Political Views:"] = "Politieke standpunten:";
 $a->strings["Religious Views:"] = "Geloof:";
-$a->strings["Public Keywords:"] = "Publieke Sleutelwoorden:";
-$a->strings["Private Keywords:"] = "Privé Sleutelwoorden:";
-$a->strings["Likes:"] = "Houdt van:";
-$a->strings["Dislikes:"] = "Houdt niet van:";
-$a->strings["Example: fishing photography software"] = "Voorbeeld: vissen fotografie software";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)";
-$a->strings["Tell us about yourself..."] = "Vertel iets over jezelf...";
-$a->strings["Hobbies/Interests"] = "Hobby's/Interesses";
-$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken";
-$a->strings["Musical interests"] = "Muzikale interesses";
-$a->strings["Books, literature"] = "Boeken, literatuur";
-$a->strings["Television"] = "Televisie";
-$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/ontspanning";
-$a->strings["Love/romance"] = "Liefde/romance";
-$a->strings["Work/employment"] = "Werk";
-$a->strings["School/education"] = "School/opleiding";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dit is jouw <strong>publiek</strong> profiel.<br />Het <strong>kan</strong> zichtbaar zijn voor iedereen op het internet.";
-$a->strings["Edit/Manage Profiles"] = "Wijzig/Beheer Profielen";
-$a->strings["Group created."] = "Groep aangemaakt.";
-$a->strings["Could not create group."] = "Kon de groep niet aanmaken.";
-$a->strings["Group not found."] = "Groep niet gevonden.";
-$a->strings["Group name changed."] = "Groepsnaam gewijzigd.";
-$a->strings["Save Group"] = "";
-$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan.";
-$a->strings["Group Name: "] = "Groepsnaam:";
-$a->strings["Group removed."] = "Groep verwijderd.";
-$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen.";
-$a->strings["Group Editor"] = "Groepsbewerker";
-$a->strings["Members"] = "Leden";
-$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen.";
-$a->strings["Source (bbcode) text:"] = "Bron (bbcode) tekst:";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Bron (Diaspora) tekst om naar BBCode om te zetten:";
-$a->strings["Source input: "] = "Bron ingave:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (ruwe HTML):";
-$a->strings["bb2html: "] = "bb2html:";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Bron ingave (Diaspora formaat):";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Public Keywords:"] = "Publieke Sleutelwoorden:";
+$a->strings["Private Keywords:"] = "Privé Sleutelwoorden:";
+$a->strings["Likes:"] = "Houdt van:";
+$a->strings["Dislikes:"] = "Houdt niet van:";
+$a->strings["Example: fishing photography software"] = "Voorbeeld: vissen fotografie software";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)";
+$a->strings["Tell us about yourself..."] = "Vertel iets over jezelf...";
+$a->strings["Hobbies/Interests"] = "Hobby's/Interesses";
+$a->strings["Contact information and Social Networks"] = "Contactinformatie en sociale netwerken";
+$a->strings["Musical interests"] = "Muzikale interesses";
+$a->strings["Books, literature"] = "Boeken, literatuur";
+$a->strings["Television"] = "Televisie";
+$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultuur/ontspanning";
+$a->strings["Love/romance"] = "Liefde/romance";
+$a->strings["Work/employment"] = "Werk";
+$a->strings["School/education"] = "School/opleiding";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dit is jouw <strong>publiek</strong> profiel.<br />Het <strong>kan</strong> zichtbaar zijn voor iedereen op het internet.";
+$a->strings["Age: "] = "Leeftijd:";
+$a->strings["Edit/Manage Profiles"] = "Wijzig/Beheer Profielen";
+$a->strings["Change profile photo"] = "Profiel foto wijzigen";
+$a->strings["Create New Profile"] = "Maak nieuw profiel";
+$a->strings["Profile Image"] = "Profiel afbeelding";
+$a->strings["visible to everybody"] = "zichtbaar voor iedereen";
+$a->strings["Edit visibility"] = "Pas zichtbaarheid aan";
+$a->strings["link"] = "link";
+$a->strings["Export account"] = "Account exporteren";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server.";
+$a->strings["Export all"] = "Alles exporteren";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)";
+$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden";
+$a->strings["{0} sent you a message"] = "{0} stuurde jou een bericht";
+$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren";
+$a->strings["{0} commented %s's post"] = "{0} gaf een reactie op het bericht van %s";
+$a->strings["{0} liked %s's post"] = "{0} vond het bericht van %s leuk";
+$a->strings["{0} disliked %s's post"] = "{0} vond het bericht van %s niet leuk";
+$a->strings["{0} is now friends with %s"] = "{0} is nu bevriend met %s";
+$a->strings["{0} posted"] = "{0} plaatste";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} labelde %s's bericht met #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} vermeldde je in een bericht";
+$a->strings["Nothing new here"] = "Niets nieuw hier";
+$a->strings["Clear notifications"] = "Notificaties verwijderen";
 $a->strings["Not available."] = "Niet beschikbaar";
-$a->strings["Contact added"] = "Contact toegevoegd";
-$a->strings["No more system notifications."] = "Geen systeemnotificaties meer.";
-$a->strings["System Notifications"] = "Systeemnotificaties";
-$a->strings["New Message"] = "Nieuw Bericht";
-$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden.";
-$a->strings["Messages"] = "Privéberichten";
-$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?";
-$a->strings["Message deleted."] = "Bericht verwijderd.";
-$a->strings["Conversation removed."] = "Gesprek verwijderd.";
-$a->strings["No messages."] = "Geen berichten.";
-$a->strings["Unknown sender - %s"] = "Onbekende afzender - %s";
-$a->strings["You and %s"] = "Jij en %s";
-$a->strings["%s and You"] = "%s en jij";
-$a->strings["Delete conversation"] = "Verwijder gesprek";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d bericht",
-       1 => "%d berichten",
-);
-$a->strings["Message not available."] = "Bericht niet beschikbaar.";
-$a->strings["Delete message"] = "Verwijder bericht";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt <strong>misschien</strong> antwoorden vanaf de profiel-pagina van de afzender.";
-$a->strings["Send Reply"] = "Verstuur Antwoord";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vind %3\$s van %2\$s niet leuk";
-$a->strings["Post successful."] = "Bericht succesvol geplaatst.";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-$a->strings["Time Conversion"] = "Tijdsconversie";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones.";
-$a->strings["UTC time: %s"] = "UTC tijd: %s";
-$a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s";
-$a->strings["Converted localtime: %s"] = "Omgerekende lokale tijd: %s";
-$a->strings["Please select your timezone:"] = "Selecteer je tijdzone:";
+$a->strings["Community"] = "Gemeenschap";
 $a->strings["Save to Folder:"] = "Bewaren in map:";
 $a->strings["- select -"] = "- Kies -";
+$a->strings["Save"] = "Bewaren";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "";
+$a->strings["Or - did you try to upload an empty file?"] = "";
+$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d";
+$a->strings["File upload failed."] = "Uploaden van bestand mislukt.";
 $a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie.";
 $a->strings["Profile Visibility Editor"] = "";
+$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen.";
 $a->strings["Visible To"] = "Zichtbaar voor";
 $a->strings["All Contacts (with secure profile access)"] = "Alle contacten (met veilige profieltoegang)";
+$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?";
+$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen.";
+$a->strings["Connect"] = "Verbinden";
+$a->strings["Ignore/Hide"] = "Negeren/Verbergen";
+$a->strings["Access denied."] = "Toegang geweigerd";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom";
+$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen.";
+$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:";
+$a->strings["No potential page delegates located."] = "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden.";
+$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd.";
+$a->strings["Existing Page Managers"] = "Bestaande paginabeheerders";
+$a->strings["Existing Page Delegates"] = "Bestaande personen waaraan het paginabeheer is uitbesteed";
+$a->strings["Potential Delegates"] = "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed ";
+$a->strings["Add"] = "Toevoegen";
+$a->strings["No entries."] = "Geen gegevens.";
 $a->strings["No contacts."] = "Geen contacten.";
 $a->strings["View Contacts"] = "Bekijk contacten";
-$a->strings["People Search"] = "Mensen Zoeken";
-$a->strings["No matches"] = "Geen resultaten";
-$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden";
-$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar";
-$a->strings["Album not found."] = "Album niet gevonden";
-$a->strings["Delete Album"] = "Verwijder album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?";
-$a->strings["Delete Photo"] = "Verwijder foto";
-$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s";
-$a->strings["a photo"] = "een foto";
-$a->strings["Image exceeds size limit of "] = "Afbeelding is groter dan de maximale afmeting van";
-$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg.";
-$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken";
-$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt.";
-$a->strings["No photos selected"] = "Geen foto's geselecteerd";
-$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt.";
-$a->strings["Upload Photos"] = "Upload foto's";
-$a->strings["New album name: "] = "Nieuwe albumnaam: ";
-$a->strings["or existing album name: "] = "of bestaande albumnaam: ";
-$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload";
-$a->strings["Permissions"] = "Rechten";
-$a->strings["Private Photo"] = "Privé foto";
-$a->strings["Public Photo"] = "Publieke foto";
-$a->strings["Edit Album"] = "Album wijzigen";
-$a->strings["Show Newest First"] = "Toon niewste eerst";
-$a->strings["Show Oldest First"] = "Toon oudste eerst";
-$a->strings["View Photo"] = "Bekijk foto";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt.";
-$a->strings["Photo not available"] = "Foto is niet beschikbaar";
-$a->strings["View photo"] = "Bekijk foto";
-$a->strings["Edit photo"] = "Bewerk foto";
-$a->strings["Use as profile photo"] = "Gebruik als profielfoto";
-$a->strings["View Full Size"] = "Bekijk in volledig formaat";
-$a->strings["Tags: "] = "Labels: ";
-$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]";
-$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)";
-$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)";
-$a->strings["New album name"] = "Nieuwe albumnaam";
-$a->strings["Caption"] = "Onderschrift";
-$a->strings["Add a Tag"] = "Een label toevoegen";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping ";
-$a->strings["Private photo"] = "Privé foto";
-$a->strings["Public photo"] = "Publieke foto";
-$a->strings["Share"] = "Delen";
-$a->strings["View Album"] = "Album bekijken";
-$a->strings["Recent Photos"] = "Recente foto's";
-$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d";
-$a->strings["File upload failed."] = "Uploaden van bestand mislukt.";
-$a->strings["No videos selected"] = "Geen video's geselecteerd";
-$a->strings["View Video"] = "Bekijk Video";
-$a->strings["Recent Videos"] = "Recente video's";
-$a->strings["Upload New Videos"] = "Nieuwe video's uploaden";
+$a->strings["Personal Notes"] = "Persoonlijke Nota's";
 $a->strings["Poke/Prod"] = "Aanstoten/porren";
 $a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen";
 $a->strings["Recipient"] = "Ontvanger";
 $a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen";
 $a->strings["Make this post private"] = "Dit bericht privé maken";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s";
-$a->strings["Export account"] = "Account exporteren";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server.";
-$a->strings["Export all"] = "Alles exporteren";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)";
-$a->strings["Common Friends"] = "Gedeelde Vrienden";
-$a->strings["No contacts in common."] = "Geen gedeelde contacten.";
-$a->strings["Image exceeds size limit of %d"] = "Afbeelding is groter dan de toegestane %d";
-$a->strings["Wall Photos"] = "";
+$a->strings["Global Directory"] = "Globale gids";
+$a->strings["Find on this site"] = "Op deze website zoeken";
+$a->strings["Site Directory"] = "Websitegids";
+$a->strings["Gender: "] = "Geslacht:";
+$a->strings["Gender:"] = "Geslacht:";
+$a->strings["Status:"] = "Tijdlijn:";
+$a->strings["Homepage:"] = "Jouw tijdlijn:";
+$a->strings["About:"] = "Over:";
+$a->strings["No entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn).";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Time Conversion"] = "Tijdsconversie";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones.";
+$a->strings["UTC time: %s"] = "UTC tijd: %s";
+$a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s";
+$a->strings["Converted localtime: %s"] = "Omgerekende lokale tijd: %s";
+$a->strings["Please select your timezone:"] = "Selecteer je tijdzone:";
+$a->strings["Post successful."] = "Bericht succesvol geplaatst.";
 $a->strings["Image uploaded but image cropping failed."] = "Afbeelding opgeladen, maar bijsnijden mislukt.";
 $a->strings["Image size reduction [%s] failed."] = "Verkleining van de afbeelding [%s] mislukt.";
 $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen.";
@@ -1153,51 +1071,89 @@ $a->strings["Crop Image"] = "Afbeelding bijsnijden";
 $a->strings["Please adjust the image cropping for optimum viewing."] = "Pas het afsnijden van de afbeelding aan voor het beste resultaat.";
 $a->strings["Done Editing"] = "Wijzigingen compleet";
 $a->strings["Image uploaded successfully."] = "Uploaden van afbeelding gelukt.";
-$a->strings["Applications"] = "Toepassingen";
-$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd";
-$a->strings["Nothing new here"] = "Niets nieuw hier";
-$a->strings["Clear notifications"] = "Notificaties verwijderen";
+$a->strings["Friendica Communications Server - Setup"] = "";
+$a->strings["Could not connect to database."] = "Kon geen toegang krijgen tot de database.";
+$a->strings["Could not create table."] = "Kon tabel niet aanmaken.";
+$a->strings["Your Friendica site database has been installed."] = "De database van je Friendica-website is geïnstalleerd.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Zie het bestand \"INSTALL.txt\".";
+$a->strings["System check"] = "Systeemcontrole";
+$a->strings["Check again"] = "Controleer opnieuw";
+$a->strings["Database connection"] = "Verbinding met database";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. ";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat.";
+$a->strings["Database Server Name"] = "Servernaam database";
+$a->strings["Database Login Name"] = "Gebruikersnaam database";
+$a->strings["Database Login Password"] = "Wachtwoord database";
+$a->strings["Database Name"] = "Naam database";
+$a->strings["Site administrator email address"] = "E-mailadres van de websitebeheerder";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken.";
+$a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor uw website";
+$a->strings["Site settings"] = "Website-instellingen";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kan geen command-line-versie van PHP vinden in het PATH van de webserver.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie  <a href='http://friendica.com/node/27'>'Activeren van geplande taken'</a>";
+$a->strings["PHP executable path"] = "PATH van het PHP commando";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten.";
+$a->strings["Command line PHP"] = "PHP-opdrachtregel";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
+$a->strings["Found PHP version: "] = "Gevonden PHP versie:";
+$a->strings["PHP cli binary"] = "";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd.";
+$a->strings["This is required for message delivery to work."] = "Dit is nodig om het verzenden van berichten mogelijk te maken.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait.";
+$a->strings["Generate encryption keys"] = "";
+$a->strings["libCurl PHP module"] = "libCurl PHP module";
+$a->strings["GD graphics PHP module"] = "GD graphics PHP module";
+$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module";
+$a->strings["mysqli PHP module"] = "mysqli PHP module";
+$a->strings["mb_string PHP module"] = "mb_string PHP module";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php is schrijfbaar";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map.";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 is schrijfbaar";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
+$a->strings["Url rewrite is working"] = "";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver.";
+$a->strings["Errors encountered creating database tables."] = "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld.";
+$a->strings["<h1>What next</h1>"] = "<h1>Wat nu</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller.";
+$a->strings["Group created."] = "Groep aangemaakt.";
+$a->strings["Could not create group."] = "Kon de groep niet aanmaken.";
+$a->strings["Group not found."] = "Groep niet gevonden.";
+$a->strings["Group name changed."] = "Groepsnaam gewijzigd.";
+$a->strings["Save Group"] = "";
+$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan.";
+$a->strings["Group Name: "] = "Groepsnaam:";
+$a->strings["Group removed."] = "Groep verwijderd.";
+$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen.";
+$a->strings["Group Editor"] = "Groepsbewerker";
+$a->strings["Members"] = "Leden";
+$a->strings["No such group"] = "Zo'n groep bestaat niet";
+$a->strings["Group is empty"] = "De groep is leeg";
+$a->strings["Group: "] = "Groep:";
+$a->strings["View in context"] = "In context bekijken";
+$a->strings["Account approved."] = "Account goedgekeurd.";
+$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s";
+$a->strings["Please login."] = "Inloggen.";
 $a->strings["Profile Match"] = "Profielmatch";
 $a->strings["No keywords to match. Please add keywords to your default profile."] = "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel.";
 $a->strings["is interested in:"] = "Is geïnteresseerd in:";
-$a->strings["Tag removed"] = "Label verwijderd";
-$a->strings["Remove Item Tag"] = "Verwijder label van item";
-$a->strings["Select a tag to remove: "] = "Selecteer een label om te verwijderen: ";
-$a->strings["Remove"] = "Verwijderen";
-$a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist.";
-$a->strings["l, F j"] = "l j F";
-$a->strings["Edit event"] = "Gebeurtenis bewerken";
-$a->strings["link to source"] = "Verwijzing naar bron";
-$a->strings["Create New Event"] = "Maak een nieuwe gebeurtenis";
-$a->strings["Previous"] = "Vorige";
-$a->strings["hour:minute"] = "uur:minuut";
-$a->strings["Event details"] = "Gebeurtenis details";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "Formaat is %s %s. Begindatum en titel zijn vereist.";
-$a->strings["Event Starts:"] = "Gebeurtenis begint:";
-$a->strings["Required"] = "Vereist";
-$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/tijd is niet gekend of niet relevant";
-$a->strings["Event Finishes:"] = "Gebeurtenis eindigt:";
-$a->strings["Adjust for viewer timezone"] = "Pas aan aan de tijdzone van de gebruiker";
-$a->strings["Description:"] = "Beschrijving:";
-$a->strings["Title:"] = "Titel:";
-$a->strings["Share this event"] = "Deel deze gebeurtenis";
-$a->strings["No potential page delegates located."] = "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden.";
-$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd.";
-$a->strings["Existing Page Managers"] = "Bestaande paginabeheerders";
-$a->strings["Existing Page Delegates"] = "Bestaande personen waaraan het paginabeheer is uitbesteed";
-$a->strings["Potential Delegates"] = "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed ";
-$a->strings["Add"] = "Toevoegen";
-$a->strings["No entries."] = "Geen gegevens.";
-$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep";
-$a->strings["Files"] = "Bestanden";
-$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud";
-$a->strings["Remove My Account"] = "Verwijder mijn account";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is.";
-$a->strings["Please enter your password for verification:"] = "Voer je wachtwoord in voor verificatie:";
-$a->strings["Friend suggestion sent."] = "Vriendschapsvoorstel verzonden.";
-$a->strings["Suggest Friends"] = "Stel vrienden voor";
-$a->strings["Suggest a friend for %s"] = "Stel een vriend voor aan %s";
 $a->strings["Unable to locate original post."] = "Ik kan de originele post niet meer vinden.";
 $a->strings["Empty post discarded."] = "Lege post weggegooid.";
 $a->strings["System error. Post not saved."] = "Systeemfout. Post niet bewaard.";
@@ -1205,170 +1161,187 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia
 $a->strings["You may visit them online at %s"] = "Je kunt ze online bezoeken op %s";
 $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen.";
 $a->strings["%s posted an update."] = "%s heeft een wijziging geplaatst.";
-$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden";
-$a->strings["{0} sent you a message"] = "{0} stuurde jou een berichtje";
-$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren";
-$a->strings["{0} commented %s's post"] = "{0} gaf een reactie op het bericht van %s";
-$a->strings["{0} liked %s's post"] = "{0} vond het bericht van %s leuk";
-$a->strings["{0} disliked %s's post"] = "{0} vond het bericht van %s niet leuk";
-$a->strings["{0} is now friends with %s"] = "{0} is nu bevriend met %s";
-$a->strings["{0} posted"] = "{0} plaatste";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} labelde %s's bericht met #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} vermeldde je in een bericht";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website.";
-$a->strings["Login failed."] = "Login mislukt.";
-$a->strings["Invalid request identifier."] = "Ongeldige <em>request identifier</em>.";
-$a->strings["Discard"] = "Verwerpen";
-$a->strings["System"] = "Systeem";
-$a->strings["Network"] = "Netwerk";
-$a->strings["Introductions"] = "Verzoeken";
-$a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken";
-$a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken";
-$a->strings["Notification type: "] = "Notificatiesoort:";
-$a->strings["Friend Suggestion"] = "Vriendschapsvoorstel";
-$a->strings["suggested by %s"] = "Voorgesteld door %s";
-$a->strings["Post a new friend activity"] = "Bericht over een nieuwe vriend";
-$a->strings["if applicable"] = "Indien toepasbaar";
-$a->strings["Claims to be known to you: "] = "Denkt dat u hem of haar kent:";
-$a->strings["yes"] = "Ja";
-$a->strings["no"] = "Nee";
-$a->strings["Approve as: "] = "Goedkeuren als:";
-$a->strings["Friend"] = "Vriend";
-$a->strings["Sharer"] = "Deler";
-$a->strings["Fan/Admirer"] = "Fan/Bewonderaar";
-$a->strings["Friend/Connect Request"] = "Vriendschapsverzoek";
-$a->strings["New Follower"] = "Nieuwe Volger";
-$a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken.";
-$a->strings["Notifications"] = "Notificaties";
-$a->strings["%s liked %s's post"] = "%s vond het bericht van %s leuk";
-$a->strings["%s disliked %s's post"] = "%s vond het bericht van %s niet leuk";
-$a->strings["%s is now friends with %s"] = "%s is nu bevriend met %s";
-$a->strings["%s created a new post"] = "%s schreef een nieuw bericht";
-$a->strings["%s commented on %s's post"] = "%s gaf een reactie op het bericht van %s";
-$a->strings["No more network notifications."] = "Geen netwerknotificaties meer";
-$a->strings["Network Notifications"] = "Netwerknotificaties";
-$a->strings["No more personal notifications."] = "Geen persoonlijke notificaties meer";
-$a->strings["Personal Notifications"] = "Persoonlijke notificaties";
-$a->strings["No more home notifications."] = "Geen tijdlijn-notificaties meer";
-$a->strings["Home Notifications"] = "Tijdlijn-notificaties";
-$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden.";
-$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres.";
-$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website.";
-$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt.";
-$a->strings["%d message sent."] = array(
-       0 => "%d bericht verzonden.",
-       1 => "%d berichten verzonden.",
-);
-$a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen.";
-$a->strings["Send invitations"] = "Verstuur uitnodigingen";
-$a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken";
-$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen.";
-$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:";
-$a->strings["Welcome to %s"] = "Welkom op %s";
-$a->strings["Friends of %s"] = "Vrienden van %s";
-$a->strings["No friends to display."] = "Geen vrienden om te laten zien.";
-$a->strings["Add New Contact"] = "Nieuw Contact toevoegen";
-$a->strings["Enter address or web location"] = "Voeg een webadres of -locatie in:";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara";
-$a->strings["%d invitation available"] = array(
-       0 => "%d uitnodiging beschikbaar",
-       1 => "%d uitnodigingen beschikbaar",
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s is op dit moment %2\$s";
+$a->strings["Mood"] = "Stemming";
+$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden";
+$a->strings["Search Results For:"] = "Zoekresultaten voor:";
+$a->strings["add"] = "toevoegen";
+$a->strings["Commented Order"] = "Nieuwe reacties bovenaan";
+$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan";
+$a->strings["Posted Order"] = "Nieuwe berichten bovenaan";
+$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan";
+$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben";
+$a->strings["New"] = "Nieuw";
+$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum";
+$a->strings["Shared Links"] = "Gedeelde links";
+$a->strings["Interesting Links"] = "Interessante links";
+$a->strings["Starred"] = "Met ster";
+$a->strings["Favourite Posts"] = "Favoriete berichten";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk.",
+       1 => "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk.",
 );
-$a->strings["Find People"] = "Zoek mensen";
-$a->strings["Enter name or interest"] = "Vul naam of interesse in";
-$a->strings["Connect/Follow"] = "Verbind/Volg";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen";
-$a->strings["Random Profile"] = "Willekeurig Profiel";
-$a->strings["Networks"] = "Netwerken";
-$a->strings["All Networks"] = "Alle netwerken";
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Privéberichten naar deze groep kunnen openbaar gemaakt worden.";
+$a->strings["Contact: "] = "Contact: ";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden.";
+$a->strings["Invalid contact."] = "Ongeldig contact.";
+$a->strings["Contact settings applied."] = "Contactinstellingen toegepast.";
+$a->strings["Contact update failed."] = "Aanpassen van contact mislukt.";
+$a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Gebruik <strong>nu</strong> de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen.";
+$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker";
+$a->strings["Account Nickname"] = "Bijnaam account";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam";
+$a->strings["Account URL"] = "URL account";
+$a->strings["Friend Request URL"] = "URL vriendschapsverzoek";
+$a->strings["Friend Confirm URL"] = "";
+$a->strings["Notification Endpoint URL"] = "";
+$a->strings["Poll/Feed URL"] = "URL poll/feed";
+$a->strings["New photo from this URL"] = "Nieuwe foto van deze URL";
+$a->strings["Remote Self"] = "";
+$a->strings["Mirror postings from this contact"] = "";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
+$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties";
+$a->strings["Your profile page"] = "Jouw profiel pagina";
+$a->strings["Your contacts"] = "Jouw contacten";
+$a->strings["Your photos"] = "Jouw foto's";
+$a->strings["Your events"] = "Jouw gebeurtenissen";
+$a->strings["Personal notes"] = "Persoonlijke nota's";
+$a->strings["Your personal photos"] = "Jouw persoonlijke foto's";
+$a->strings["Community Pages"] = "Gemeenschapspagina's";
+$a->strings["Community Profiles"] = "Gemeenschapsprofielen";
+$a->strings["Last users"] = "Laatste gebruikers";
+$a->strings["Last likes"] = "Recent leuk gevonden";
+$a->strings["event"] = "gebeurtenis";
+$a->strings["Last photos"] = "Laatste foto's";
+$a->strings["Find Friends"] = "Zoek vrienden";
+$a->strings["Local Directory"] = "Lokale gids";
+$a->strings["Similar Interests"] = "Dezelfde interesses";
+$a->strings["Invite Friends"] = "Vrienden uitnodigen";
+$a->strings["Earth Layers"] = "Earth Layers";
+$a->strings["Set zoomfactor for Earth Layers"] = "";
+$a->strings["Set longitude (X) for Earth Layers"] = "";
+$a->strings["Set latitude (Y) for Earth Layers"] = "";
+$a->strings["Help or @NewHere ?"] = "";
+$a->strings["Connect Services"] = "Diensten verbinden";
+$a->strings["don't show"] = "Niet tonen";
+$a->strings["show"] = "tonen";
+$a->strings["Show/hide boxes at right-hand column:"] = "";
+$a->strings["Theme settings"] = "Thema-instellingen";
+$a->strings["Set font-size for posts and comments"] = "Stel lettergrootte voor berichten en reacties in";
+$a->strings["Set line-height for posts and comments"] = "Stel lijnhoogte voor berichten en reacties in";
+$a->strings["Set resolution for middle column"] = "Stel resolutie in voor de middelste kolom. ";
+$a->strings["Set color scheme"] = "Stel kleurenschema in";
+$a->strings["Set zoomfactor for Earth Layer"] = "";
+$a->strings["Set style"] = "";
+$a->strings["Set colour scheme"] = "Stel kleurschema in";
+$a->strings["Alignment"] = "Uitlijning";
+$a->strings["Left"] = "Links";
+$a->strings["Center"] = "Gecentreerd";
+$a->strings["Color scheme"] = "Kleurschema";
+$a->strings["Posts font size"] = "Lettergrootte berichten";
+$a->strings["Textareas font size"] = "Lettergrootte tekstgebieden";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "";
+$a->strings["Set theme width"] = "Stel breedte van het thema in";
+$a->strings["Delete this item?"] = "Dit item verwijderen?";
+$a->strings["show fewer"] = "Minder tonen";
+$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden.";
+$a->strings["Update Error at %s"] = "Wijzigingsfout op %s";
+$a->strings["Create a New Account"] = "Nieuw account aanmaken";
+$a->strings["Logout"] = "Uitloggen";
+$a->strings["Login"] = "Login";
+$a->strings["Nickname or Email address: "] = "Bijnaam of e-mailadres:";
+$a->strings["Password: "] = "Wachtwoord:";
+$a->strings["Remember me"] = "Onthou me";
+$a->strings["Or login using OpenID: "] = "Of log in met OpenID:";
+$a->strings["Forgot your password?"] = "Wachtwoord vergeten?";
+$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website";
+$a->strings["terms of service"] = "servicevoorwaarden";
+$a->strings["Website Privacy Policy"] = "Privacybeleid website";
+$a->strings["privacy policy"] = "privacybeleid";
+$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar.";
+$a->strings["Edit profile"] = "Bewerk profiel";
+$a->strings["Message"] = "Bericht";
+$a->strings["Profiles"] = "Profielen";
+$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen";
+$a->strings["g A l F d"] = "G l j F";
+$a->strings["F d"] = "d F";
+$a->strings["[today]"] = "[vandaag]";
+$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen";
+$a->strings["Birthdays this week:"] = "Verjaardagen deze week:";
+$a->strings["[No description]"] = "[Geen beschrijving]";
+$a->strings["Event Reminders"] = "Gebeurtenisherinneringen";
+$a->strings["Events this week:"] = "Gebeurtenissen deze week:";
+$a->strings["Status"] = "Tijdlijn";
+$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn";
+$a->strings["Profile Details"] = "Profieldetails";
+$a->strings["Videos"] = "Video's";
+$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender";
+$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien";
+$a->strings["General Features"] = "Algemene functies";
+$a->strings["Multiple Profiles"] = "Meerdere profielen";
+$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken";
+$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten";
+$a->strings["Richtext Editor"] = "RTF-tekstverwerker";
+$a->strings["Enable richtext editor"] = "Gebruik een tekstverwerker met eenvoudige opmaakfuncties";
+$a->strings["Post Preview"] = "Voorvertoning bericht";
+$a->strings["Allow previewing posts and comments before publishing them"] = "";
+$a->strings["Auto-mention Forums"] = "";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "";
+$a->strings["Network Sidebar Widgets"] = "Zijbalkwidgets op netwerkpagina";
+$a->strings["Search by Date"] = "Zoeken op datum";
+$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten te selecteren volgens datumbereik";
+$a->strings["Group Filter"] = "Groepsfilter";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen";
+$a->strings["Network Filter"] = "Netwerkfilter";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken";
+$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik";
+$a->strings["Network Tabs"] = "Netwerktabs";
+$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had";
+$a->strings["Network New Tab"] = "Nieuwe netwerktab";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)";
+$a->strings["Network Shared Links Tab"] = "";
+$a->strings["Enable tab to display only Network posts with links in them"] = "";
+$a->strings["Post/Comment Tools"] = "Bericht-/reactiehulpmiddelen";
+$a->strings["Multiple Deletion"] = "Meervoudige verwijdering";
+$a->strings["Select and delete multiple posts/comments at once"] = "Selecteer en verwijder meerdere berichten/reacties in een keer";
+$a->strings["Edit Sent Posts"] = "Bewerk verzonden berichten";
+$a->strings["Edit and correct posts and comments after sending"] = "Bewerk en corrigeer berichten en reacties na verzending";
+$a->strings["Tagging"] = "Labelen";
+$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te labelen";
+$a->strings["Post Categories"] = "Categorieën berichten";
+$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten";
 $a->strings["Saved Folders"] = "Bewaarde Mappen";
-$a->strings["Everything"] = "Alles";
-$a->strings["Categories"] = "Categorieën";
-$a->strings["Click here to upgrade."] = "";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "";
-$a->strings["This action is not available under your subscription plan."] = "";
-$a->strings["User not found."] = "";
-$a->strings["There is no status with this id."] = "Er is geen status met dit kenmerk";
-$a->strings["view full size"] = "Volledig formaat";
-$a->strings["Starts:"] = "Begint:";
-$a->strings["Finishes:"] = "Eindigt:";
-$a->strings["(no subject)"] = "(geen onderwerp)";
-$a->strings["noreply"] = "geen reactie";
-$a->strings["An invitation is required."] = "Een uitnodiging is vereist.";
-$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden.";
-$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url";
+$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen te bewaren";
+$a->strings["Dislike Posts"] = "Vind berichten niet leuk";
+$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten of reacties niet leuk te vinden";
+$a->strings["Star Posts"] = "Geef berichten een ster";
+$a->strings["Ability to mark special posts with a star indicator"] = "";
+$a->strings["Logged out."] = "Uitgelogd.";
 $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
 $a->strings["The error message was:"] = "De foutboodschap was:";
-$a->strings["Please enter the required information."] = "Vul a.u.b. de vereiste informatie in.";
-$a->strings["Please use a shorter name."] = "gebruik een kortere naam";
-$a->strings["Name too short."] = "Naam te kort";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn.";
-$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan.";
-$a->strings["Not a valid email address."] = "Geen geldig e-mailadres.";
-$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen.";
-$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt.";
-$a->strings["An error occurred during registration. Please try again."] = "";
-$a->strings["An error occurred creating your default profile. Please try again."] = "";
-$a->strings["Friends"] = "Vrienden";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan";
-$a->strings["poked"] = "aangestoten";
-$a->strings["post/item"] = "bericht/item";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet";
-$a->strings["remove"] = "verwijder";
-$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen";
-$a->strings["Follow Thread"] = "Conversatie volgen";
-$a->strings["View Status"] = "Bekijk status";
-$a->strings["View Profile"] = "Bekijk profiel";
-$a->strings["View Photos"] = "Bekijk foto's";
-$a->strings["Network Posts"] = "Netwerkberichten";
-$a->strings["Edit Contact"] = "Bewerk contact";
-$a->strings["Send PM"] = "Stuur een privébericht";
-$a->strings["Poke"] = "Aanstoten";
-$a->strings["%s likes this."] = "%s vind dit leuk.";
-$a->strings["%s doesn't like this."] = "%s vind dit niet leuk.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d mensen</span> vinden dit leuk";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d people</span> vinden dit niet leuk";
-$a->strings["and"] = "en";
-$a->strings[", and %d other people"] = ", en %d andere mensen";
-$a->strings["%s like this."] = "%s vind dit leuk.";
-$a->strings["%s don't like this."] = "%s vind dit niet leuk.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Zichtbaar voor <strong>iedereen</strong>";
-$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:";
-$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:";
-$a->strings["Tag term:"] = "Label:";
-$a->strings["Where are you right now?"] = "Waar ben je nu?";
-$a->strings["Delete item(s)?"] = "Item(s) verwijderen?";
-$a->strings["Post to Email"] = "Verzenden per e-mail";
-$a->strings["permissions"] = "rechten";
-$a->strings["Post to Groups"] = "Verzenden naar Groepen";
-$a->strings["Post to Contacts"] = "Verzenden naar Contacten";
-$a->strings["Private post"] = "Privé verzending";
-$a->strings["Logged out."] = "Uitgelogd.";
-$a->strings["Error decoding account file"] = "";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
-$a->strings["Error! Cannot check nickname"] = "";
-$a->strings["User '%s' already exists on this server!"] = "Gebruiker '%s' bestaat al op deze server!";
-$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker";
-$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d contact werd niet geïmporteerd",
-       1 => "%d contacten werden niet geïmporteerd",
-);
-$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord";
+$a->strings["Starts:"] = "Begint:";
+$a->strings["Finishes:"] = "Eindigt:";
+$a->strings["j F, Y"] = "F j Y";
+$a->strings["j F"] = "F j";
+$a->strings["Birthday:"] = "Verjaardag:";
+$a->strings["Age:"] = "Leeftijd:";
+$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s";
+$a->strings["Tags:"] = "Labels:";
+$a->strings["Religion:"] = "Religie:";
+$a->strings["Hobbies/Interests:"] = "Hobby:";
+$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:";
+$a->strings["Musical interests:"] = "Muzikale interesse ";
+$a->strings["Books, literature:"] = "Boeken, literatuur:";
+$a->strings["Television:"] = "Televisie";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:";
+$a->strings["Love/Romance:"] = "Liefde/romance:";
+$a->strings["Work/employment:"] = "Werk/beroep:";
+$a->strings["School/education:"] = "School/opleiding:";
+$a->strings["[no subject]"] = "[geen onderwerp]";
+$a->strings[" on Last.fm"] = " op Last.fm";
 $a->strings["newer"] = "nieuwere berichten";
 $a->strings["older"] = "oudere berichten";
 $a->strings["prev"] = "vorige";
@@ -1381,6 +1354,7 @@ $a->strings["%d Contact"] = array(
        1 => "%d contacten",
 );
 $a->strings["poke"] = "aanstoten";
+$a->strings["poked"] = "aangestoten";
 $a->strings["ping"] = "ping";
 $a->strings["pinged"] = "gepingd";
 $a->strings["prod"] = "porren";
@@ -1432,200 +1406,37 @@ $a->strings["November"] = "November";
 $a->strings["December"] = "December";
 $a->strings["bytes"] = "bytes";
 $a->strings["Click to open/close"] = "klik om te openen/sluiten";
+$a->strings["default"] = "standaard";
 $a->strings["Select an alternate language"] = "Kies een andere taal";
 $a->strings["activity"] = "activiteit";
 $a->strings["post"] = "bericht";
-$a->strings["Item filed"] = "Item bewaard";
-$a->strings["Friendica Notification"] = "Friendica Notificatie";
-$a->strings["Thank You,"] = "Bedankt";
-$a->strings["%s Administrator"] = "%s Beheerder";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificatie] Nieuw bericht ontvangen op %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s stuurde jou %2\$s.";
-$a->strings["a private message"] = "een prive bericht";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]a %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]%3\$s's %4\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]jouw %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s gaf een reactie op een bericht/conversatie die jij volgt.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of te beantwoorden.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notificatie] %s heeft jou genoemd";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s heeft jou in %2\$s genoemd";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]heeft jou genoemd[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s heeft jou aangestoten";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s heeft jou aangestoten op %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificatie] %s heeft jouw bericht gelabeld";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s heeft jouw bericht gelabeld in %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s labelde [url=%2\$s]jouw bericht[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1\$s' om %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Je ontving [url=%1\$s]een vriendschaps- of connectieverzoek[/url] van %2\$s.";
-$a->strings["You may visit their profile at %s"] = "U kunt hun profiel bezoeken op %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Bezoek %s om het verzoek goed of af te keuren.";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
-$a->strings["Name:"] = "Naam:";
-$a->strings["Photo:"] = "Foto: ";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "";
-$a->strings[" on Last.fm"] = " op Last.fm";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. ";
-$a->strings["Default privacy group for new contacts"] = "";
-$a->strings["Everybody"] = "Iedereen";
-$a->strings["edit"] = "verander";
-$a->strings["Edit group"] = "Verander groep";
-$a->strings["Create a new group"] = "Maak nieuwe groep";
-$a->strings["Contacts not in any group"] = "";
-$a->strings["Connect URL missing."] = "";
-$a->strings["This site is not configured to allow communications with other networks."] = "Deze website is niet geconfigureerd voor communicatie met andere netwerken.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Er werden geen compatibele communicatieprotocols of feeds ontdekt.";
-$a->strings["The profile address specified does not provide adequate information."] = "";
-$a->strings["An author or name was not found."] = "";
-$a->strings["No browser URL could be matched to this address."] = "";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact.";
-$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "";
-$a->strings["Unable to retrieve contact information."] = "";
-$a->strings["following"] = "volgend";
-$a->strings["[no subject]"] = "[geen onderwerp]";
-$a->strings["End this session"] = "Deze sessie beëindigen";
-$a->strings["Sign in"] = "Inloggen";
-$a->strings["Home Page"] = "Jouw tijdlijn";
-$a->strings["Create an account"] = "Maak een accoount";
-$a->strings["Help and documentation"] = "Hulp en documentatie";
-$a->strings["Apps"] = "Apps";
-$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes";
-$a->strings["Search site content"] = "Doorzoek de inhoud van de website";
-$a->strings["Conversations on this site"] = "Conversaties op deze website";
-$a->strings["Directory"] = "Gids";
-$a->strings["People directory"] = "Personengids";
-$a->strings["Conversations from your friends"] = "Conversaties van je vrienden";
-$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen";
-$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters";
-$a->strings["Friend Requests"] = "Vriendschapsverzoeken";
-$a->strings["See all notifications"] = "Toon alle notificaties";
-$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren";
-$a->strings["Private mail"] = "Privéberichten";
-$a->strings["Inbox"] = "Inbox";
-$a->strings["Outbox"] = "Verzonden berichten";
-$a->strings["Manage"] = "Beheren";
-$a->strings["Manage other pages"] = "Andere pagina's beheren";
-$a->strings["Delegations"] = "";
-$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen";
-$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten";
-$a->strings["Site setup and configuration"] = "Website opzetten en configureren";
-$a->strings["Navigation"] = "Navigatie";
-$a->strings["Site map"] = "Sitemap";
-$a->strings["j F, Y"] = "F j Y";
-$a->strings["j F"] = "F j";
-$a->strings["Birthday:"] = "Verjaardag:";
-$a->strings["Age:"] = "Leeftijd:";
-$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s";
-$a->strings["Tags:"] = "Labels:";
-$a->strings["Religion:"] = "Religie:";
-$a->strings["Hobbies/Interests:"] = "Hobby:";
-$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:";
-$a->strings["Musical interests:"] = "Muzikale interesse ";
-$a->strings["Books, literature:"] = "Boeken, literatuur:";
-$a->strings["Television:"] = "Televisie";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:";
-$a->strings["Love/Romance:"] = "Liefde/romance:";
-$a->strings["Work/employment:"] = "Werk/beroep:";
-$a->strings["School/education:"] = "School/opleiding:";
-$a->strings["Image/photo"] = "Afbeelding/foto";
-$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> schreef het volgende <a href=\"%s\" target=\"external-link\">bericht</a>";
-$a->strings["$1 wrote:"] = "$1 schreef:";
-$a->strings["Encrypted content"] = "Versleutelde inhoud";
-$a->strings["Unknown | Not categorised"] = "Onbekend | Niet ";
-$a->strings["Block immediately"] = "Onmiddellijk blokkeren";
-$a->strings["Shady, spammer, self-marketer"] = "";
-$a->strings["Known to me, but no opinion"] = "Bekend, maar geen mening";
-$a->strings["OK, probably harmless"] = "OK, waarschijnlijk onschadelijk";
-$a->strings["Reputable, has my trust"] = "Gerenommeerd, heeft mijn vertrouwen";
-$a->strings["Weekly"] = "wekelijks";
-$a->strings["Monthly"] = "maandelijks";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "Linkedln";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "Myspace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "";
-$a->strings["Twitter"] = "";
-$a->strings["Miscellaneous"] = "Diversen";
-$a->strings["year"] = "jaar";
-$a->strings["month"] = "maand";
-$a->strings["day"] = "dag";
-$a->strings["never"] = "nooit";
-$a->strings["less than a second ago"] = "minder dan een seconde geleden";
-$a->strings["years"] = "jaren";
-$a->strings["months"] = "maanden";
-$a->strings["week"] = "week";
-$a->strings["weeks"] = "weken";
-$a->strings["days"] = "dagen";
-$a->strings["hour"] = "uur";
-$a->strings["hours"] = "uren";
-$a->strings["minute"] = "minuut";
-$a->strings["minutes"] = "minuten";
-$a->strings["second"] = "seconde";
-$a->strings["seconds"] = "secondes";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden";
+$a->strings["Item filed"] = "Item bewaard";
+$a->strings["User not found."] = "";
+$a->strings["There is no status with this id."] = "Er is geen status met dit kenmerk";
+$a->strings["There is no conversation with this id."] = "";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "";
 $a->strings["%s's birthday"] = "%s's verjaardag";
 $a->strings["Happy Birthday %s"] = "Gefeliciteerd %s";
-$a->strings["General Features"] = "Algemene functies";
-$a->strings["Multiple Profiles"] = "Meerdere profielen";
-$a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken";
-$a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten";
-$a->strings["Richtext Editor"] = "RTF-tekstverwerker";
-$a->strings["Enable richtext editor"] = "Gebruik een tekstverwerker met eenvoudige opmaakfuncties";
-$a->strings["Post Preview"] = "Voorvertoning bericht";
-$a->strings["Allow previewing posts and comments before publishing them"] = "";
-$a->strings["Network Sidebar Widgets"] = "Zijbalkwidgets op netwerkpagina";
-$a->strings["Search by Date"] = "Zoeken op datum";
-$a->strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten te selecteren volgens datumbereik";
-$a->strings["Group Filter"] = "Groepsfilter";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen";
-$a->strings["Network Filter"] = "Netwerkfilter";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken";
-$a->strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik";
-$a->strings["Network Tabs"] = "Netwerktabs";
-$a->strings["Network Personal Tab"] = "Persoonlijke netwerktab";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had";
-$a->strings["Network New Tab"] = "Nieuwe netwerktab";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)";
-$a->strings["Network Shared Links Tab"] = "";
-$a->strings["Enable tab to display only Network posts with links in them"] = "";
-$a->strings["Post/Comment Tools"] = "Bericht-/reactiehulpmiddelen";
-$a->strings["Multiple Deletion"] = "Meervoudige verwijdering";
-$a->strings["Select and delete multiple posts/comments at once"] = "Selecteer en verwijder meerdere berichten/reacties in een keer";
-$a->strings["Edit Sent Posts"] = "Bewerk verzonden berichten";
-$a->strings["Edit and correct posts and comments after sending"] = "Bewerk en corrigeer berichten en reacties na verzending";
-$a->strings["Tagging"] = "Labelen";
-$a->strings["Ability to tag existing posts"] = "Mogelijkheid om bestaande berichten te labelen";
-$a->strings["Post Categories"] = "Categorieën berichten";
-$a->strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten";
-$a->strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen te bewaren";
-$a->strings["Dislike Posts"] = "Vind berichten niet leuk";
-$a->strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten of reacties niet leuk te vinden";
-$a->strings["Star Posts"] = "Geef berichten een ster";
-$a->strings["Ability to mark special posts with a star indicator"] = "";
-$a->strings["Sharing notification from Diaspora network"] = "";
-$a->strings["Attachments:"] = "Bijlagen:";
-$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen";
 $a->strings["A new person is sharing with you at "] = "";
 $a->strings["You have a new follower at "] = "Je hebt een nieuwe volger op ";
 $a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?";
 $a->strings["Archives"] = "Archieven";
-$a->strings["Embedded content"] = "Ingebedde inhoud";
-$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld";
+$a->strings["(no subject)"] = "(geen onderwerp)";
+$a->strings["noreply"] = "geen reactie";
+$a->strings["Sharing notification from Diaspora network"] = "";
+$a->strings["Attachments:"] = "Bijlagen:";
+$a->strings["Connect URL missing."] = "";
+$a->strings["This site is not configured to allow communications with other networks."] = "Deze website is niet geconfigureerd voor communicatie met andere netwerken.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Er werden geen compatibele communicatieprotocols of feeds ontdekt.";
+$a->strings["The profile address specified does not provide adequate information."] = "";
+$a->strings["An author or name was not found."] = "";
+$a->strings["No browser URL could be matched to this address."] = "";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact.";
+$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "";
+$a->strings["Unable to retrieve contact information."] = "";
+$a->strings["following"] = "volgend";
 $a->strings["Welcome "] = "Welkom";
 $a->strings["Please upload a profile photo."] = "Upload een profielfoto.";
 $a->strings["Welcome back "] = "Welkom terug ";
@@ -1666,6 +1477,7 @@ $a->strings["Infatuated"] = "";
 $a->strings["Dating"] = "Aan het daten";
 $a->strings["Unfaithful"] = "Ontrouw";
 $a->strings["Sex Addict"] = "Seksverslaafd";
+$a->strings["Friends"] = "Vrienden";
 $a->strings["Friends/Benefits"] = "Vriendschap plus";
 $a->strings["Casual"] = "";
 $a->strings["Engaged"] = "Verloofd";
@@ -1687,6 +1499,208 @@ $a->strings["Uncertain"] = "Onzeker";
 $a->strings["It's complicated"] = "Het is gecompliceerd";
 $a->strings["Don't care"] = "Kan me niet schelen";
 $a->strings["Ask me"] = "Vraag me";
+$a->strings["Error decoding account file"] = "";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
+$a->strings["Error! Cannot check nickname"] = "";
+$a->strings["User '%s' already exists on this server!"] = "Gebruiker '%s' bestaat al op deze server!";
+$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker";
+$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d contact werd niet geïmporteerd",
+       1 => "%d contacten werden niet geïmporteerd",
+);
+$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord";
+$a->strings["Click here to upgrade."] = "";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "";
+$a->strings["This action is not available under your subscription plan."] = "";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan";
+$a->strings["post/item"] = "bericht/item";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet";
+$a->strings["remove"] = "verwijder";
+$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen";
+$a->strings["Follow Thread"] = "Conversatie volgen";
+$a->strings["View Status"] = "Bekijk status";
+$a->strings["View Profile"] = "Bekijk profiel";
+$a->strings["View Photos"] = "Bekijk foto's";
+$a->strings["Network Posts"] = "Netwerkberichten";
+$a->strings["Edit Contact"] = "Bewerk contact";
+$a->strings["Send PM"] = "Stuur een privébericht";
+$a->strings["Poke"] = "Aanstoten";
+$a->strings["%s likes this."] = "%s vind dit leuk.";
+$a->strings["%s doesn't like this."] = "%s vind dit niet leuk.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d mensen</span> vinden dit leuk";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d people</span> vinden dit niet leuk";
+$a->strings["and"] = "en";
+$a->strings[", and %d other people"] = ", en %d andere mensen";
+$a->strings["%s like this."] = "%s vind dit leuk.";
+$a->strings["%s don't like this."] = "%s vind dit niet leuk.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Zichtbaar voor <strong>iedereen</strong>";
+$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:";
+$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:";
+$a->strings["Tag term:"] = "Label:";
+$a->strings["Where are you right now?"] = "Waar ben je nu?";
+$a->strings["Delete item(s)?"] = "Item(s) verwijderen?";
+$a->strings["Post to Email"] = "Verzenden per e-mail";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
+$a->strings["permissions"] = "rechten";
+$a->strings["Post to Groups"] = "Verzenden naar Groepen";
+$a->strings["Post to Contacts"] = "Verzenden naar Contacten";
+$a->strings["Private post"] = "Privé verzending";
+$a->strings["Add New Contact"] = "Nieuw Contact toevoegen";
+$a->strings["Enter address or web location"] = "Voeg een webadres of -locatie in:";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara";
+$a->strings["%d invitation available"] = array(
+       0 => "%d uitnodiging beschikbaar",
+       1 => "%d uitnodigingen beschikbaar",
+);
+$a->strings["Find People"] = "Zoek mensen";
+$a->strings["Enter name or interest"] = "Vul naam of interesse in";
+$a->strings["Connect/Follow"] = "Verbind/Volg";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen";
+$a->strings["Random Profile"] = "Willekeurig Profiel";
+$a->strings["Networks"] = "Netwerken";
+$a->strings["All Networks"] = "Alle netwerken";
+$a->strings["Everything"] = "Alles";
+$a->strings["Categories"] = "Categorieën";
+$a->strings["End this session"] = "Deze sessie beëindigen";
+$a->strings["Sign in"] = "Inloggen";
+$a->strings["Home Page"] = "Jouw tijdlijn";
+$a->strings["Create an account"] = "Maak een accoount";
+$a->strings["Help and documentation"] = "Hulp en documentatie";
+$a->strings["Apps"] = "Apps";
+$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes";
+$a->strings["Search site content"] = "Doorzoek de inhoud van de website";
+$a->strings["Conversations on this site"] = "Conversaties op deze website";
+$a->strings["Directory"] = "Gids";
+$a->strings["People directory"] = "Personengids";
+$a->strings["Information"] = "";
+$a->strings["Information about this friendica instance"] = "";
+$a->strings["Conversations from your friends"] = "Conversaties van je vrienden";
+$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen";
+$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters";
+$a->strings["Friend Requests"] = "Vriendschapsverzoeken";
+$a->strings["See all notifications"] = "Toon alle notificaties";
+$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren";
+$a->strings["Private mail"] = "Privéberichten";
+$a->strings["Inbox"] = "Inbox";
+$a->strings["Outbox"] = "Verzonden berichten";
+$a->strings["Manage"] = "Beheren";
+$a->strings["Manage other pages"] = "Andere pagina's beheren";
+$a->strings["Account settings"] = "Account instellingen";
+$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen";
+$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten";
+$a->strings["Site setup and configuration"] = "Website opzetten en configureren";
+$a->strings["Navigation"] = "Navigatie";
+$a->strings["Site map"] = "Sitemap";
+$a->strings["Unknown | Not categorised"] = "Onbekend | Niet ";
+$a->strings["Block immediately"] = "Onmiddellijk blokkeren";
+$a->strings["Shady, spammer, self-marketer"] = "";
+$a->strings["Known to me, but no opinion"] = "Bekend, maar geen mening";
+$a->strings["OK, probably harmless"] = "OK, waarschijnlijk onschadelijk";
+$a->strings["Reputable, has my trust"] = "Gerenommeerd, heeft mijn vertrouwen";
+$a->strings["Weekly"] = "wekelijks";
+$a->strings["Monthly"] = "maandelijks";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "Linkedln";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "Myspace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "";
+$a->strings["Twitter"] = "";
+$a->strings["Diaspora Connector"] = "";
+$a->strings["Statusnet"] = "";
+$a->strings["Friendica Notification"] = "Friendica Notificatie";
+$a->strings["Thank You,"] = "Bedankt";
+$a->strings["%s Administrator"] = "%s Beheerder";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificatie] Nieuw bericht ontvangen op %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s stuurde jou %2\$s.";
+$a->strings["a private message"] = "een prive bericht";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]a %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]%3\$s's %4\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s gaf een reactie op [url=%2\$s]jouw %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s gaf een reactie op een bericht/conversatie die jij volgt.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of te beantwoorden.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notificatie] %s heeft jou genoemd";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s heeft jou in %2\$s genoemd";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]heeft jou genoemd[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "";
+$a->strings["%1\$s shared a new post at %2\$s"] = "";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s heeft jou aangestoten";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s heeft jou aangestoten op %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificatie] %s heeft jouw bericht gelabeld";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s heeft jouw bericht gelabeld in %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s labelde [url=%2\$s]jouw bericht[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1\$s' om %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Je ontving [url=%1\$s]een vriendschaps- of connectieverzoek[/url] van %2\$s.";
+$a->strings["You may visit their profile at %s"] = "U kunt hun profiel bezoeken op %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Bezoek %s om het verzoek goed of af te keuren.";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
+$a->strings["Name:"] = "Naam:";
+$a->strings["Photo:"] = "Foto: ";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "";
+$a->strings["An invitation is required."] = "Een uitnodiging is vereist.";
+$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden.";
+$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url";
+$a->strings["Please enter the required information."] = "Vul de vereiste informatie in.";
+$a->strings["Please use a shorter name."] = "gebruik een kortere naam";
+$a->strings["Name too short."] = "Naam te kort";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn.";
+$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan.";
+$a->strings["Not a valid email address."] = "Geen geldig e-mailadres.";
+$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen.";
+$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt.";
+$a->strings["An error occurred during registration. Please try again."] = "";
+$a->strings["An error occurred creating your default profile. Please try again."] = "";
+$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen";
+$a->strings["Image/photo"] = "Afbeelding/foto";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
+$a->strings["$1 wrote:"] = "$1 schreef:";
+$a->strings["Encrypted content"] = "Versleutelde inhoud";
+$a->strings["Embedded content"] = "Ingebedde inhoud";
+$a->strings["Embedding disabled"] = "Inbedden uitgeschakeld";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten <strong>kunnen</strong> voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. ";
+$a->strings["Default privacy group for new contacts"] = "";
+$a->strings["Everybody"] = "Iedereen";
+$a->strings["edit"] = "verander";
+$a->strings["Edit group"] = "Verander groep";
+$a->strings["Create a new group"] = "Maak nieuwe groep";
+$a->strings["Contacts not in any group"] = "";
 $a->strings["stopped following"] = "";
 $a->strings["Drop Contact"] = "";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "";
+$a->strings["Miscellaneous"] = "Diversen";
+$a->strings["year"] = "jaar";
+$a->strings["month"] = "maand";
+$a->strings["day"] = "dag";
+$a->strings["never"] = "nooit";
+$a->strings["less than a second ago"] = "minder dan een seconde geleden";
+$a->strings["years"] = "jaren";
+$a->strings["months"] = "maanden";
+$a->strings["week"] = "week";
+$a->strings["weeks"] = "weken";
+$a->strings["days"] = "dagen";
+$a->strings["hour"] = "uur";
+$a->strings["hours"] = "uren";
+$a->strings["minute"] = "minuut";
+$a->strings["minutes"] = "minuten";
+$a->strings["second"] = "seconde";
+$a->strings["seconds"] = "secondes";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden";
+$a->strings["view full size"] = "Volledig formaat";
index 5d257be0b866a478a43ed691f16238ae84db7f10..3b06d0d282c6b7bb5780a59b2fa53cf8b46332ca 100644 (file)
 # Frederico Aracnus <frederico@teia.bio.br>, 2011
 # FULL NAME <EMAIL@ADDRESS>, 2011
 # Ricardo Pereira <rhalah@gmail.com>, 2012
-# Sérgio F. de Lima <oigreslima@gmail.com>, 2013
+# Sérgio F. de Lima <oigreslima@gmail.com>, 2013-2014
 # Sérgio F. de Lima <oigreslima@gmail.com>, 2012
 msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-11-17 15:44+0100\n"
-"PO-Revision-Date: 2013-11-18 20:14+0000\n"
-"Last-Translator: Frederico Aracnus <frederico@teia.bio.br>\n"
+"POT-Creation-Date: 2014-05-16 11:05+0200\n"
+"PO-Revision-Date: 2014-05-17 16:26+0000\n"
+"Last-Translator: Sérgio F. de Lima <oigreslima@gmail.com>\n"
 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/friendica/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -34,25 +34,26 @@ msgstr ""
 msgid "This entry was edited"
 msgstr "Essa entrada foi editada"
 
-#: ../../object/Item.php:113 ../../mod/content.php:619
-#: ../../mod/photos.php:1351
+#: ../../object/Item.php:113 ../../mod/photos.php:1355
+#: ../../mod/content.php:619
 msgid "Private Message"
 msgstr "Mensagem privada"
 
 #: ../../object/Item.php:117 ../../mod/editpost.php:109
-#: ../../mod/content.php:727 ../../mod/settings.php:659
+#: ../../mod/settings.php:671 ../../mod/content.php:727
 msgid "Edit"
 msgstr "Editar"
 
-#: ../../object/Item.php:126 ../../mod/content.php:437
-#: ../../mod/content.php:739 ../../include/conversation.php:611
+#: ../../object/Item.php:126 ../../mod/photos.php:1649
+#: ../../mod/content.php:437 ../../mod/content.php:739
+#: ../../include/conversation.php:612
 msgid "Select"
 msgstr "Selecionar"
 
-#: ../../object/Item.php:127 ../../mod/admin.php:902 ../../mod/content.php:438
-#: ../../mod/content.php:740 ../../mod/settings.php:660
-#: ../../mod/group.php:171 ../../mod/photos.php:1637
-#: ../../include/conversation.php:612
+#: ../../object/Item.php:127 ../../mod/admin.php:910 ../../mod/photos.php:1650
+#: ../../mod/contacts.php:703 ../../mod/settings.php:672
+#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:740
+#: ../../include/conversation.php:613
 msgid "Delete"
 msgstr "Excluir"
 
@@ -80,8 +81,8 @@ msgstr "marcado com estrela"
 msgid "add tag"
 msgstr "adicionar etiqueta"
 
-#: ../../object/Item.php:213 ../../mod/content.php:683
-#: ../../mod/photos.php:1529
+#: ../../object/Item.php:213 ../../mod/photos.php:1538
+#: ../../mod/content.php:683
 msgid "I like this (toggle)"
 msgstr "Eu gostei disso (alternar)"
 
@@ -89,8 +90,8 @@ msgstr "Eu gostei disso (alternar)"
 msgid "like"
 msgstr "gostei"
 
-#: ../../object/Item.php:214 ../../mod/content.php:684
-#: ../../mod/photos.php:1530
+#: ../../object/Item.php:214 ../../mod/photos.php:1539
+#: ../../mod/content.php:684
 msgid "I don't like this (toggle)"
 msgstr "Eu não gostei disso (alternar)"
 
@@ -106,2897 +107,2916 @@ msgstr "Compartilhar isso"
 msgid "share"
 msgstr "compartilhar"
 
-#: ../../object/Item.php:278 ../../include/conversation.php:663
+#: ../../object/Item.php:298 ../../include/conversation.php:665
 msgid "Categories:"
 msgstr "Categorias:"
 
-#: ../../object/Item.php:279 ../../include/conversation.php:664
+#: ../../object/Item.php:299 ../../include/conversation.php:666
 msgid "Filed under:"
 msgstr "Arquivado sob:"
 
-#: ../../object/Item.php:287 ../../object/Item.php:288
+#: ../../object/Item.php:307 ../../object/Item.php:308
 #: ../../mod/content.php:471 ../../mod/content.php:851
-#: ../../mod/content.php:852 ../../include/conversation.php:651
+#: ../../mod/content.php:852 ../../include/conversation.php:653
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr "Ver o perfil de %s @ %s"
 
-#: ../../object/Item.php:289 ../../mod/content.php:853
+#: ../../object/Item.php:309 ../../mod/content.php:853
 msgid "to"
 msgstr "para"
 
-#: ../../object/Item.php:290
+#: ../../object/Item.php:310
 msgid "via"
 msgstr "via"
 
-#: ../../object/Item.php:291 ../../mod/content.php:854
+#: ../../object/Item.php:311 ../../mod/content.php:854
 msgid "Wall-to-Wall"
 msgstr "Mural-para-mural"
 
-#: ../../object/Item.php:292 ../../mod/content.php:855
+#: ../../object/Item.php:312 ../../mod/content.php:855
 msgid "via Wall-To-Wall:"
 msgstr "via Mural-para-mural"
 
-#: ../../object/Item.php:301 ../../mod/content.php:481
-#: ../../mod/content.php:863 ../../include/conversation.php:671
+#: ../../object/Item.php:321 ../../mod/content.php:481
+#: ../../mod/content.php:863 ../../include/conversation.php:673
 #, php-format
 msgid "%s from %s"
 msgstr "%s de %s"
 
-#: ../../object/Item.php:319 ../../object/Item.php:633 ../../boot.php:685
-#: ../../mod/content.php:708 ../../mod/photos.php:1551
-#: ../../mod/photos.php:1595 ../../mod/photos.php:1678
+#: ../../object/Item.php:341 ../../object/Item.php:657
+#: ../../mod/photos.php:1560 ../../mod/photos.php:1604
+#: ../../mod/photos.php:1692 ../../mod/content.php:708 ../../boot.php:693
 msgid "Comment"
 msgstr "Comentar"
 
-#: ../../object/Item.php:322 ../../mod/wallmessage.php:156
-#: ../../mod/editpost.php:124 ../../mod/content.php:498
-#: ../../mod/content.php:882 ../../mod/message.php:334
-#: ../../mod/message.php:565 ../../mod/photos.php:1532
-#: ../../include/conversation.php:688 ../../include/conversation.php:1099
+#: ../../object/Item.php:344 ../../mod/message.php:334
+#: ../../mod/message.php:565 ../../mod/editpost.php:124
+#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1541
+#: ../../mod/content.php:498 ../../mod/content.php:882
+#: ../../include/conversation.php:690 ../../include/conversation.php:1107
 msgid "Please wait"
 msgstr "Por favor, espere"
 
-#: ../../object/Item.php:343 ../../mod/content.php:602
+#: ../../object/Item.php:367 ../../mod/content.php:602
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] "%d comentário"
 msgstr[1] "%d comentários"
 
-#: ../../object/Item.php:345 ../../object/Item.php:358
-#: ../../mod/content.php:604 ../../include/text.php:1919
+#: ../../object/Item.php:369 ../../object/Item.php:382
+#: ../../mod/content.php:604 ../../include/text.php:1959
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] "comentário"
 msgstr[1] "comentários"
 
-#: ../../object/Item.php:346 ../../boot.php:686 ../../mod/content.php:605
+#: ../../object/Item.php:370 ../../mod/content.php:605 ../../boot.php:694
 #: ../../include/contact_widgets.php:204
 msgid "show more"
 msgstr "exibir mais"
 
-#: ../../object/Item.php:631 ../../mod/content.php:706
-#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
-#: ../../mod/photos.php:1676
+#: ../../object/Item.php:655 ../../mod/photos.php:1558
+#: ../../mod/photos.php:1602 ../../mod/photos.php:1690
+#: ../../mod/content.php:706
 msgid "This is you"
 msgstr "Este(a) é você"
 
-#: ../../object/Item.php:634 ../../view/theme/perihel/config.php:95
-#: ../../view/theme/diabook/theme.php:633
-#: ../../view/theme/diabook/config.php:148
-#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
-#: ../../view/theme/clean/config.php:71
-#: ../../view/theme/cleanzero/config.php:80 ../../mod/mood.php:137
-#: ../../mod/install.php:248 ../../mod/install.php:286
-#: ../../mod/crepair.php:166 ../../mod/content.php:709
-#: ../../mod/contacts.php:386 ../../mod/profiles.php:630
+#: ../../object/Item.php:658 ../../mod/fsuggest.php:107
 #: ../../mod/message.php:335 ../../mod/message.php:564
-#: ../../mod/localtime.php:45 ../../mod/photos.php:1078
-#: ../../mod/photos.php:1199 ../../mod/photos.php:1501
-#: ../../mod/photos.php:1552 ../../mod/photos.php:1596
-#: ../../mod/photos.php:1679 ../../mod/poke.php:199 ../../mod/events.php:478
-#: ../../mod/fsuggest.php:107 ../../mod/invite.php:140
-#: ../../mod/manage.php:110
+#: ../../mod/events.php:478 ../../mod/photos.php:1082
+#: ../../mod/photos.php:1203 ../../mod/photos.php:1510
+#: ../../mod/photos.php:1561 ../../mod/photos.php:1605
+#: ../../mod/photos.php:1693 ../../mod/contacts.php:464
+#: ../../mod/invite.php:140 ../../mod/profiles.php:634
+#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45
+#: ../../mod/install.php:248 ../../mod/install.php:286
+#: ../../mod/content.php:709 ../../mod/mood.php:137 ../../mod/crepair.php:171
+#: ../../view/theme/diabook/theme.php:633
+#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:47
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
+#: ../../view/theme/cleanzero/config.php:80
 msgid "Submit"
 msgstr "Enviar"
 
-#: ../../object/Item.php:635 ../../mod/content.php:710
+#: ../../object/Item.php:659 ../../mod/content.php:710
 msgid "Bold"
 msgstr "Negrito"
 
-#: ../../object/Item.php:636 ../../mod/content.php:711
+#: ../../object/Item.php:660 ../../mod/content.php:711
 msgid "Italic"
 msgstr "Itálico"
 
-#: ../../object/Item.php:637 ../../mod/content.php:712
+#: ../../object/Item.php:661 ../../mod/content.php:712
 msgid "Underline"
 msgstr "Sublinhado"
 
-#: ../../object/Item.php:638 ../../mod/content.php:713
+#: ../../object/Item.php:662 ../../mod/content.php:713
 msgid "Quote"
 msgstr "Citação"
 
-#: ../../object/Item.php:639 ../../mod/content.php:714
+#: ../../object/Item.php:663 ../../mod/content.php:714
 msgid "Code"
 msgstr "Código"
 
-#: ../../object/Item.php:640 ../../mod/content.php:715
+#: ../../object/Item.php:664 ../../mod/content.php:715
 msgid "Image"
 msgstr "Imagem"
 
-#: ../../object/Item.php:641 ../../mod/content.php:716
+#: ../../object/Item.php:665 ../../mod/content.php:716
 msgid "Link"
 msgstr "Link"
 
-#: ../../object/Item.php:642 ../../mod/content.php:717
+#: ../../object/Item.php:666 ../../mod/content.php:717
 msgid "Video"
 msgstr "Vídeo"
 
-#: ../../object/Item.php:643 ../../mod/editpost.php:145
-#: ../../mod/content.php:718 ../../mod/photos.php:1553
-#: ../../mod/photos.php:1597 ../../mod/photos.php:1680
-#: ../../include/conversation.php:1116
+#: ../../object/Item.php:667 ../../mod/editpost.php:145
+#: ../../mod/photos.php:1562 ../../mod/photos.php:1606
+#: ../../mod/photos.php:1694 ../../mod/content.php:718
+#: ../../include/conversation.php:1124
 msgid "Preview"
 msgstr "Pré-visualização"
 
-#: ../../index.php:199 ../../mod/apps.php:7
+#: ../../index.php:203 ../../mod/apps.php:7
 msgid "You must be logged in to use addons. "
 msgstr "Você precisa estar logado para usar os addons."
 
-#: ../../index.php:243 ../../mod/help.php:90
+#: ../../index.php:247 ../../mod/help.php:90
 msgid "Not Found"
 msgstr "Não encontrada"
 
-#: ../../index.php:246 ../../mod/help.php:93
+#: ../../index.php:250 ../../mod/help.php:93
 msgid "Page not found."
 msgstr "Página não encontrada."
 
-#: ../../index.php:355 ../../mod/group.php:72 ../../mod/profperm.php:19
+#: ../../index.php:359 ../../mod/profperm.php:19 ../../mod/group.php:72
 msgid "Permission denied"
 msgstr "Permissão negada"
 
-#: ../../index.php:356 ../../mod/mood.php:114 ../../mod/display.php:242
-#: ../../mod/register.php:40 ../../mod/dfrn_confirm.php:53
-#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9
-#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
-#: ../../mod/wallmessage.php:103 ../../mod/suggest.php:56
-#: ../../mod/network.php:6 ../../mod/install.php:151 ../../mod/editpost.php:10
-#: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:115
-#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:147
-#: ../../mod/settings.php:96 ../../mod/settings.php:579
-#: ../../mod/settings.php:584 ../../mod/profiles.php:146
-#: ../../mod/profiles.php:571 ../../mod/group.php:19 ../../mod/follow.php:9
-#: ../../mod/message.php:38 ../../mod/message.php:174
-#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:133
-#: ../../mod/photos.php:1044 ../../mod/wall_attach.php:55
-#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66
+#: ../../index.php:360 ../../mod/fsuggest.php:78 ../../mod/files.php:170
+#: ../../mod/notifications.php:66 ../../mod/message.php:38
+#: ../../mod/message.php:174 ../../mod/editpost.php:10
+#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/photos.php:134 ../../mod/photos.php:1048
+#: ../../mod/register.php:41 ../../mod/attach.php:33
+#: ../../mod/contacts.php:246 ../../mod/follow.php:9 ../../mod/uimport.php:23
+#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101
+#: ../../mod/settings.php:102 ../../mod/settings.php:591
+#: ../../mod/settings.php:596 ../../mod/display.php:266
+#: ../../mod/profiles.php:146 ../../mod/profiles.php:575
+#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56
+#: ../../mod/manage.php:96 ../../mod/delegate.php:6
+#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135
 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../mod/events.php:140 ../../mod/delegate.php:6 ../../mod/nogroup.php:25
-#: ../../mod/fsuggest.php:78 ../../mod/item.php:143 ../../mod/item.php:159
-#: ../../mod/notifications.php:66 ../../mod/invite.php:15
-#: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9
-#: ../../include/items.php:4187
+#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118
+#: ../../mod/item.php:145 ../../mod/item.php:161 ../../mod/mood.php:114
+#: ../../mod/network.php:4 ../../mod/crepair.php:117
+#: ../../include/items.php:4390
 msgid "Permission denied."
 msgstr "Permissão negada."
 
-#: ../../index.php:415
+#: ../../index.php:419
 msgid "toggle mobile"
 msgstr "habilita mobile"
 
-#: ../../view/theme/perihel/theme.php:33
-#: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93
-#: ../../include/nav.php:104 ../../include/nav.php:143
-msgid "Home"
-msgstr "Pessoal"
+#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41
+#: ../../mod/update_community.php:18 ../../mod/update_network.php:22
+#: ../../mod/update_display.php:22
+msgid "[Embedded content - reload page to view]"
+msgstr "[Conteúdo incorporado - recarregue a página para ver]"
 
-#: ../../view/theme/perihel/theme.php:33
-#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
-#: ../../include/nav.php:143
-msgid "Your posts and conversations"
-msgstr "Suas publicações e conversas"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131
+msgid "Contact not found."
+msgstr "O contato não foi encontrado."
 
-#: ../../view/theme/perihel/theme.php:34
-#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1963
-#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
-#: ../../include/nav.php:77 ../../include/profile_advanced.php:7
-#: ../../include/profile_advanced.php:84
-msgid "Profile"
-msgstr "Perfil "
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "A sugestão de amigo foi enviada"
 
-#: ../../view/theme/perihel/theme.php:34
-#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
-msgid "Your profile page"
-msgstr "Sua página de perfil"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Sugerir amigos"
 
-#: ../../view/theme/perihel/theme.php:35
-#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1970
-#: ../../mod/fbrowser.php:25 ../../include/nav.php:78
-msgid "Photos"
-msgstr "Fotos"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Sugerir um amigo para %s"
 
-#: ../../view/theme/perihel/theme.php:35
-#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
-msgid "Your photos"
-msgstr "Suas fotos"
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "Esta apresentação já foi aceita."
 
-#: ../../view/theme/perihel/theme.php:36
-#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1987
-#: ../../mod/events.php:370 ../../include/nav.php:79
-msgid "Events"
-msgstr "Eventos"
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "A localização do perfil não é válida ou não contém uma informação de perfil."
 
-#: ../../view/theme/perihel/theme.php:36
-#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
-msgid "Your events"
-msgstr "Seus eventos"
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono."
 
-#: ../../view/theme/perihel/theme.php:37
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
-msgid "Personal notes"
-msgstr "Suas anotações pessoais"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
+msgstr "Aviso: a localização do perfil não possui nenhuma foto do perfil."
 
-#: ../../view/theme/perihel/theme.php:37
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
-msgid "Your personal photos"
-msgstr "Suas fotos pessoais"
+#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "O parâmetro requerido %d não foi encontrado na localização fornecida"
+msgstr[1] "Os parâmetros requeridos %d não foram encontrados na localização fornecida"
 
-#: ../../view/theme/perihel/theme.php:38
-#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32
-#: ../../include/nav.php:128
-msgid "Community"
-msgstr "Comunidade"
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "A apresentação foi finalizada."
 
-#: ../../view/theme/perihel/config.php:89
-#: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
-msgid "don't show"
-msgstr "não exibir"
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "Ocorreu um erro irrecuperável de protocolo."
 
-#: ../../view/theme/perihel/config.php:89
-#: ../../view/theme/diabook/theme.php:621
-#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:326
-msgid "show"
-msgstr "exibir"
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "O perfil não está disponível."
 
-#: ../../view/theme/perihel/config.php:97
-#: ../../view/theme/diabook/config.php:150
-#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
-#: ../../view/theme/clean/config.php:73
-#: ../../view/theme/cleanzero/config.php:82
-msgid "Theme settings"
-msgstr "Configurações do tema"
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s recebeu solicitações de conexão em excesso hoje."
 
-#: ../../view/theme/perihel/config.php:98
-#: ../../view/theme/diabook/config.php:151
-#: ../../view/theme/dispy/config.php:73
-#: ../../view/theme/cleanzero/config.php:84
-msgid "Set font-size for posts and comments"
-msgstr "Escolha o tamanho da fonte para publicações e comentários"
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "As medidas de proteção contra spam foram ativadas."
 
-#: ../../view/theme/perihel/config.php:99
-#: ../../view/theme/diabook/config.php:152
-#: ../../view/theme/dispy/config.php:74
-msgid "Set line-height for posts and comments"
-msgstr "Escolha comprimento da linha para publicações e comentários"
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Os amigos foram notificados para tentar novamente em 24 horas."
 
-#: ../../view/theme/perihel/config.php:100
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Escolha a resolução para a coluna do meio"
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "Localizador inválido"
 
-#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:607
-#: ../../include/nav.php:171
-msgid "Contacts"
-msgstr "Contatos"
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr "Endereço de e-mail inválido."
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Seus contatos"
+#: ../../mod/dfrn_request.php:362
+msgid "This account has not been configured for email. Request failed."
+msgstr "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação."
 
-#: ../../view/theme/diabook/theme.php:130
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:624
-#: ../../view/theme/diabook/config.php:158
-msgid "Community Pages"
-msgstr "Páginas da Comunidade"
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
+msgstr "Não foi possível encontrar a sua identificação no endereço indicado."
 
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-#: ../../view/theme/diabook/config.php:160
-msgid "Community Profiles"
-msgstr "Profiles Comunitários"
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr "Você já fez a sua apresentação aqui."
 
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-#: ../../view/theme/diabook/config.php:164
-msgid "Last users"
-msgstr "Últimos usuários"
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Aparentemente você já é amigo de %s."
 
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-#: ../../view/theme/diabook/config.php:166
-msgid "Last likes"
-msgstr "Últimas gostadas"
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr "URL de perfil inválida."
 
-#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
-#: ../../include/conversation.php:246 ../../include/text.php:1913
-msgid "event"
-msgstr "evento"
+#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "URL de perfil não permitida."
 
-#: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62
-#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/subthread.php:87
-#: ../../include/conversation.php:121 ../../include/conversation.php:130
-#: ../../include/conversation.php:249 ../../include/conversation.php:258
-#: ../../include/diaspora.php:1874
-msgid "status"
-msgstr "status"
+#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180
+msgid "Failed to update contact record."
+msgstr "Não foi possível atualizar o registro do contato."
 
-#: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62
-#: ../../mod/like.php:151 ../../mod/subthread.php:87
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1915 ../../include/diaspora.php:1874
-msgid "photo"
-msgstr "foto"
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr "A sua apresentação foi enviada."
 
-#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:168
-#: ../../include/conversation.php:137 ../../include/diaspora.php:1890
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s gosta de %3$s de %2$s"
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr "Por favor, autentique-se para confirmar a apresentação."
 
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-#: ../../view/theme/diabook/config.php:165
-msgid "Last photos"
-msgstr "Últimas fotos"
+#: ../../mod/dfrn_request.php:659
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil."
 
-#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:59
-#: ../../mod/photos.php:154 ../../mod/photos.php:1058
-#: ../../mod/photos.php:1183 ../../mod/photos.php:1206
-#: ../../mod/photos.php:1736 ../../mod/photos.php:1748
-msgid "Contact Photos"
-msgstr "Fotos dos contatos"
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
+msgstr "Ocultar este contato"
 
-#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:154
-#: ../../mod/photos.php:725 ../../mod/photos.php:1183
-#: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74
-#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
-#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
-#: ../../mod/profile_photo.php:305 ../../include/user.php:331
-#: ../../include/user.php:338 ../../include/user.php:345
-msgid "Profile Photos"
-msgstr "Fotos do perfil"
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
+msgstr "Bem-vindo(a) à sua página pessoal %s."
 
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:163
-msgid "Find Friends"
-msgstr "Encontrar amigos"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Por favor, confirme sua solicitação de apresentação/conexão para %s."
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Diretório Local"
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr "Confirmar"
 
-#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49
-msgid "Global Directory"
-msgstr "Diretório global"
+#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703
+msgid "[Name Withheld]"
+msgstr "[Nome não revelado]"
 
-#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
-msgid "Similar Interests"
-msgstr "Interesses Parecidos"
+#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:918
+#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:19
+#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17
+#: ../../mod/directory.php:31
+msgid "Public access denied."
+msgstr "Acesso público negado."
 
-#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66
-#: ../../include/contact_widgets.php:34
-msgid "Friend Suggestions"
-msgstr "Sugestões de amigos"
+#: ../../mod/dfrn_request.php:811
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:"
 
-#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
-msgid "Invite Friends"
-msgstr "Convidar amigos"
+#: ../../mod/dfrn_request.php:827
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+msgstr "<strike>Conectar como um acompanhante por e-mail</strike> (Em breve)"
 
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22
-#: ../../mod/admin.php:999 ../../mod/admin.php:1207 ../../mod/settings.php:79
-#: ../../mod/uexport.php:48 ../../include/nav.php:167
-msgid "Settings"
-msgstr "Configurações"
+#: ../../mod/dfrn_request.php:829
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
+" Friendica site and join us today</a>."
+msgstr "Caso você ainda não seja membro da rede social livre, <a href=\"http://dir.friendica.com/siteinfo\">clique aqui para encontrar um site Friendica público e junte-se à nós</a>."
 
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-#: ../../view/theme/diabook/config.php:159
-msgid "Earth Layers"
-msgstr "Camadas da Terra"
-
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Configure o zoom para Camadas da Terra"
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "Solicitação de amizade/conexão"
 
-#: ../../view/theme/diabook/theme.php:585
-#: ../../view/theme/diabook/config.php:156
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Configure longitude (X) para Camadas da Terra"
+#: ../../mod/dfrn_request.php:833
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../view/theme/diabook/theme.php:586
-#: ../../view/theme/diabook/config.php:157
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Configure latitude (Y) para Camadas da Terra"
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr "Por favor, entre com as informações solicitadas:"
 
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-#: ../../view/theme/diabook/config.php:161
-msgid "Help or @NewHere ?"
-msgstr "Ajuda ou @NewHere ?"
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
+msgstr "%s conhece você?"
 
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-#: ../../view/theme/diabook/config.php:162
-msgid "Connect Services"
-msgstr "Conectar serviços"
+#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209
+#: ../../mod/api.php:105 ../../mod/register.php:243 ../../mod/contacts.php:326
+#: ../../mod/settings.php:1001 ../../mod/settings.php:1007
+#: ../../mod/settings.php:1015 ../../mod/settings.php:1019
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1030
+#: ../../mod/settings.php:1036 ../../mod/settings.php:1042
+#: ../../mod/settings.php:1072 ../../mod/settings.php:1073
+#: ../../mod/settings.php:1074 ../../mod/settings.php:1075
+#: ../../mod/settings.php:1076 ../../mod/profiles.php:614
+#: ../../mod/suggest.php:29 ../../include/items.php:4235
+msgid "Yes"
+msgstr "Sim"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Mostre/esconda caixas na coluna à direita:"
+#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106
+#: ../../mod/register.php:244 ../../mod/settings.php:1001
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1015
+#: ../../mod/settings.php:1019 ../../mod/settings.php:1024
+#: ../../mod/settings.php:1030 ../../mod/settings.php:1036
+#: ../../mod/settings.php:1042 ../../mod/settings.php:1072
+#: ../../mod/settings.php:1073 ../../mod/settings.php:1074
+#: ../../mod/settings.php:1075 ../../mod/settings.php:1076
+#: ../../mod/profiles.php:615
+msgid "No"
+msgstr "Não"
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Configure o esquema de cores"
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "Adicione uma anotação pessoal:"
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Configure o zoom para Camadas da Terra"
+#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Alinhamento"
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Esquerda"
+#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Centro"
+#: ../../mod/dfrn_request.php:843
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora."
 
-#: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76
-#: ../../view/theme/cleanzero/config.php:86
-msgid "Color scheme"
-msgstr "Esquema de cores"
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr "Seu endereço de identificação:"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Tamanho da fonte para publicações"
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "Enviar solicitação"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Tamanho da fonte para campos texto"
+#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212
+#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203
+#: ../../mod/photos.php:292 ../../mod/contacts.php:329 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/settings.php:610
+#: ../../mod/settings.php:636 ../../mod/suggest.php:32
+#: ../../include/items.php:4238 ../../include/conversation.php:1127
+msgid "Cancel"
+msgstr "Cancelar"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Configure o esquema de cores"
+#: ../../mod/files.php:156 ../../mod/videos.php:301
+#: ../../include/text.php:1400
+msgid "View Video"
+msgstr "Ver Vídeo"
 
-#: ../../view/theme/clean/config.php:54 ../../include/user.php:243
-#: ../../include/text.php:1649
-msgid "default"
-msgstr "padrão"
+#: ../../mod/profile.php:21 ../../boot.php:1353
+msgid "Requested profile is not available."
+msgstr "Perfil solicitado não está disponível."
 
-#: ../../view/theme/clean/config.php:74
-msgid "Background Image"
-msgstr "Imagem de fundo"
+#: ../../mod/profile.php:155 ../../mod/display.php:99
+msgid "Access to this profile has been restricted."
+msgstr "O acesso a este perfil está restrito."
 
-#: ../../view/theme/clean/config.php:74
-msgid ""
-"The URL to a picture (e.g. from your photo album) that should be used as "
-"background image."
-msgstr "A URL de uma imagem (ex. do seu álbum de fotos) que possa ser usada como fundo da tela."
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Dicas para novos membros"
 
-#: ../../view/theme/clean/config.php:75
-msgid "Background Color"
-msgstr "Cor do fundo"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Identificador de solicitação inválido"
 
-#: ../../view/theme/clean/config.php:75
-msgid "HEX value for the background color. Don't include the #"
-msgstr "Valor hexadecimal para a cor do fundo. Não inclua o #."
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Descartar"
 
-#: ../../view/theme/clean/config.php:77
-msgid "font size"
-msgstr "tamanho da fonte"
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210 ../../mod/contacts.php:437
+#: ../../mod/contacts.php:491 ../../mod/contacts.php:701
+msgid "Ignore"
+msgstr "Ignorar"
 
-#: ../../view/theme/clean/config.php:77
-msgid "base font size for your interface"
-msgstr "tamanho base da fonte para a sua interface"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Sistema"
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)"
+#: ../../mod/notifications.php:83 ../../include/nav.php:142
+msgid "Network"
+msgstr "Rede"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Configure a largura do tema"
+#: ../../mod/notifications.php:88 ../../mod/network.php:365
+msgid "Personal"
+msgstr "Pessoal"
 
-#: ../../boot.php:684
-msgid "Delete this item?"
-msgstr "Excluir este item?"
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123
+#: ../../include/nav.php:104 ../../include/nav.php:145
+msgid "Home"
+msgstr "Pessoal"
 
-#: ../../boot.php:687
-msgid "show fewer"
-msgstr "exibir menos"
+#: ../../mod/notifications.php:98 ../../include/nav.php:151
+msgid "Introductions"
+msgstr "Apresentações"
 
-#: ../../boot.php:1015
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Atualização %s falhou. Vide registro de erros (log)."
+#: ../../mod/notifications.php:103 ../../mod/message.php:182
+#: ../../include/nav.php:158
+msgid "Messages"
+msgstr "Mensagens"
 
-#: ../../boot.php:1017
-#, php-format
-msgid "Update Error at %s"
-msgstr "Erro de Atualização em %s"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Exibir solicitações ignoradas"
 
-#: ../../boot.php:1127
-msgid "Create a New Account"
-msgstr "Criar uma nova conta"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Ocultar solicitações ignoradas"
 
-#: ../../boot.php:1128 ../../mod/register.php:275 ../../include/nav.php:108
-msgid "Register"
-msgstr "Registrar"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Tipo de notificação:"
 
-#: ../../boot.php:1152 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Sair"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Sugestão de amigo"
 
-#: ../../boot.php:1153 ../../include/nav.php:91
-msgid "Login"
-msgstr "Entrar"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "sugerido por %s"
 
-#: ../../boot.php:1155
-msgid "Nickname or Email address: "
-msgstr "Identificação ou endereço de e-mail: "
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
+#: ../../mod/contacts.php:497
+msgid "Hide this contact from others"
+msgstr "Ocultar este contato dos outros"
 
-#: ../../boot.php:1156
-msgid "Password: "
-msgstr "Senha: "
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Publicar a adição de amigo"
 
-#: ../../boot.php:1157
-msgid "Remember me"
-msgstr "Lembre-se de mim"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "se aplicável"
 
-#: ../../boot.php:1160
-msgid "Or login using OpenID: "
-msgstr "Ou login usando OpendID:"
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
+#: ../../mod/admin.php:908
+msgid "Approve"
+msgstr "Aprovar"
 
-#: ../../boot.php:1166
-msgid "Forgot your password?"
-msgstr "Esqueceu a sua senha?"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Alega ser conhecido por você: "
 
-#: ../../boot.php:1167 ../../mod/lostpass.php:84
-msgid "Password Reset"
-msgstr "Reiniciar a senha"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "sim"
 
-#: ../../boot.php:1169
-msgid "Website Terms of Service"
-msgstr "Termos de Serviço do Website"
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "não"
 
-#: ../../boot.php:1170
-msgid "terms of service"
-msgstr "termos de serviço"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Aprovar como:"
 
-#: ../../boot.php:1172
-msgid "Website Privacy Policy"
-msgstr "Política de Privacidade do Website"
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Amigo"
 
-#: ../../boot.php:1173
-msgid "privacy policy"
-msgstr "política de privacidade"
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Compartilhador"
 
-#: ../../boot.php:1302
-msgid "Requested account is not available."
-msgstr "Conta solicitada não disponível"
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fã/Admirador"
 
-#: ../../boot.php:1341 ../../mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Perfil solicitado não está disponível."
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Solicitação de amizade/conexão"
 
-#: ../../boot.php:1381 ../../boot.php:1485
-msgid "Edit profile"
-msgstr "Editar perfil"
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Novo acompanhante"
 
-#: ../../boot.php:1433 ../../mod/suggest.php:88 ../../mod/match.php:58
-#: ../../include/contact_widgets.php:9
-msgid "Connect"
-msgstr "Conectar"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Sem apresentações."
 
-#: ../../boot.php:1447
-msgid "Message"
-msgstr "Mensagem"
+#: ../../mod/notifications.php:220 ../../include/nav.php:152
+msgid "Notifications"
+msgstr "Notificações"
 
-#: ../../boot.php:1455 ../../include/nav.php:169
-msgid "Profiles"
-msgstr "Perfis"
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:469
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s gostou da publicação de %s"
 
-#: ../../boot.php:1455
-msgid "Manage/edit profiles"
-msgstr "Gerenciar/editar perfis"
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s desgostou da publicação de %s"
 
-#: ../../boot.php:1461 ../../boot.php:1487 ../../mod/profiles.php:726
-msgid "Change profile photo"
-msgstr "Mudar a foto do perfil"
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:492
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s agora é amigo de %s"
 
-#: ../../boot.php:1462 ../../mod/profiles.php:727
-msgid "Create New Profile"
-msgstr "Criar um novo perfil"
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#, php-format
+msgid "%s created a new post"
+msgstr "%s criou uma nova publicação"
 
-#: ../../boot.php:1472 ../../mod/profiles.php:738
-msgid "Profile Image"
-msgstr "Imagem do perfil"
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:501
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s comentou uma publicação de %s"
 
-#: ../../boot.php:1475 ../../mod/profiles.php:740
-msgid "visible to everybody"
-msgstr "visível para todos"
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
+msgstr "Nenhuma notificação de rede."
 
-#: ../../boot.php:1476 ../../mod/profiles.php:741
-msgid "Edit visibility"
-msgstr "Editar a visibilidade"
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
+msgstr "Notificações de rede"
 
-#: ../../boot.php:1501 ../../mod/directory.php:134 ../../mod/events.php:471
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
-msgid "Location:"
-msgstr "Localização:"
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
+msgid "No more system notifications."
+msgstr "Não fazer notificações de sistema."
 
-#: ../../boot.php:1503 ../../mod/directory.php:136
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Gênero:"
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr "Notificações de sistema"
 
-#: ../../boot.php:1506 ../../mod/directory.php:138
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Situação:"
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
+msgstr "Nenhuma notificação pessoal."
 
-#: ../../boot.php:1508 ../../mod/directory.php:140
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Página web:"
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
+msgstr "Notificações pessoais"
 
-#: ../../boot.php:1584 ../../boot.php:1670
-msgid "g A l F d"
-msgstr "G l d F"
+#: ../../mod/notifications.php:508
+msgid "No more home notifications."
+msgstr "Não existe mais nenhuma notificação pessoal."
 
-#: ../../boot.php:1585 ../../boot.php:1671
-msgid "F d"
-msgstr "F d"
+#: ../../mod/notifications.php:512
+msgid "Home Notifications"
+msgstr "Notificações pessoais"
 
-#: ../../boot.php:1630 ../../boot.php:1711
-msgid "[today]"
-msgstr "[hoje]"
+#: ../../mod/like.php:150 ../../mod/tagger.php:62 ../../mod/subthread.php:87
+#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1955
+#: ../../include/diaspora.php:1908 ../../include/conversation.php:126
+#: ../../include/conversation.php:254
+msgid "photo"
+msgstr "foto"
 
-#: ../../boot.php:1642
-msgid "Birthday Reminders"
-msgstr "Lembretes de aniversário"
+#: ../../mod/like.php:150 ../../mod/like.php:321 ../../mod/tagger.php:62
+#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1908
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:249 ../../include/conversation.php:258
+msgid "status"
+msgstr "status"
 
-#: ../../boot.php:1643
-msgid "Birthdays this week:"
-msgstr "Aniversários nesta semana:"
+#: ../../mod/like.php:167 ../../view/theme/diabook/theme.php:480
+#: ../../include/diaspora.php:1924 ../../include/conversation.php:137
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s gosta de %3$s de %2$s"
 
-#: ../../boot.php:1704
-msgid "[No description]"
-msgstr "[Sem descrição]"
+#: ../../mod/like.php:169 ../../include/conversation.php:140
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s não gosta de %3$s de %2$s"
 
-#: ../../boot.php:1722
-msgid "Event Reminders"
-msgstr "Lembretes de eventos"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Erro no protocolo OpenID. Não foi retornada nenhuma ID."
 
-#: ../../boot.php:1723
-msgid "Events this week:"
-msgstr "Eventos esta semana:"
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "A conta não foi encontrada e não são permitidos registros via OpenID nesse site."
 
-#: ../../boot.php:1956 ../../include/nav.php:76
-msgid "Status"
-msgstr "Status"
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
+msgstr "Não foi possível autenticar."
 
-#: ../../boot.php:1959
-msgid "Status Messages and Posts"
-msgstr "Mensagem de Estado (status) e Publicações"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Texto fonte (bbcode):"
 
-#: ../../boot.php:1966
-msgid "Profile Details"
-msgstr "Detalhe do Perfil"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Texto fonte (Diaspora) a converter para BBcode:"
 
-#: ../../boot.php:1973 ../../mod/photos.php:51
-msgid "Photo Albums"
-msgstr "Álbuns de fotos"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Entrada fonte:"
 
-#: ../../boot.php:1977 ../../boot.php:1980
-msgid "Videos"
-msgstr "Vídeos"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (HTML puro):"
 
-#: ../../boot.php:1990
-msgid "Events and Calendar"
-msgstr "Eventos e Agenda"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: ../../boot.php:1994 ../../mod/notes.php:44
-msgid "Personal Notes"
-msgstr "Notas pessoais"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../boot.php:1997
-msgid "Only You Can See This"
-msgstr "Somente Você Pode Ver Isso"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s atualmente está %2$s"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Humor"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Defina o seu humor e conte aos seus amigos"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../mod/display.php:19 ../../mod/_search.php:89
-#: ../../mod/directory.php:31 ../../mod/search.php:89
-#: ../../mod/dfrn_request.php:761 ../../mod/community.php:18
-#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:914
-#: ../../mod/videos.php:115
-msgid "Public access denied."
-msgstr "Acesso público negado."
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Fonte de entrada (formato Diaspora):"
 
-#: ../../mod/display.php:51 ../../mod/display.php:246 ../../mod/decrypt.php:15
-#: ../../mod/admin.php:163 ../../mod/admin.php:947 ../../mod/admin.php:1147
-#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15
-#: ../../include/items.php:3995
-msgid "Item not found."
-msgstr "O item não foi encontrado."
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../mod/display.php:99 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "O acesso a este perfil está restrito."
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr "As configurações do tema foram atualizadas."
 
-#: ../../mod/display.php:239
-msgid "Item has been removed."
-msgstr "O item foi removido."
+#: ../../mod/admin.php:102 ../../mod/admin.php:573
+msgid "Site"
+msgstr "Site"
 
-#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Acesso negado."
+#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916
+msgid "Users"
+msgstr "Usuários"
 
-#: ../../mod/friendica.php:55
-msgid "This is Friendica, version"
-msgstr "Este é o Friendica, versão"
+#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058
+#: ../../mod/settings.php:57
+msgid "Plugins"
+msgstr "Plugins"
 
-#: ../../mod/friendica.php:56
-msgid "running at web location"
-msgstr "sendo executado no endereço web"
+#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258
+msgid "Themes"
+msgstr "Temas"
 
-#: ../../mod/friendica.php:58
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica."
+#: ../../mod/admin.php:106
+msgid "DB updates"
+msgstr "Atualizações do BD"
 
-#: ../../mod/friendica.php:60
-msgid "Bug reports and issues: please visit"
-msgstr "Relatos e acompanhamentos de erros podem ser encontrados em"
+#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345
+msgid "Logs"
+msgstr "Relatórios"
 
-#: ../../mod/friendica.php:61
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com"
+#: ../../mod/admin.php:126 ../../include/nav.php:180
+msgid "Admin"
+msgstr "Admin"
 
-#: ../../mod/friendica.php:75
-msgid "Installed plugins/addons/apps:"
-msgstr "Plugins/complementos/aplicações instaladas:"
+#: ../../mod/admin.php:127
+msgid "Plugin Features"
+msgstr "Recursos do plugin"
 
-#: ../../mod/friendica.php:88
-msgid "No installed plugins/addons/apps"
-msgstr "Nenhum plugin/complemento/aplicativo instalado"
+#: ../../mod/admin.php:129
+msgid "User registrations waiting for confirmation"
+msgstr "Cadastros de novos usuários aguardando confirmação"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s dá as boas vinda à %2$s"
+#: ../../mod/admin.php:164 ../../mod/admin.php:955 ../../mod/admin.php:1166
+#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:270
+#: ../../mod/viewsrc.php:15 ../../include/items.php:4194
+msgid "Item not found."
+msgstr "O item não foi encontrado."
 
-#: ../../mod/register.php:91 ../../mod/admin.php:733 ../../mod/regmod.php:54
-#, php-format
-msgid "Registration details for %s"
-msgstr "Detalhes do registro de %s"
+#: ../../mod/admin.php:188 ../../mod/admin.php:855
+msgid "Normal Account"
+msgstr "Conta normal"
 
-#: ../../mod/register.php:99
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações."
+#: ../../mod/admin.php:189 ../../mod/admin.php:856
+msgid "Soapbox Account"
+msgstr "Conta de vitrine"
 
-#: ../../mod/register.php:103
-msgid "Failed to send email message. Here is the message that failed."
-msgstr "Não foi possível enviar a mensagem de e-mail. Aqui está a mensagem que não foi."
+#: ../../mod/admin.php:190 ../../mod/admin.php:857
+msgid "Community/Celebrity Account"
+msgstr "Conta de comunidade/celebridade"
 
-#: ../../mod/register.php:108
-msgid "Your registration can not be processed."
-msgstr "Não foi possível processar o seu registro."
+#: ../../mod/admin.php:191 ../../mod/admin.php:858
+msgid "Automatic Friend Account"
+msgstr "Conta de amigo automático"
 
-#: ../../mod/register.php:145
-#, php-format
-msgid "Registration request at %s"
-msgstr "Solicitação de registro em %s"
+#: ../../mod/admin.php:192
+msgid "Blog Account"
+msgstr "Conta de blog"
 
-#: ../../mod/register.php:154
-msgid "Your registration is pending approval by the site owner."
-msgstr "A aprovação do seu registro está pendente junto ao administrador do site."
+#: ../../mod/admin.php:193
+msgid "Private Forum"
+msgstr "Fórum privado"
 
-#: ../../mod/register.php:192 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã."
+#: ../../mod/admin.php:212
+msgid "Message queues"
+msgstr "Fila de mensagens"
 
-#: ../../mod/register.php:220
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'."
+#: ../../mod/admin.php:217 ../../mod/admin.php:572 ../../mod/admin.php:900
+#: ../../mod/admin.php:1004 ../../mod/admin.php:1057 ../../mod/admin.php:1223
+#: ../../mod/admin.php:1257 ../../mod/admin.php:1344
+msgid "Administration"
+msgstr "Administração"
 
-#: ../../mod/register.php:221
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens."
+#: ../../mod/admin.php:218
+msgid "Summary"
+msgstr "Resumo"
 
-#: ../../mod/register.php:222
-msgid "Your OpenID (optional): "
-msgstr "Seu OpenID (opcional): "
+#: ../../mod/admin.php:220
+msgid "Registered users"
+msgstr "Usuários registrados"
 
-#: ../../mod/register.php:236
-msgid "Include your profile in member directory?"
-msgstr "Incluir o seu perfil no diretório de membros?"
+#: ../../mod/admin.php:222
+msgid "Pending registrations"
+msgstr "Registros pendentes"
 
-#: ../../mod/register.php:239 ../../mod/api.php:105 ../../mod/suggest.php:29
-#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:246
-#: ../../mod/settings.php:977 ../../mod/settings.php:983
-#: ../../mod/settings.php:991 ../../mod/settings.php:995
-#: ../../mod/settings.php:1000 ../../mod/settings.php:1006
-#: ../../mod/settings.php:1012 ../../mod/settings.php:1018
-#: ../../mod/settings.php:1048 ../../mod/settings.php:1049
-#: ../../mod/settings.php:1050 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1052 ../../mod/profiles.php:610
-#: ../../mod/message.php:209 ../../include/items.php:4036
-msgid "Yes"
-msgstr "Sim"
+#: ../../mod/admin.php:223
+msgid "Version"
+msgstr "Versão"
 
-#: ../../mod/register.php:240 ../../mod/api.php:106
-#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:977
-#: ../../mod/settings.php:983 ../../mod/settings.php:991
-#: ../../mod/settings.php:995 ../../mod/settings.php:1000
-#: ../../mod/settings.php:1006 ../../mod/settings.php:1012
-#: ../../mod/settings.php:1018 ../../mod/settings.php:1048
-#: ../../mod/settings.php:1049 ../../mod/settings.php:1050
-#: ../../mod/settings.php:1051 ../../mod/settings.php:1052
-#: ../../mod/profiles.php:611
-msgid "No"
-msgstr "Não"
+#: ../../mod/admin.php:225
+msgid "Active plugins"
+msgstr "Plugins ativos"
 
-#: ../../mod/register.php:257
-msgid "Membership on this site is by invitation only."
-msgstr "A associação a este site só pode ser feita mediante convite."
+#: ../../mod/admin.php:248
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Não foi possível analisar a URL. Ela deve conter pelo menos <scheme>://<domain>"
 
-#: ../../mod/register.php:258
-msgid "Your invitation ID: "
-msgstr "A ID do seu convite: "
+#: ../../mod/admin.php:485
+msgid "Site settings updated."
+msgstr "As configurações do site foram atualizadas."
 
-#: ../../mod/register.php:261 ../../mod/admin.php:570
-msgid "Registration"
-msgstr "Registro"
+#: ../../mod/admin.php:514 ../../mod/settings.php:823
+msgid "No special theme for mobile devices"
+msgstr "Nenhum tema especial para dispositivos móveis"
 
-#: ../../mod/register.php:269
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Seu nome completo (ex: José da Silva): "
+#: ../../mod/admin.php:531 ../../mod/contacts.php:408
+msgid "Never"
+msgstr "Nunca"
 
-#: ../../mod/register.php:270
-msgid "Your Email Address: "
-msgstr "Seu endereço de e-mail: "
+#: ../../mod/admin.php:532
+msgid "At post arrival"
+msgstr "Na chegada da publicação"
 
-#: ../../mod/register.php:271
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será '<strong>identificação@$sitename</strong>'"
+#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "Frequentemente"
 
-#: ../../mod/register.php:272
-msgid "Choose a nickname: "
-msgstr "Escolha uma identificação: "
+#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "De hora em hora"
 
-#: ../../mod/register.php:281 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Importar"
+#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "Duas vezes ao dia"
 
-#: ../../mod/register.php:282
-msgid "Import your profile to this friendica instance"
-msgstr "Importa seu perfil  desta instância do friendica"
+#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "Diariamente"
 
-#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:160
-#: ../../mod/profiles.php:583
-msgid "Profile not found."
-msgstr "O perfil não foi encontrado."
+#: ../../mod/admin.php:541
+msgid "Multi user instance"
+msgstr "Instância multi usuário"
 
-#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:129
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
-msgstr "O contato não foi encontrado."
+#: ../../mod/admin.php:559
+msgid "Closed"
+msgstr "Fechado"
 
-#: ../../mod/dfrn_confirm.php:119
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado."
+#: ../../mod/admin.php:560
+msgid "Requires approval"
+msgstr "Requer aprovação"
 
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
-msgstr "A resposta do site remoto não foi compreendida."
+#: ../../mod/admin.php:561
+msgid "Open"
+msgstr "Aberto"
 
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
-msgstr "Resposta inesperada do site remoto: "
+#: ../../mod/admin.php:565
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Nenhuma política de SSL, os links irão rastrear o estado SSL da página"
 
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
-msgstr "A confirmação foi completada com sucesso."
+#: ../../mod/admin.php:566
+msgid "Force all links to use SSL"
+msgstr "Forçar todos os links a utilizar SSL"
 
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr "O site remoto relatou: "
+#: ../../mod/admin.php:567
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)"
 
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
-msgstr "Falha temporária. Por favor, aguarde e tente novamente."
+#: ../../mod/admin.php:574 ../../mod/admin.php:1059 ../../mod/admin.php:1259
+#: ../../mod/admin.php:1346 ../../mod/settings.php:609
+#: ../../mod/settings.php:719 ../../mod/settings.php:793
+#: ../../mod/settings.php:872 ../../mod/settings.php:1104
+msgid "Save Settings"
+msgstr "Salvar configurações"
 
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
-msgstr "Ocorreu uma falha na apresentação ou ela foi revogada."
+#: ../../mod/admin.php:575 ../../mod/register.php:265
+msgid "Registration"
+msgstr "Registro"
 
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Não foi possível definir a foto do contato."
+#: ../../mod/admin.php:576
+msgid "File upload"
+msgstr "Envio de arquivo"
 
-#: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172
-#: ../../include/diaspora.php:621
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s agora é amigo de %2$s"
+#: ../../mod/admin.php:577
+msgid "Policies"
+msgstr "Políticas"
 
-#: ../../mod/dfrn_confirm.php:562
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Não foi encontrado nenhum registro de usuário para '%s' "
+#: ../../mod/admin.php:578
+msgid "Advanced"
+msgstr "Avançado"
 
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
-msgstr "A chave de criptografia do nosso site está, aparentemente, bagunçada."
+#: ../../mod/admin.php:579
+msgid "Performance"
+msgstr "Performance"
 
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Foi fornecida uma URL em branco ou não foi possível descriptografá-la."
+#: ../../mod/admin.php:580
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível."
 
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "O registro do contato não foi encontrado para você em seu site."
+#: ../../mod/admin.php:583
+msgid "Site name"
+msgstr "Nome do site"
 
-#: ../../mod/dfrn_confirm.php:618
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "A chave pública do site não está disponível no registro do contato para a URL %s"
+#: ../../mod/admin.php:584
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../mod/dfrn_confirm.php:638
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo."
+#: ../../mod/admin.php:585
+msgid "Additional Info"
+msgstr "Informação adicional"
 
-#: ../../mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "Não foi possível definir suas credenciais de contato no nosso sistema."
+#: ../../mod/admin.php:585
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
+msgstr "Para servidores públicos: você pode adicionar informações aqui que serão listadas em dir.friendica.com/siteinfo."
 
-#: ../../mod/dfrn_confirm.php:716
-msgid "Unable to update your contact profile details on our system"
-msgstr "Não foi possível atualizar os detalhes do seu perfil em nosso sistema."
+#: ../../mod/admin.php:586
+msgid "System language"
+msgstr "Idioma do sistema"
 
-#: ../../mod/dfrn_confirm.php:751
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Conexão aceita em %s"
+#: ../../mod/admin.php:587
+msgid "System theme"
+msgstr "Tema do sistema"
 
-#: ../../mod/dfrn_confirm.php:800
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s se associou a %2$s"
+#: ../../mod/admin.php:587
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Tema padrão do sistema. Pode ser substituído nos perfis de usuário -  <a href='#' id='cnftheme'>alterar configurações do tema</a>"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autorizar a conexão com a aplicação"
+#: ../../mod/admin.php:588
+msgid "Mobile system theme"
+msgstr "Tema do sistema para dispositivos móveis"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Volte para a sua aplicação e digite este código de segurança:"
+#: ../../mod/admin.php:588
+msgid "Theme for mobile devices"
+msgstr "Tema para dispositivos móveis"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Por favor, autentique-se para continuar."
+#: ../../mod/admin.php:589
+msgid "SSL link policy"
+msgstr "Política de link SSL"
 
-#: ../../mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"
+#: ../../mod/admin.php:589
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Determina se os links gerados devem ser forçados a utilizar SSL"
 
-#: ../../mod/lostpass.php:17
-msgid "No valid account found."
-msgstr "Não foi encontrada nenhuma conta válida."
+#: ../../mod/admin.php:590
+msgid "Old style 'Share'"
+msgstr "Estilo antigo do 'Compartilhar' "
 
-#: ../../mod/lostpass.php:33
-msgid "Password reset request issued. Check your email."
-msgstr "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail."
+#: ../../mod/admin.php:590
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Desativa o elemento bbcode 'compartilhar' para repetir ítens."
 
-#: ../../mod/lostpass.php:44
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Foi feita uma solicitação de reiniciação da senha em %s"
+#: ../../mod/admin.php:591
+msgid "Hide help entry from navigation menu"
+msgstr "Oculta a entrada 'Ajuda' do menu de navegação"
 
-#: ../../mod/lostpass.php:66
+#: ../../mod/admin.php:591
 msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada."
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente."
 
-#: ../../mod/lostpass.php:85
-msgid "Your password has been reset as requested."
-msgstr "Sua senha foi reiniciada, conforme solicitado."
+#: ../../mod/admin.php:592
+msgid "Single user instance"
+msgstr "Instância de usuário único"
 
-#: ../../mod/lostpass.php:86
-msgid "Your new password is"
-msgstr "Sua nova senha é"
-
-#: ../../mod/lostpass.php:87
-msgid "Save or copy your new password - and then"
-msgstr "Grave ou copie a sua nova senha e, então"
+#: ../../mod/admin.php:592
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Faça essa instância multiusuário ou usuário único para o usuário em questão"
 
-#: ../../mod/lostpass.php:88
-msgid "click here to login"
-msgstr "clique aqui para entrar"
+#: ../../mod/admin.php:593
+msgid "Maximum image size"
+msgstr "Tamanho máximo da imagem"
 
-#: ../../mod/lostpass.php:89
+#: ../../mod/admin.php:593
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil."
-
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Sua senha foi modifica às %s"
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Tamanho máximo, em bytes, das imagens enviadas. O padrão é 0, o que significa sem limites"
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Esqueceu a sua senha?"
+#: ../../mod/admin.php:594
+msgid "Maximum image length"
+msgstr "Tamanho máximo da imagem"
 
-#: ../../mod/lostpass.php:123
+#: ../../mod/admin.php:594
 msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções."
-
-#: ../../mod/lostpass.php:124
-msgid "Nickname or Email: "
-msgstr "Identificação ou e-mail: "
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites."
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Reiniciar"
+#: ../../mod/admin.php:595
+msgid "JPEG image quality"
+msgstr "Qualidade da imagem JPEG"
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem."
+#: ../../mod/admin.php:595
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade."
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
-msgstr "Não foi selecionado nenhum destinatário."
+#: ../../mod/admin.php:597
+msgid "Register policy"
+msgstr "Política de registro"
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Não foi possível verificar a sua localização."
+#: ../../mod/admin.php:598
+msgid "Maximum Daily Registrations"
+msgstr "Registros Diários Máximos"
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
-msgstr "Não foi possível enviar a mensagem."
+#: ../../mod/admin.php:598
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "Se o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' ,  essa configuração não tem efeito."
 
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr "Falha na coleta de mensagens."
+#: ../../mod/admin.php:599
+msgid "Register text"
+msgstr "Texto de registro"
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "A mensagem foi enviada."
+#: ../../mod/admin.php:599
+msgid "Will be displayed prominently on the registration page."
+msgstr "Será exibido com destaque na página de registro."
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Nenhum destinatário."
+#: ../../mod/admin.php:600
+msgid "Accounts abandoned after x days"
+msgstr "Contas abandonadas após x dias"
 
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
-#: ../../mod/message.php:283 ../../mod/message.php:291
-#: ../../mod/message.php:466 ../../mod/message.php:474
-#: ../../include/conversation.php:997 ../../include/conversation.php:1015
-msgid "Please enter a link URL:"
-msgstr "Por favor, digite uma URL:"
+#: ../../mod/admin.php:600
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Não desperdiçará recursos do sistema captando de sites externos para contas abandonadas. Digite 0 para nenhum limite de tempo."
 
-#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
-msgid "Send Private Message"
-msgstr "Enviar mensagem privada"
+#: ../../mod/admin.php:601
+msgid "Allowed friend domains"
+msgstr "Domínios de amigos permitidos"
 
-#: ../../mod/wallmessage.php:143
-#, php-format
+#: ../../mod/admin.php:601
 msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos."
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Lista dos domínios que têm permissão para estabelecer amizades com esse site, separados por vírgula. Caracteres curinga são aceitos. Deixe em branco para permitir qualquer domínio."
 
-#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
-#: ../../mod/message.php:553
-msgid "To:"
-msgstr "Para:"
+#: ../../mod/admin.php:602
+msgid "Allowed email domains"
+msgstr "Domínios de e-mail permitidos"
 
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
-#: ../../mod/message.php:555
-msgid "Subject:"
-msgstr "Assunto:"
+#: ../../mod/admin.php:602
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Lista de domínios separados por vírgula, que são permitidos em endereços de e-mail para registro nesse site. Caracteres-curinga são aceitos. Vazio para aceitar qualquer domínio"
 
-#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
-#: ../../mod/message.php:558 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Sua mensagem:"
+#: ../../mod/admin.php:603
+msgid "Block public"
+msgstr "Bloquear acesso público"
 
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../include/conversation.php:1081
-msgid "Upload photo"
-msgstr "Enviar foto"
+#: ../../mod/admin.php:603
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada."
 
-#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../include/conversation.php:1085
-msgid "Insert web link"
-msgstr "Inserir link web"
+#: ../../mod/admin.php:604
+msgid "Force publish"
+msgstr "Forçar a listagem"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Bemvindo ao Friendica"
+#: ../../mod/admin.php:604
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Marque para forçar todos os perfis desse site a serem listados no diretório do site."
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Dicas para os novos membros"
+#: ../../mod/admin.php:605
+msgid "Global directory update URL"
+msgstr "URL de atualização do diretório global"
 
-#: ../../mod/newmember.php:12
+#: ../../mod/admin.php:605
 msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente."
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL para atualizar o diretório global. Se isso não for definido, o diretório global não estará disponível neste site."
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Do Início"
+#: ../../mod/admin.php:606
+msgid "Allow threaded items"
+msgstr "Habilita itens aninhados"
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Passo-a-passo da friendica"
+#: ../../mod/admin.php:606
+msgid "Allow infinite level threading for items on this site."
+msgstr "Habilita nível infinito de aninhamento (threading) para itens."
 
-#: ../../mod/newmember.php:18
+#: ../../mod/admin.php:607
+msgid "Private posts by default for new users"
+msgstr "Publicações privadas por padrão para novos usuários"
+
+#: ../../mod/admin.php:607
 msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar."
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas."
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Ir para as suas configurações"
+#: ../../mod/admin.php:608
+msgid "Don't include post content in email notifications"
+msgstr "Não incluir o conteúdo da postagem nas notificações de email"
 
-#: ../../mod/newmember.php:26
+#: ../../mod/admin.php:608
 msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre."
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança."
 
-#: ../../mod/newmember.php:28
+#: ../../mod/admin.php:609
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Disabilita acesso público a addons listados no menu de aplicativos."
+
+#: ../../mod/admin.php:609
 msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você."
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente."
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Enviar foto do perfil"
+#: ../../mod/admin.php:610
+msgid "Don't embed private images in posts"
+msgstr "Não inclua imagens privadas em publicações"
 
-#: ../../mod/newmember.php:36
+#: ../../mod/admin.php:610
 msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem."
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo."
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Editar seu perfil"
+#: ../../mod/admin.php:611
+msgid "Allow Users to set remote_self"
+msgstr "Permite usuários configurarem remote_self"
 
-#: ../../mod/newmember.php:38
+#: ../../mod/admin.php:611
 msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos."
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
+msgstr "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários"
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Palavras-chave do perfil"
+#: ../../mod/admin.php:612
+msgid "Block multiple registrations"
+msgstr "Bloquear registros repetidos"
 
-#: ../../mod/newmember.php:40
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades."
+#: ../../mod/admin.php:612
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Desabilitar o registro de contas adicionais para serem usadas como páginas."
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Conexões"
+#: ../../mod/admin.php:613
+msgid "OpenID support"
+msgstr "Suporte ao OpenID"
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../mod/admin.php:613
+msgid "OpenID support for registration and logins."
+msgstr "Suporte ao OpenID para registros e autenticações."
 
-#: ../../mod/newmember.php:49
-msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
-msgstr "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook."
+#: ../../mod/admin.php:614
+msgid "Fullname check"
+msgstr "Verificar nome completo"
 
-#: ../../mod/newmember.php:51
+#: ../../mod/admin.php:614
 msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>Se</em> esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre."
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Forçar os usuários a usar um espaço em branco entre o nome e o sobrenome, ao preencherem o nome completo no registro, como uma medida contra o spam"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Importação de e-mails"
+#: ../../mod/admin.php:615
+msgid "UTF-8 Regular expressions"
+msgstr "Expressões regulares UTF-8"
 
-#: ../../mod/newmember.php:56
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail"
+#: ../../mod/admin.php:615
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Use expressões regulares do PHP em UTF8"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Ir para a sua página de contatos"
+#: ../../mod/admin.php:616
+msgid "Show Community Page"
+msgstr "Exibir a página da comunidade"
 
-#: ../../mod/newmember.php:58
+#: ../../mod/admin.php:616
 msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>."
+"Display a Community page showing all recent public postings on this site."
+msgstr "Exibe uma página da Comunidade, mostrando todas as publicações recentes feitas nesse site."
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Ir para o diretório do seu site"
+#: ../../mod/admin.php:617
+msgid "Enable OStatus support"
+msgstr "Habilitar suporte ao OStatus"
 
-#: ../../mod/newmember.php:60
+#: ../../mod/admin.php:617
 msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado."
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados."
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Pesquisar por novas pessoas"
+#: ../../mod/admin.php:618
+msgid "OStatus conversation completion interval"
+msgstr "Intervalo de finalização da conversação OStatus "
 
-#: ../../mod/newmember.php:62
+#: ../../mod/admin.php:618
 msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas."
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada."
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Grupos"
+#: ../../mod/admin.php:619
+msgid "Enable Diaspora support"
+msgstr "Habilitar suporte ao Diaspora"
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Agrupe seus contatos"
+#: ../../mod/admin.php:619
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Fornece compatibilidade nativa com a rede Diaspora."
 
-#: ../../mod/newmember.php:70
+#: ../../mod/admin.php:620
+msgid "Only allow Friendica contacts"
+msgstr "Permitir somente contatos Friendica"
+
+#: ../../mod/admin.php:620
 msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede."
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Todos os contatos devem usar protocolos Friendica. Todos os outros protocolos de comunicação embarcados estão desabilitados"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Por que as minhas publicações não são públicas?"
+#: ../../mod/admin.php:621
+msgid "Verify SSL"
+msgstr "Verificar SSL"
 
-#: ../../mod/newmember.php:73
+#: ../../mod/admin.php:621
 msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima."
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados."
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Obtendo ajuda"
+#: ../../mod/admin.php:622
+msgid "Proxy user"
+msgstr "Usuário do proxy"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Ir para a seção de ajuda"
+#: ../../mod/admin.php:623
+msgid "Proxy URL"
+msgstr "URL do proxy"
 
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Nossas páginas de <strong>ajuda</strong> podem ser consultadas para mais detalhes sobre características e recursos do programa."
+#: ../../mod/admin.php:624
+msgid "Network timeout"
+msgstr "Limite de tempo da rede"
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Você realmente deseja deletar essa sugestão?"
+#: ../../mod/admin.php:624
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valor em segundos. Defina como 0 para ilimitado (não recomendado)."
 
-#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
-#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:249
-#: ../../mod/settings.php:598 ../../mod/settings.php:624
-#: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1119
-#: ../../include/items.php:4039
-msgid "Cancel"
-msgstr "Cancelar"
+#: ../../mod/admin.php:625
+msgid "Delivery interval"
+msgstr "Intervalo de envio"
 
-#: ../../mod/suggest.php:72
+#: ../../mod/admin.php:625
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas."
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Recomendado: 4-5 para servidores compartilhados (shared hosts), 2-3 para servidores privados virtuais (VPS). 0-1 para grandes servidores dedicados."
 
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "Ignorar/Ocultar"
+#: ../../mod/admin.php:626
+msgid "Poll interval"
+msgstr "Intervalo da busca (polling)"
 
-#: ../../mod/network.php:179
-msgid "Search Results For:"
-msgstr "Resultados de Busca Por:"
+#: ../../mod/admin.php:626
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Se 0, use intervalo de entrega."
 
-#: ../../mod/network.php:222 ../../mod/_search.php:21 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Remover o termo"
+#: ../../mod/admin.php:627
+msgid "Maximum Load Average"
+msgstr "Média de Carga Máxima"
 
-#: ../../mod/network.php:231 ../../mod/_search.php:30 ../../mod/search.php:30
-#: ../../include/features.php:41
-msgid "Saved Searches"
-msgstr "Pesquisas salvas"
+#: ../../mod/admin.php:627
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50."
 
-#: ../../mod/network.php:232 ../../include/group.php:275
-msgid "add"
-msgstr "adicionar"
+#: ../../mod/admin.php:629
+msgid "Use MySQL full text engine"
+msgstr "Use o engine de texto completo (full text) do MySQL"
 
-#: ../../mod/network.php:394
-msgid "Commented Order"
-msgstr "Ordem dos comentários"
+#: ../../mod/admin.php:629
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Ativa a engine de texto completo (full text). Acelera a busca - mas só pode buscar apenas por 4 ou mais caracteres."
 
-#: ../../mod/network.php:397
-msgid "Sort by Comment Date"
-msgstr "Ordenar pela data do comentário"
+#: ../../mod/admin.php:630
+msgid "Suppress Language"
+msgstr "Retira idioma"
 
-#: ../../mod/network.php:400
-msgid "Posted Order"
-msgstr "Ordem das publicações"
+#: ../../mod/admin.php:630
+msgid "Suppress language information in meta information about a posting."
+msgstr "Retira informações sobre idioma nas meta informações sobre uma publicação."
 
-#: ../../mod/network.php:403
-msgid "Sort by Post Date"
-msgstr "Ordenar pela data de publicação"
+#: ../../mod/admin.php:631
+msgid "Path to item cache"
+msgstr "Diretório do cache de item"
 
-#: ../../mod/network.php:441 ../../mod/notifications.php:88
-msgid "Personal"
-msgstr "Pessoal"
+#: ../../mod/admin.php:632
+msgid "Cache duration in seconds"
+msgstr "Duração do cache em segundos"
 
-#: ../../mod/network.php:444
-msgid "Posts that mention or involve you"
-msgstr "Publicações que mencionem ou envolvam você"
+#: ../../mod/admin.php:632
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day)."
+msgstr "Por quanto tempo o arquivo de caches deve ser guardado? Valor padrão é 86400 segundos (Um dia)."
 
-#: ../../mod/network.php:450
-msgid "New"
-msgstr "Nova"
+#: ../../mod/admin.php:633
+msgid "Path for lock file"
+msgstr "Diretório do arquivo de trava"
 
-#: ../../mod/network.php:453
-msgid "Activity Stream - by date"
-msgstr "Fluxo de atividades - por data"
+#: ../../mod/admin.php:634
+msgid "Temp path"
+msgstr "Diretório Temp"
 
-#: ../../mod/network.php:459
-msgid "Shared Links"
-msgstr "Links compartilhados"
+#: ../../mod/admin.php:635
+msgid "Base path to installation"
+msgstr "Diretório base para instalação"
 
-#: ../../mod/network.php:462
-msgid "Interesting Links"
-msgstr "Links interessantes"
+#: ../../mod/admin.php:637
+msgid "New base url"
+msgstr "Nova URL base"
 
-#: ../../mod/network.php:468
-msgid "Starred"
-msgstr "Destacada"
+#: ../../mod/admin.php:655
+msgid "Update has been marked successful"
+msgstr "A atualização foi marcada como bem sucedida"
 
-#: ../../mod/network.php:471
-msgid "Favourite Posts"
-msgstr "Publicações favoritas"
+#: ../../mod/admin.php:665
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "Ocorreu um erro na execução de %s. Verifique os relatórios do sistema."
 
-#: ../../mod/network.php:539
+#: ../../mod/admin.php:668
 #, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "Aviso: Este grupo contém %s membro de uma rede insegura."
-msgstr[1] "Aviso: Este grupo contém %s membros de uma rede insegura."
+msgid "Update %s was successfully applied."
+msgstr "A atualização %s foi aplicada com sucesso."
 
-#: ../../mod/network.php:542
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública."
+#: ../../mod/admin.php:672
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso."
 
-#: ../../mod/network.php:588 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Este grupo não existe"
+#: ../../mod/admin.php:675
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "Não foi possível encontrar a função de atualização %s."
 
-#: ../../mod/network.php:599 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "O grupo está vazio"
+#: ../../mod/admin.php:690
+msgid "No failed updates."
+msgstr "Nenhuma atualização com falha."
 
-#: ../../mod/network.php:605 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Grupo: "
+#: ../../mod/admin.php:694
+msgid "Failed Updates"
+msgstr "Atualizações com falha"
 
-#: ../../mod/network.php:617
-msgid "Contact: "
-msgstr "Contato: "
+#: ../../mod/admin.php:695
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Isso não inclue atualizações antes da 1139, as quais não retornavam um status."
 
-#: ../../mod/network.php:619
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública."
+#: ../../mod/admin.php:696
+msgid "Mark success (if update was manually applied)"
+msgstr "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)"
 
-#: ../../mod/network.php:624
-msgid "Invalid contact."
-msgstr "Contato inválido."
+#: ../../mod/admin.php:697
+msgid "Attempt to execute this update step automatically"
+msgstr "Tentar executar esse passo da atualização automaticamente"
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Servidor de Comunicações Friendica - Configuração"
+#: ../../mod/admin.php:737 ../../mod/register.php:92 ../../mod/regmod.php:54
+#, php-format
+msgid "Registration details for %s"
+msgstr "Detalhes do registro de %s"
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Não foi possível conectar ao banco de dados."
+#: ../../mod/admin.php:743
+msgid "Registration successful. Email send to user"
+msgstr "Registro bem sucedido. Email enviado ao usuário."
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Não foi possível criar tabela."
+#: ../../mod/admin.php:753
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s usuário bloqueado/desbloqueado"
+msgstr[1] "%s usuários bloqueados/desbloqueados"
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "O banco de dados do seu site Friendica foi instalado."
+#: ../../mod/admin.php:760
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s usuário excluído"
+msgstr[1] "%s usuários excluídos"
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql."
+#: ../../mod/admin.php:799
+#, php-format
+msgid "User '%s' deleted"
+msgstr "O usuário '%s' foi excluído"
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:521
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"."
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "O usuário '%s' foi desbloqueado"
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Checagem do sistema"
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' blocked"
+msgstr "O usuário '%s' foi bloqueado"
 
-#: ../../mod/install.php:207 ../../mod/events.php:373
-msgid "Next"
-msgstr "Próximo"
+#: ../../mod/admin.php:902
+msgid "Add User"
+msgstr "Adicionar usuário"
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Checar novamente"
+#: ../../mod/admin.php:903
+msgid "select all"
+msgstr "selecionar todos"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Conexão de banco de dados"
+#: ../../mod/admin.php:904
+msgid "User registrations waiting for confirm"
+msgstr "Registros de usuário aguardando confirmação"
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados."
+#: ../../mod/admin.php:905
+msgid "User waiting for permanent deletion"
+msgstr "Usuário aguardando por fim permanente da conta."
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações."
+#: ../../mod/admin.php:906
+msgid "Request date"
+msgstr "Solicitar data"
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar."
+#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919
+#: ../../mod/admin.php:932 ../../mod/settings.php:611
+#: ../../mod/settings.php:637 ../../mod/crepair.php:150
+msgid "Name"
+msgstr "Nome"
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Nome do servidor de banco de dados"
+#: ../../mod/admin.php:906 ../../mod/admin.php:918 ../../mod/admin.php:919
+#: ../../mod/admin.php:934 ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86
+msgid "Email"
+msgstr "E-mail"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Nome do usuário do banco de dados"
+#: ../../mod/admin.php:907
+msgid "No registrations."
+msgstr "Nenhum registro."
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Senha do usuário do banco de dados"
+#: ../../mod/admin.php:909
+msgid "Deny"
+msgstr "Negar"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Nome do banco de dados"
+#: ../../mod/admin.php:911 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Block"
+msgstr "Bloquear"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Endereço de email do administrador do site"
+#: ../../mod/admin.php:912 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Unblock"
+msgstr "Desbloquear"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."
+#: ../../mod/admin.php:913
+msgid "Site admin"
+msgstr "Administração do site"
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Por favor, selecione o fuso horário padrão para o seu site"
+#: ../../mod/admin.php:914
+msgid "Account expired"
+msgstr "Conta expirou"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Configurações do site"
+#: ../../mod/admin.php:917
+msgid "New User"
+msgstr "Novo usuário"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web."
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Register date"
+msgstr "Data de registro"
 
-#: ../../mod/install.php:322
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-msgstr "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last login"
+msgstr "Última entrada"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "Caminho para o executável do PhP"
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last item"
+msgstr "Último item"
 
-#: ../../mod/install.php:326
+#: ../../mod/admin.php:918
+msgid "Deleted since"
+msgstr "Apagado desde"
+
+#: ../../mod/admin.php:919 ../../mod/settings.php:36
+msgid "Account"
+msgstr "Conta"
+
+#: ../../mod/admin.php:921
 msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?"
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "PHP em linha de comando"
+#: ../../mod/admin.php:922
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?"
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)"
+#: ../../mod/admin.php:932
+msgid "Name of the new user."
+msgstr "Nome do novo usuários."
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Encontrado PHP versão:"
+#: ../../mod/admin.php:933
+msgid "Nickname"
+msgstr "Apelido"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "Binário cli do PHP"
+#: ../../mod/admin.php:933
+msgid "Nickname of the new user."
+msgstr "Apelido para o novo usuário."
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."
+#: ../../mod/admin.php:934
+msgid "Email address of the new user."
+msgstr "Endereço de e-mail do novo usuário."
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "Isto é necessário para o funcionamento do envio de mensagens."
+#: ../../mod/admin.php:967
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "O plugin %s foi desabilitado."
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/admin.php:971
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "O plugin %s foi habilitado."
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"
-
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: ../../mod/admin.php:981 ../../mod/admin.php:1195
+msgid "Disable"
+msgstr "Desabilitar"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Gerar chaves de encriptação"
+#: ../../mod/admin.php:983 ../../mod/admin.php:1197
+msgid "Enable"
+msgstr "Habilitar"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "Módulo PHP libCurl"
+#: ../../mod/admin.php:1006 ../../mod/admin.php:1225
+msgid "Toggle"
+msgstr "Alternar"
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "Módulo PHP GD graphics"
+#: ../../mod/admin.php:1007 ../../mod/admin.php:1226
+#: ../../mod/newmember.php:22 ../../mod/settings.php:85
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:169
+msgid "Settings"
+msgstr "Configurações"
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "Módulo PHP OpenSSL"
+#: ../../mod/admin.php:1014 ../../mod/admin.php:1235
+msgid "Author: "
+msgstr "Autor: "
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "Módulo PHP mysqli"
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1236
+msgid "Maintainer: "
+msgstr "Mantenedor: "
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "Módulo PHP mb_string "
+#: ../../mod/admin.php:1155
+msgid "No themes found."
+msgstr "Nenhum tema encontrado"
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Módulo mod_rewrite do Apache"
+#: ../../mod/admin.php:1217
+msgid "Screenshot"
+msgstr "Captura de tela"
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."
+#: ../../mod/admin.php:1263
+msgid "[Experimental]"
+msgstr "[Esperimental]"
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."
+#: ../../mod/admin.php:1264
+msgid "[Unsupported]"
+msgstr "[Não suportado]"
 
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."
+#: ../../mod/admin.php:1291
+msgid "Log settings updated."
+msgstr "As configurações de relatórios foram atualizadas."
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Erro: o módulo openssl do PHP é necessário, mas não está instalado."
+#: ../../mod/admin.php:1347
+msgid "Clear"
+msgstr "Limpar"
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Erro: o módulo mysqli do PHP é necessário, mas não está instalado."
+#: ../../mod/admin.php:1353
+msgid "Enable Debugging"
+msgstr "Habilitar Debugging"
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Erro: o módulo mb_string PHP é necessário, mas não está instalado."
+#: ../../mod/admin.php:1354
+msgid "Log file"
+msgstr "Arquivo do relatório"
 
-#: ../../mod/install.php:438
+#: ../../mod/admin.php:1354
 msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "O servidor web precisa ter permissão de escrita. Relativa ao diretório raiz do seu Friendica."
 
-#: ../../mod/install.php:439
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."
+#: ../../mod/admin.php:1355
+msgid "Log level"
+msgstr "Nível do relatório"
 
-#: ../../mod/install.php:440
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica."
+#: ../../mod/admin.php:1404 ../../mod/contacts.php:487
+msgid "Update now"
+msgstr "Atualizar agora"
 
-#: ../../mod/install.php:441
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções."
+#: ../../mod/admin.php:1405
+msgid "Close"
+msgstr "Fechar"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php tem permissão de escrita"
+#: ../../mod/admin.php:1411
+msgid "FTP Host"
+msgstr "Endereço do FTP"
 
-#: ../../mod/install.php:454
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização."
+#: ../../mod/admin.php:1412
+msgid "FTP Path"
+msgstr "Caminho do FTP"
 
-#: ../../mod/install.php:455
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica."
+#: ../../mod/admin.php:1413
+msgid "FTP User"
+msgstr "Usuário do FTP"
 
-#: ../../mod/install.php:456
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."
+#: ../../mod/admin.php:1414
+msgid "FTP Password"
+msgstr "Senha do FTP"
 
-#: ../../mod/install.php:457
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém."
+#: ../../mod/message.php:9 ../../include/nav.php:161
+msgid "New Message"
+msgstr "Nova mensagem"
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 tem escrita permitida"
+#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
+msgid "No recipient selected."
+msgstr "Não foi selecionado nenhum destinatário."
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor."
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Não foi possível localizar informação do contato."
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "A reescrita de URLs está funcionando"
+#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr "Não foi possível enviar a mensagem."
 
-#: ../../mod/install.php:484
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."
+#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
+msgid "Message collection failure."
+msgstr "Falha na coleta de mensagens."
 
-#: ../../mod/install.php:508
-msgid "Errors encountered creating database tables."
-msgstr "Foram encontrados erros durante a criação das tabelas do banco de dados."
+#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
+msgid "Message sent."
+msgstr "A mensagem foi enviada."
 
-#: ../../mod/install.php:519
-msgid "<h1>What next</h1>"
-msgstr "<h1>A seguir</h1>"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Você realmente deseja deletar essa mensagem?"
 
-#: ../../mod/install.php:520
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador."
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "A mensagem foi excluída."
 
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr "As configurações do tema foram atualizadas."
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "A conversa foi removida."
 
-#: ../../mod/admin.php:101 ../../mod/admin.php:568
-msgid "Site"
-msgstr "Site"
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+msgid "Please enter a link URL:"
+msgstr "Por favor, digite uma URL:"
 
-#: ../../mod/admin.php:102 ../../mod/admin.php:893 ../../mod/admin.php:908
-msgid "Users"
-msgstr "Usuários"
+#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
+msgid "Send Private Message"
+msgstr "Enviar mensagem privada"
 
-#: ../../mod/admin.php:103 ../../mod/admin.php:997 ../../mod/admin.php:1039
-msgid "Plugins"
-msgstr "Plugins"
+#: ../../mod/message.php:320 ../../mod/message.php:553
+#: ../../mod/wallmessage.php:144
+msgid "To:"
+msgstr "Para:"
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:1205 ../../mod/admin.php:1239
-msgid "Themes"
-msgstr "Temas"
+#: ../../mod/message.php:325 ../../mod/message.php:555
+#: ../../mod/wallmessage.php:145
+msgid "Subject:"
+msgstr "Assunto:"
 
-#: ../../mod/admin.php:105
-msgid "DB updates"
-msgstr "Atualizações do BD"
+#: ../../mod/message.php:329 ../../mod/message.php:558
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+msgid "Your message:"
+msgstr "Sua mensagem:"
 
-#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1326
-msgid "Logs"
-msgstr "Relatórios"
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
+#: ../../include/conversation.php:1089
+msgid "Upload photo"
+msgstr "Enviar foto"
 
-#: ../../mod/admin.php:125 ../../include/nav.php:178
-msgid "Admin"
-msgstr "Admin"
+#: ../../mod/message.php:333 ../../mod/message.php:563
+#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
+#: ../../include/conversation.php:1093
+msgid "Insert web link"
+msgstr "Inserir link web"
 
-#: ../../mod/admin.php:126
-msgid "Plugin Features"
-msgstr "Recursos do plugin"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Nenhuma mensagem."
 
-#: ../../mod/admin.php:128
-msgid "User registrations waiting for confirmation"
-msgstr "Cadastros de novos usuários aguardando confirmação"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Remetente desconhecido - %s"
 
-#: ../../mod/admin.php:187 ../../mod/admin.php:848
-msgid "Normal Account"
-msgstr "Conta normal"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Você e %s"
 
-#: ../../mod/admin.php:188 ../../mod/admin.php:849
-msgid "Soapbox Account"
-msgstr "Conta de vitrine"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s e você"
 
-#: ../../mod/admin.php:189 ../../mod/admin.php:850
-msgid "Community/Celebrity Account"
-msgstr "Conta de comunidade/celebridade"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Excluir conversa"
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:851
-msgid "Automatic Friend Account"
-msgstr "Conta de amigo automático"
-
-#: ../../mod/admin.php:191
-msgid "Blog Account"
-msgstr "Conta de blog"
-
-#: ../../mod/admin.php:192
-msgid "Private Forum"
-msgstr "Fórum privado"
-
-#: ../../mod/admin.php:211
-msgid "Message queues"
-msgstr "Fila de mensagens"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: ../../mod/admin.php:216 ../../mod/admin.php:567 ../../mod/admin.php:892
-#: ../../mod/admin.php:996 ../../mod/admin.php:1038 ../../mod/admin.php:1204
-#: ../../mod/admin.php:1238 ../../mod/admin.php:1325
-msgid "Administration"
-msgstr "Administração"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d mensagem"
+msgstr[1] "%d mensagens"
 
-#: ../../mod/admin.php:217
-msgid "Summary"
-msgstr "Resumo"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "A mensagem não está disponível."
 
-#: ../../mod/admin.php:219
-msgid "Registered users"
-msgstr "Usuários registrados"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Excluir a mensagem"
 
-#: ../../mod/admin.php:221
-msgid "Pending registrations"
-msgstr "Registros pendentes"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente."
 
-#: ../../mod/admin.php:222
-msgid "Version"
-msgstr "Versão"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Enviar resposta"
 
-#: ../../mod/admin.php:224
-msgid "Active plugins"
-msgstr "Plugins ativos"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "O item não foi encontrado"
 
-#: ../../mod/admin.php:247
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Não foi possível analisar a URL. Ela deve conter pelo menos <scheme>://<domain>"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Editar a publicação"
 
-#: ../../mod/admin.php:481
-msgid "Site settings updated."
-msgstr "As configurações do site foram atualizadas."
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1090
+msgid "upload photo"
+msgstr "upload de foto"
 
-#: ../../mod/admin.php:510 ../../mod/settings.php:806
-msgid "No special theme for mobile devices"
-msgstr "Nenhum tema especial para dispositivos móveis"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1091
+msgid "Attach file"
+msgstr "Anexar arquivo"
 
-#: ../../mod/admin.php:527 ../../mod/contacts.php:330
-msgid "Never"
-msgstr "Nunca"
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1092
+msgid "attach file"
+msgstr "anexar arquivo"
 
-#: ../../mod/admin.php:528 ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Frequentemente"
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1094
+msgid "web link"
+msgstr "link web"
 
-#: ../../mod/admin.php:529 ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "De hora em hora"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1095
+msgid "Insert video link"
+msgstr "Inserir link de vídeo"
 
-#: ../../mod/admin.php:530 ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Duas vezes ao dia"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1096
+msgid "video link"
+msgstr "link de vídeo"
 
-#: ../../mod/admin.php:531 ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "Diariamente"
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1097
+msgid "Insert audio link"
+msgstr "Inserir link de áudio"
 
-#: ../../mod/admin.php:536
-msgid "Multi user instance"
-msgstr "Instância multi usuário"
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1098
+msgid "audio link"
+msgstr "link de áudio"
 
-#: ../../mod/admin.php:554
-msgid "Closed"
-msgstr "Fechado"
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1099
+msgid "Set your location"
+msgstr "Definir sua localização"
 
-#: ../../mod/admin.php:555
-msgid "Requires approval"
-msgstr "Requer aprovação"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1100
+msgid "set location"
+msgstr "configure localização"
 
-#: ../../mod/admin.php:556
-msgid "Open"
-msgstr "Aberto"
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1101
+msgid "Clear browser location"
+msgstr "Limpar a localização do navegador"
 
-#: ../../mod/admin.php:560
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Nenhuma política de SSL, os links irão rastrear o estado SSL da página"
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1102
+msgid "clear location"
+msgstr "apague localização"
 
-#: ../../mod/admin.php:561
-msgid "Force all links to use SSL"
-msgstr "Forçar todos os links a utilizar SSL"
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1108
+msgid "Permission settings"
+msgstr "Configurações de permissão"
 
-#: ../../mod/admin.php:562
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)"
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1117
+msgid "CC: email addresses"
+msgstr "CC: endereço de e-mail"
 
-#: ../../mod/admin.php:569 ../../mod/admin.php:1040 ../../mod/admin.php:1240
-#: ../../mod/admin.php:1327 ../../mod/settings.php:597
-#: ../../mod/settings.php:707 ../../mod/settings.php:776
-#: ../../mod/settings.php:852 ../../mod/settings.php:1080
-msgid "Save Settings"
-msgstr "Salvar configurações"
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1118
+msgid "Public post"
+msgstr "Publicação pública"
 
-#: ../../mod/admin.php:571
-msgid "File upload"
-msgstr "Envio de arquivo"
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1104
+msgid "Set title"
+msgstr "Definir o título"
 
-#: ../../mod/admin.php:572
-msgid "Policies"
-msgstr "Políticas"
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1106
+msgid "Categories (comma-separated list)"
+msgstr "Categorias (lista separada por vírgulas)"
 
-#: ../../mod/admin.php:573
-msgid "Advanced"
-msgstr "Avançado"
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1120
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com"
 
-#: ../../mod/admin.php:574
-msgid "Performance"
-msgstr "Performance"
+#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
+#: ../../mod/profiles.php:133 ../../mod/profiles.php:160
+#: ../../mod/profiles.php:587
+msgid "Profile not found."
+msgstr "O perfil não foi encontrado."
 
-#: ../../mod/admin.php:575
+#: ../../mod/dfrn_confirm.php:119
 msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível."
-
-#: ../../mod/admin.php:579
-msgid "Site name"
-msgstr "Nome do site"
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado."
 
-#: ../../mod/admin.php:580
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "A resposta do site remoto não foi compreendida."
 
-#: ../../mod/admin.php:581
-msgid "Additional Info"
-msgstr "Informação adicional"
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "Resposta inesperada do site remoto: "
 
-#: ../../mod/admin.php:581
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at dir.friendica.com/siteinfo."
-msgstr "Para servidores públicos: você pode adicionar informações aqui que serão listadas em dir.friendica.com/siteinfo."
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "A confirmação foi completada com sucesso."
 
-#: ../../mod/admin.php:582
-msgid "System language"
-msgstr "Idioma do sistema"
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "O site remoto relatou: "
 
-#: ../../mod/admin.php:583
-msgid "System theme"
-msgstr "Tema do sistema"
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "Falha temporária. Por favor, aguarde e tente novamente."
 
-#: ../../mod/admin.php:583
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Tema padrão do sistema. Pode ser substituído nos perfis de usuário -  <a href='#' id='cnftheme'>alterar configurações do tema</a>"
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "Ocorreu uma falha na apresentação ou ela foi revogada."
 
-#: ../../mod/admin.php:584
-msgid "Mobile system theme"
-msgstr "Tema do sistema para dispositivos móveis"
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Não foi possível definir a foto do contato."
 
-#: ../../mod/admin.php:584
-msgid "Theme for mobile devices"
-msgstr "Tema para dispositivos móveis"
+#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:620
+#: ../../include/conversation.php:172
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s agora é amigo de %2$s"
 
-#: ../../mod/admin.php:585
-msgid "SSL link policy"
-msgstr "Política de link SSL"
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Não foi encontrado nenhum registro de usuário para '%s' "
 
-#: ../../mod/admin.php:585
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Determina se os links gerados devem ser forçados a utilizar SSL"
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "A chave de criptografia do nosso site está, aparentemente, bagunçada."
 
-#: ../../mod/admin.php:586
-msgid "Old style 'Share'"
-msgstr "Estilo antigo do 'Compartilhar' "
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Foi fornecida uma URL em branco ou não foi possível descriptografá-la."
 
-#: ../../mod/admin.php:586
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Desativa o elemento bbcode 'compartilhar' para repetir ítens."
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "O registro do contato não foi encontrado para você em seu site."
 
-#: ../../mod/admin.php:587
-msgid "Hide help entry from navigation menu"
-msgstr "Oculta a entrada 'Ajuda' do menu de navegação"
+#: ../../mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "A chave pública do site não está disponível no registro do contato para a URL %s"
 
-#: ../../mod/admin.php:587
+#: ../../mod/dfrn_confirm.php:638
 msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente."
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo."
 
-#: ../../mod/admin.php:588
-msgid "Single user instance"
-msgstr "Instância de usuário único"
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Não foi possível definir suas credenciais de contato no nosso sistema."
 
-#: ../../mod/admin.php:588
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Faça essa instância multiusuário ou usuário único para o usuário em questão"
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr "Não foi possível atualizar os detalhes do seu perfil em nosso sistema."
 
-#: ../../mod/admin.php:589
-msgid "Maximum image size"
-msgstr "Tamanho máximo da imagem"
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Conexão aceita em %s"
 
-#: ../../mod/admin.php:589
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Tamanho máximo, em bytes, das imagens enviadas. O padrão é 0, o que significa sem limites"
+#: ../../mod/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s se associou a %2$s"
 
-#: ../../mod/admin.php:590
-msgid "Maximum image length"
-msgstr "Tamanho máximo da imagem"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "O título do evento e a hora de início são obrigatórios."
 
-#: ../../mod/admin.php:590
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites."
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../mod/admin.php:591
-msgid "JPEG image quality"
-msgstr "Qualidade da imagem JPEG"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Editar o evento"
 
-#: ../../mod/admin.php:591
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade."
+#: ../../mod/events.php:335 ../../include/text.php:1633
+#: ../../include/text.php:1644
+msgid "link to source"
+msgstr "exibir a origem"
 
-#: ../../mod/admin.php:593
-msgid "Register policy"
-msgstr "Política de registro"
+#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127
+#: ../../boot.php:2003 ../../include/nav.php:79
+msgid "Events"
+msgstr "Eventos"
 
-#: ../../mod/admin.php:594
-msgid "Maximum Daily Registrations"
-msgstr "Registros Diários Máximos"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Criar um novo evento"
 
-#: ../../mod/admin.php:594
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
-msgstr "Se o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' ,  essa configuração não tem efeito."
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Anterior"
 
-#: ../../mod/admin.php:595
-msgid "Register text"
-msgstr "Texto de registro"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Próximo"
 
-#: ../../mod/admin.php:595
-msgid "Will be displayed prominently on the registration page."
-msgstr "Será exibido com destaque na página de registro."
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "hora:minuto"
 
-#: ../../mod/admin.php:596
-msgid "Accounts abandoned after x days"
-msgstr "Contas abandonadas após x dias"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Detalhes do evento"
 
-#: ../../mod/admin.php:596
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Não desperdiçará recursos do sistema captando de sites externos para contas abandonadas. Digite 0 para nenhum limite de tempo."
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "O formato é %s %s. O título e a data de início são obrigatórios."
 
-#: ../../mod/admin.php:597
-msgid "Allowed friend domains"
-msgstr "Domínios de amigos permitidos"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Início do evento:"
 
-#: ../../mod/admin.php:597
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Lista dos domínios que têm permissão para estabelecer amizades com esse site, separados por vírgula. Caracteres curinga são aceitos. Deixe em branco para permitir qualquer domínio."
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Obrigatório"
 
-#: ../../mod/admin.php:598
-msgid "Allowed email domains"
-msgstr "Domínios de e-mail permitidos"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "A data/hora de término não é conhecida ou não é relevante"
 
-#: ../../mod/admin.php:598
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Lista de domínios separados por vírgula, que são permitidos em endereços de e-mail para registro nesse site. Caracteres-curinga são aceitos. Vazio para aceitar qualquer domínio"
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Término do evento:"
 
-#: ../../mod/admin.php:599
-msgid "Block public"
-msgstr "Bloquear acesso público"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Ajustar para o fuso horário do visualizador"
 
-#: ../../mod/admin.php:599
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada."
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Descrição:"
 
-#: ../../mod/admin.php:600
-msgid "Force publish"
-msgstr "Forçar a listagem"
+#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1513
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:155
+msgid "Location:"
+msgstr "Localização:"
 
-#: ../../mod/admin.php:600
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Marque para forçar todos os perfis desse site a serem listados no diretório do site."
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Título:"
 
-#: ../../mod/admin.php:601
-msgid "Global directory update URL"
-msgstr "URL de atualização do diretório global"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Compartilhar este evento"
 
-#: ../../mod/admin.php:601
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr "URL para atualizar o diretório global. Se isso não for definido, o diretório global não estará disponível neste site."
+#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126
+#: ../../boot.php:1986 ../../include/nav.php:78
+msgid "Photos"
+msgstr "Fotos"
 
-#: ../../mod/admin.php:602
-msgid "Allow threaded items"
-msgstr "Habilita itens aninhados"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Arquivos"
 
-#: ../../mod/admin.php:602
-msgid "Allow infinite level threading for items on this site."
-msgstr "Habilita nível infinito de aninhamento (threading) para itens."
+#: ../../mod/home.php:34
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bem-vindo(a) a %s"
 
-#: ../../mod/admin.php:603
-msgid "Private posts by default for new users"
-msgstr "Publicações privadas por padrão para novos usuários"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Não existe informação disponível sobre a privacidade remota."
 
-#: ../../mod/admin.php:603
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas."
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Visível para:"
 
-#: ../../mod/admin.php:604
-msgid "Don't include post content in email notifications"
-msgstr "Não incluir o conteúdo da postagem nas notificações de email"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem."
 
-#: ../../mod/admin.php:604
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
-msgstr "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança."
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Não foi possível verificar a sua localização."
 
-#: ../../mod/admin.php:605
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Disabilita acesso público a addons listados no menu de aplicativos."
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Nenhum destinatário."
 
-#: ../../mod/admin.php:605
+#: ../../mod/wallmessage.php:143
+#, php-format
 msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente."
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos."
 
-#: ../../mod/admin.php:606
-msgid "Don't embed private images in posts"
-msgstr "Não inclua imagens privadas em publicações"
+#: ../../mod/nogroup.php:40 ../../mod/contacts.php:473
+#: ../../mod/contacts.php:665 ../../mod/viewcontacts.php:62
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Visitar o perfil de %s [%s]"
 
-#: ../../mod/admin.php:606
-msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo."
+#: ../../mod/nogroup.php:41 ../../mod/contacts.php:666
+msgid "Edit contact"
+msgstr "Editar o contato"
 
-#: ../../mod/admin.php:608
-msgid "Block multiple registrations"
-msgstr "Bloquear registros repetidos"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Contatos que não são membros de um grupo"
 
-#: ../../mod/admin.php:608
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Desabilitar o registro de contas adicionais para serem usadas como páginas."
+#: ../../mod/friendica.php:58
+msgid "This is Friendica, version"
+msgstr "Este é o Friendica, versão"
 
-#: ../../mod/admin.php:609
-msgid "OpenID support"
-msgstr "Suporte ao OpenID"
+#: ../../mod/friendica.php:59
+msgid "running at web location"
+msgstr "sendo executado no endereço web"
 
-#: ../../mod/admin.php:609
-msgid "OpenID support for registration and logins."
-msgstr "Suporte ao OpenID para registros e autenticações."
+#: ../../mod/friendica.php:61
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica."
 
-#: ../../mod/admin.php:610
-msgid "Fullname check"
-msgstr "Verificar nome completo"
+#: ../../mod/friendica.php:63
+msgid "Bug reports and issues: please visit"
+msgstr "Relatos e acompanhamentos de erros podem ser encontrados em"
 
-#: ../../mod/admin.php:610
+#: ../../mod/friendica.php:64
 msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Forçar os usuários a usar um espaço em branco entre o nome e o sobrenome, ao preencherem o nome completo no registro, como uma medida contra o spam"
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com"
 
-#: ../../mod/admin.php:611
-msgid "UTF-8 Regular expressions"
-msgstr "Expressões regulares UTF-8"
+#: ../../mod/friendica.php:78
+msgid "Installed plugins/addons/apps:"
+msgstr "Plugins/complementos/aplicações instaladas:"
 
-#: ../../mod/admin.php:611
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Use expressões regulares do PHP em UTF8"
+#: ../../mod/friendica.php:91
+msgid "No installed plugins/addons/apps"
+msgstr "Nenhum plugin/complemento/aplicativo instalado"
 
-#: ../../mod/admin.php:612
-msgid "Show Community Page"
-msgstr "Exibir a página da comunidade"
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Remover minha conta"
 
-#: ../../mod/admin.php:612
+#: ../../mod/removeme.php:47
 msgid ""
-"Display a Community page showing all recent public postings on this site."
-msgstr "Exibe uma página da Comunidade, mostrando todas as publicações recentes feitas nesse site."
-
-#: ../../mod/admin.php:613
-msgid "Enable OStatus support"
-msgstr "Habilitar suporte ao OStatus"
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la."
 
-#: ../../mod/admin.php:613
-msgid ""
-"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Fornece compatibilidade nativa ao OStatus (identi,.ca, status.net, etc.). Todas as comunicações via OStatus são públicas, por isso avisos de privacidade serão exibidos ocasionalmente."
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Por favor, digite a sua senha para verificação:"
 
-#: ../../mod/admin.php:614
-msgid "OStatus conversation completion interval"
-msgstr "Intervalo de finalização da conversação OStatus "
+#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "A imagem excede o limite de tamanho de %d"
 
-#: ../../mod/admin.php:614
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada."
+#: ../../mod/wall_upload.php:112 ../../mod/photos.php:805
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Não foi possível processar a imagem."
 
-#: ../../mod/admin.php:615
-msgid "Enable Diaspora support"
-msgstr "Habilitar suporte ao Diaspora"
+#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
+#: ../../mod/wall_upload.php:151 ../../mod/item.php:455
+#: ../../include/message.php:144
+msgid "Wall Photos"
+msgstr "Fotos do mural"
 
-#: ../../mod/admin.php:615
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Fornece compatibilidade nativa com a rede Diaspora."
+#: ../../mod/wall_upload.php:138 ../../mod/photos.php:832
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Não foi possível enviar a imagem."
 
-#: ../../mod/admin.php:616
-msgid "Only allow Friendica contacts"
-msgstr "Permitir somente contatos Friendica"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autorizar a conexão com a aplicação"
 
-#: ../../mod/admin.php:616
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Todos os contatos devem usar protocolos Friendica. Todos os outros protocolos de comunicação embarcados estão desabilitados"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Volte para a sua aplicação e digite este código de segurança:"
 
-#: ../../mod/admin.php:617
-msgid "Verify SSL"
-msgstr "Verificar SSL"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Por favor, autentique-se para continuar."
 
-#: ../../mod/admin.php:617
+#: ../../mod/api.php:104
 msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
-msgstr "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados."
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"
 
-#: ../../mod/admin.php:618
-msgid "Proxy user"
-msgstr "Usuário do proxy"
+#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s etiquetou %3$s de %2$s com %4$s"
 
-#: ../../mod/admin.php:619
-msgid "Proxy URL"
-msgstr "URL do proxy"
+#: ../../mod/photos.php:52 ../../boot.php:1989
+msgid "Photo Albums"
+msgstr "Álbuns de fotos"
 
-#: ../../mod/admin.php:620
-msgid "Network timeout"
-msgstr "Limite de tempo da rede"
+#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1062
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1756 ../../mod/photos.php:1768
+#: ../../view/theme/diabook/theme.php:499
+msgid "Contact Photos"
+msgstr "Fotos dos contatos"
 
-#: ../../mod/admin.php:620
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Valor em segundos. Defina como 0 para ilimitado (não recomendado)."
+#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815
+msgid "Upload New Photos"
+msgstr "Enviar novas fotos"
 
-#: ../../mod/admin.php:621
-msgid "Delivery interval"
-msgstr "Intervalo de envio"
+#: ../../mod/photos.php:80 ../../mod/settings.php:29
+msgid "everybody"
+msgstr "todos"
 
-#: ../../mod/admin.php:621
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Recomendado: 4-5 para servidores compartilhados (shared hosts), 2-3 para servidores privados virtuais (VPS). 0-1 para grandes servidores dedicados."
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
+msgstr "A informação de contato não está disponível"
 
-#: ../../mod/admin.php:622
-msgid "Poll interval"
-msgstr "Intervalo da busca (polling)"
+#: ../../mod/photos.php:155 ../../mod/photos.php:729 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74
+#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
+#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
+#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:500
+#: ../../include/user.php:334 ../../include/user.php:341
+#: ../../include/user.php:348
+msgid "Profile Photos"
+msgstr "Fotos do perfil"
 
-#: ../../mod/admin.php:622
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Se 0, use intervalo de entrega."
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "O álbum não foi encontrado."
 
-#: ../../mod/admin.php:623
-msgid "Maximum Load Average"
-msgstr "Média de Carga Máxima"
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Excluir o álbum"
 
-#: ../../mod/admin.php:623
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50."
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?"
 
-#: ../../mod/admin.php:625
-msgid "Use MySQL full text engine"
-msgstr "Use o engine de texto completo (full text) do MySQL"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511
+msgid "Delete Photo"
+msgstr "Excluir a foto"
 
-#: ../../mod/admin.php:625
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Ativa a engine de texto completo (full text). Acelera a busca - mas só pode buscar apenas por 4 ou mais caracteres."
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Você realmente deseja deletar essa foto?"
 
-#: ../../mod/admin.php:626
-msgid "Suppress Language"
-msgstr "Retira idioma"
+#: ../../mod/photos.php:660
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s foi marcado em %2$s por %3$s"
 
-#: ../../mod/admin.php:626
-msgid "Suppress language information in meta information about a posting."
-msgstr "Retira informações sobre idioma nas meta informações sobre uma publicação."
+#: ../../mod/photos.php:660
+msgid "a photo"
+msgstr "uma foto"
 
-#: ../../mod/admin.php:627
-msgid "Path to item cache"
-msgstr "Diretório do cache de item"
+#: ../../mod/photos.php:765
+msgid "Image exceeds size limit of "
+msgstr "A imagem excede o tamanho máximo de "
 
-#: ../../mod/admin.php:628
-msgid "Cache duration in seconds"
-msgstr "Duração do cache em segundos"
+#: ../../mod/photos.php:773
+msgid "Image file is empty."
+msgstr "O arquivo de imagem está vazio."
 
-#: ../../mod/admin.php:628
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day)."
-msgstr "Por quanto tempo o arquivo de caches deve ser guardado? Valor padrão é 86400 segundos (Um dia)."
+#: ../../mod/photos.php:928
+msgid "No photos selected"
+msgstr "Não foi selecionada nenhuma foto"
 
-#: ../../mod/admin.php:629
-msgid "Path for lock file"
-msgstr "Diretório do arquivo de trava"
+#: ../../mod/photos.php:1029 ../../mod/videos.php:226
+msgid "Access to this item is restricted."
+msgstr "O acesso a este item é restrito."
 
-#: ../../mod/admin.php:630
-msgid "Temp path"
-msgstr "Diretório Temp"
+#: ../../mod/photos.php:1092
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos."
 
-#: ../../mod/admin.php:631
-msgid "Base path to installation"
-msgstr "Diretório base para instalação"
+#: ../../mod/photos.php:1127
+msgid "Upload Photos"
+msgstr "Enviar fotos"
 
-#: ../../mod/admin.php:633
-msgid "New base url"
-msgstr "Nova URL base"
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Nome do novo álbum: "
 
-#: ../../mod/admin.php:651
-msgid "Update has been marked successful"
-msgstr "A atualização foi marcada como bem sucedida"
+#: ../../mod/photos.php:1132
+msgid "or existing album name: "
+msgstr "ou o nome de um álbum já existente: "
 
-#: ../../mod/admin.php:661
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "Ocorreu um erro na execução de %s. Verifique os relatórios do sistema."
+#: ../../mod/photos.php:1133
+msgid "Do not show a status post for this upload"
+msgstr "Não exiba uma publicação de status para este envio"
 
-#: ../../mod/admin.php:664
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "A atualização %s foi aplicada com sucesso."
+#: ../../mod/photos.php:1135 ../../mod/photos.php:1506
+msgid "Permissions"
+msgstr "Permissões"
 
-#: ../../mod/admin.php:668
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso."
+#: ../../mod/photos.php:1144 ../../mod/photos.php:1515
+#: ../../mod/settings.php:1139
+msgid "Show to Groups"
+msgstr "Mostre para Grupos"
 
-#: ../../mod/admin.php:671
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "Não foi possível encontrar a função de atualização %s."
+#: ../../mod/photos.php:1145 ../../mod/photos.php:1516
+#: ../../mod/settings.php:1140
+msgid "Show to Contacts"
+msgstr "Mostre para Contatos"
 
-#: ../../mod/admin.php:686
-msgid "No failed updates."
-msgstr "Nenhuma atualização com falha."
+#: ../../mod/photos.php:1146
+msgid "Private Photo"
+msgstr "Foto Privada"
 
-#: ../../mod/admin.php:690
-msgid "Failed Updates"
-msgstr "Atualizações com falha"
+#: ../../mod/photos.php:1147
+msgid "Public Photo"
+msgstr "Foto Pública"
 
-#: ../../mod/admin.php:691
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Isso não inclue atualizações antes da 1139, as quais não retornavam um status."
+#: ../../mod/photos.php:1214
+msgid "Edit Album"
+msgstr "Editar o álbum"
 
-#: ../../mod/admin.php:692
-msgid "Mark success (if update was manually applied)"
-msgstr "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)"
+#: ../../mod/photos.php:1220
+msgid "Show Newest First"
+msgstr "Exibir as mais recentes primeiro"
 
-#: ../../mod/admin.php:693
-msgid "Attempt to execute this update step automatically"
-msgstr "Tentar executar esse passo da atualização automaticamente"
+#: ../../mod/photos.php:1222
+msgid "Show Oldest First"
+msgstr "Exibir as mais antigas primeiro"
 
-#: ../../mod/admin.php:739
-msgid "Registration successful. Email send to user"
-msgstr "Registro bem sucedido. Email enviado ao usuário."
+#: ../../mod/photos.php:1255 ../../mod/photos.php:1798
+msgid "View Photo"
+msgstr "Ver a foto"
 
-#: ../../mod/admin.php:749
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s usuário bloqueado/desbloqueado"
-msgstr[1] "%s usuários bloqueados/desbloqueados"
+#: ../../mod/photos.php:1290
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permissão negada. O acesso a este item pode estar restrito."
 
-#: ../../mod/admin.php:756
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s usuário excluído"
-msgstr[1] "%s usuários excluídos"
+#: ../../mod/photos.php:1292
+msgid "Photo not available"
+msgstr "A foto não está disponível"
 
-#: ../../mod/admin.php:795
-#, php-format
-msgid "User '%s' deleted"
-msgstr "O usuário '%s' foi excluído"
+#: ../../mod/photos.php:1348
+msgid "View photo"
+msgstr "Ver a imagem"
 
-#: ../../mod/admin.php:803
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "O usuário '%s' foi desbloqueado"
+#: ../../mod/photos.php:1348
+msgid "Edit photo"
+msgstr "Editar a foto"
 
-#: ../../mod/admin.php:803
-#, php-format
-msgid "User '%s' blocked"
-msgstr "O usuário '%s' foi bloqueado"
+#: ../../mod/photos.php:1349
+msgid "Use as profile photo"
+msgstr "Usar como uma foto de perfil"
 
-#: ../../mod/admin.php:894
-msgid "Add User"
-msgstr "Adicionar usuário"
+#: ../../mod/photos.php:1374
+msgid "View Full Size"
+msgstr "Ver no tamanho real"
 
-#: ../../mod/admin.php:895
-msgid "select all"
-msgstr "selecionar todos"
+#: ../../mod/photos.php:1453
+msgid "Tags: "
+msgstr "Etiquetas: "
 
-#: ../../mod/admin.php:896
-msgid "User registrations waiting for confirm"
-msgstr "Registros de usuário aguardando confirmação"
+#: ../../mod/photos.php:1456
+msgid "[Remove any tag]"
+msgstr "[Remover qualquer etiqueta]"
 
-#: ../../mod/admin.php:897
-msgid "User waiting for permanent deletion"
-msgstr "Usuário aguardando por fim permanente da conta."
+#: ../../mod/photos.php:1496
+msgid "Rotate CW (right)"
+msgstr "Rotacionar para direita"
 
-#: ../../mod/admin.php:898
-msgid "Request date"
-msgstr "Solicitar data"
+#: ../../mod/photos.php:1497
+msgid "Rotate CCW (left)"
+msgstr "Rotacionar para esquerda"
 
-#: ../../mod/admin.php:898 ../../mod/admin.php:910 ../../mod/admin.php:911
-#: ../../mod/admin.php:924 ../../mod/crepair.php:148
-#: ../../mod/settings.php:599 ../../mod/settings.php:625
-msgid "Name"
-msgstr "Nome"
+#: ../../mod/photos.php:1499
+msgid "New album name"
+msgstr "Novo nome para o álbum"
 
-#: ../../mod/admin.php:898 ../../mod/admin.php:910 ../../mod/admin.php:911
-#: ../../mod/admin.php:926 ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
-msgstr "E-mail"
+#: ../../mod/photos.php:1502
+msgid "Caption"
+msgstr "Legenda"
 
-#: ../../mod/admin.php:899
-msgid "No registrations."
-msgstr "Nenhum registro."
+#: ../../mod/photos.php:1504
+msgid "Add a Tag"
+msgstr "Adicionar uma etiqueta"
 
-#: ../../mod/admin.php:900 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:208
-msgid "Approve"
-msgstr "Aprovar"
+#: ../../mod/photos.php:1508
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento"
 
-#: ../../mod/admin.php:901
-msgid "Deny"
-msgstr "Negar"
+#: ../../mod/photos.php:1517
+msgid "Private photo"
+msgstr "Foto privada"
 
-#: ../../mod/admin.php:903 ../../mod/contacts.php:353
-#: ../../mod/contacts.php:412
-msgid "Block"
-msgstr "Bloquear"
+#: ../../mod/photos.php:1518
+msgid "Public photo"
+msgstr "Foto pública"
 
-#: ../../mod/admin.php:904 ../../mod/contacts.php:353
-#: ../../mod/contacts.php:412
-msgid "Unblock"
-msgstr "Desbloquear"
+#: ../../mod/photos.php:1540 ../../include/conversation.php:1088
+msgid "Share"
+msgstr "Compartilhar"
 
-#: ../../mod/admin.php:905
-msgid "Site admin"
-msgstr "Administração do site"
+#: ../../mod/photos.php:1804 ../../mod/videos.php:308
+msgid "View Album"
+msgstr "Ver álbum"
 
-#: ../../mod/admin.php:906
-msgid "Account expired"
-msgstr "Conta expirou"
+#: ../../mod/photos.php:1813
+msgid "Recent Photos"
+msgstr "Fotos recentes"
 
-#: ../../mod/admin.php:909
-msgid "New User"
-msgstr "Novo usuário"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Nenhum perfil"
 
-#: ../../mod/admin.php:910 ../../mod/admin.php:911
-msgid "Register date"
-msgstr "Data de registro"
+#: ../../mod/register.php:100
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações."
 
-#: ../../mod/admin.php:910 ../../mod/admin.php:911
-msgid "Last login"
-msgstr "Última entrada"
+#: ../../mod/register.php:104
+msgid "Failed to send email message. Here is the message that failed."
+msgstr "Não foi possível enviar a mensagem de e-mail. Aqui está a mensagem que não foi."
 
-#: ../../mod/admin.php:910 ../../mod/admin.php:911
-msgid "Last item"
-msgstr "Último item"
+#: ../../mod/register.php:109
+msgid "Your registration can not be processed."
+msgstr "Não foi possível processar o seu registro."
 
-#: ../../mod/admin.php:910
-msgid "Deleted since"
-msgstr "Apagado desde"
+#: ../../mod/register.php:149
+#, php-format
+msgid "Registration request at %s"
+msgstr "Solicitação de registro em %s"
 
-#: ../../mod/admin.php:911
-msgid "Account"
-msgstr "Conta"
+#: ../../mod/register.php:158
+msgid "Your registration is pending approval by the site owner."
+msgstr "A aprovação do seu registro está pendente junto ao administrador do site."
 
-#: ../../mod/admin.php:913
+#: ../../mod/register.php:196 ../../mod/uimport.php:50
 msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?"
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã."
 
-#: ../../mod/admin.php:914
+#: ../../mod/register.php:224
 msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?"
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'."
 
-#: ../../mod/admin.php:924
-msgid "Name of the new user."
-msgstr "Nome do novo usuários."
+#: ../../mod/register.php:225
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens."
 
-#: ../../mod/admin.php:925
-msgid "Nickname"
-msgstr "Apelido"
+#: ../../mod/register.php:226
+msgid "Your OpenID (optional): "
+msgstr "Seu OpenID (opcional): "
 
-#: ../../mod/admin.php:925
-msgid "Nickname of the new user."
-msgstr "Apelido para o novo usuário."
+#: ../../mod/register.php:240
+msgid "Include your profile in member directory?"
+msgstr "Incluir o seu perfil no diretório de membros?"
 
-#: ../../mod/admin.php:926
-msgid "Email address of the new user."
-msgstr "Endereço de e-mail do novo usuário."
+#: ../../mod/register.php:261
+msgid "Membership on this site is by invitation only."
+msgstr "A associação a este site só pode ser feita mediante convite."
 
-#: ../../mod/admin.php:959
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "O plugin %s foi desabilitado."
+#: ../../mod/register.php:262
+msgid "Your invitation ID: "
+msgstr "A ID do seu convite: "
 
-#: ../../mod/admin.php:963
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "O plugin %s foi habilitado."
+#: ../../mod/register.php:273
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Seu nome completo (ex: José da Silva): "
 
-#: ../../mod/admin.php:973 ../../mod/admin.php:1176
-msgid "Disable"
-msgstr "Desabilitar"
+#: ../../mod/register.php:274
+msgid "Your Email Address: "
+msgstr "Seu endereço de e-mail: "
 
-#: ../../mod/admin.php:975 ../../mod/admin.php:1178
-msgid "Enable"
-msgstr "Habilitar"
+#: ../../mod/register.php:275
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será '<strong>identificação@$sitename</strong>'"
 
-#: ../../mod/admin.php:998 ../../mod/admin.php:1206
-msgid "Toggle"
-msgstr "Alternar"
+#: ../../mod/register.php:276
+msgid "Choose a nickname: "
+msgstr "Escolha uma identificação: "
 
-#: ../../mod/admin.php:1006 ../../mod/admin.php:1216
-msgid "Author: "
-msgstr "Autor: "
+#: ../../mod/register.php:279 ../../boot.php:1136 ../../include/nav.php:108
+msgid "Register"
+msgstr "Registrar"
 
-#: ../../mod/admin.php:1007 ../../mod/admin.php:1217
-msgid "Maintainer: "
-msgstr "Mantenedor: "
+#: ../../mod/register.php:285 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Importar"
 
-#: ../../mod/admin.php:1136
-msgid "No themes found."
-msgstr "Nenhum tema encontrado"
+#: ../../mod/register.php:286
+msgid "Import your profile to this friendica instance"
+msgstr "Importa seu perfil  desta instância do friendica"
 
-#: ../../mod/admin.php:1198
-msgid "Screenshot"
-msgstr "Captura de tela"
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
+msgstr "Não foi encontrada nenhuma conta válida."
 
-#: ../../mod/admin.php:1244
-msgid "[Experimental]"
-msgstr "[Esperimental]"
+#: ../../mod/lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail."
 
-#: ../../mod/admin.php:1245
-msgid "[Unsupported]"
-msgstr "[Não suportado]"
+#: ../../mod/lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Foi feita uma solicitação de reiniciação da senha em %s"
 
-#: ../../mod/admin.php:1272
-msgid "Log settings updated."
-msgstr "As configurações de relatórios foram atualizadas."
+#: ../../mod/lostpass.php:66
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada."
 
-#: ../../mod/admin.php:1328
-msgid "Clear"
-msgstr "Limpar"
+#: ../../mod/lostpass.php:84 ../../boot.php:1175
+msgid "Password Reset"
+msgstr "Reiniciar a senha"
 
-#: ../../mod/admin.php:1334
-msgid "Enable Debugging"
-msgstr "Habilitar Debugging"
+#: ../../mod/lostpass.php:85
+msgid "Your password has been reset as requested."
+msgstr "Sua senha foi reiniciada, conforme solicitado."
 
-#: ../../mod/admin.php:1335
-msgid "Log file"
-msgstr "Arquivo do relatório"
+#: ../../mod/lostpass.php:86
+msgid "Your new password is"
+msgstr "Sua nova senha é"
 
-#: ../../mod/admin.php:1335
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "O servidor web precisa ter permissão de escrita. Relativa ao diretório raiz do seu Friendica."
+#: ../../mod/lostpass.php:87
+msgid "Save or copy your new password - and then"
+msgstr "Grave ou copie a sua nova senha e, então"
 
-#: ../../mod/admin.php:1336
-msgid "Log level"
-msgstr "Nível do relatório"
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
+msgstr "clique aqui para entrar"
 
-#: ../../mod/admin.php:1385 ../../mod/contacts.php:409
-msgid "Update now"
-msgstr "Atualizar agora"
+#: ../../mod/lostpass.php:89
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil."
 
-#: ../../mod/admin.php:1386
-msgid "Close"
-msgstr "Fechar"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Sua senha foi modifica às %s"
 
-#: ../../mod/admin.php:1392
-msgid "FTP Host"
-msgstr "Endereço do FTP"
-
-#: ../../mod/admin.php:1393
-msgid "FTP Path"
-msgstr "Caminho do FTP"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Esqueceu a sua senha?"
 
-#: ../../mod/admin.php:1394
-msgid "FTP User"
-msgstr "Usuário do FTP"
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções."
 
-#: ../../mod/admin.php:1395
-msgid "FTP Password"
-msgstr "Senha do FTP"
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
+msgstr "Identificação ou e-mail: "
 
-#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:927
-#: ../../include/text.php:928 ../../include/nav.php:118
-msgid "Search"
-msgstr "Pesquisar"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Reiniciar"
 
-#: ../../mod/_search.php:180 ../../mod/_search.php:206
-#: ../../mod/search.php:179 ../../mod/search.php:205
-#: ../../mod/community.php:61 ../../mod/community.php:91
-msgid "No results."
-msgstr "Nenhum resultado."
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Sistema em manutenção"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Dicas para novos membros"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "O item não está disponível."
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "ligação"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "O item não foi encontrado."
 
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s etiquetou %3$s de %2$s com %4$s"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Aplicativos"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "O item não foi encontrado"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Nenhum aplicativo instalado"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Editar a publicação"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Ajuda:"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1082
-msgid "upload photo"
-msgstr "upload de foto"
+#: ../../mod/help.php:84 ../../include/nav.php:113
+msgid "Help"
+msgstr "Ajuda"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1083
-msgid "Attach file"
-msgstr "Anexar arquivo"
+#: ../../mod/contacts.php:104
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d contato editado"
+msgstr[1] "%d contatos editados"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1084
-msgid "attach file"
-msgstr "anexar arquivo"
+#: ../../mod/contacts.php:135 ../../mod/contacts.php:264
+msgid "Could not access contact record."
+msgstr "Não foi possível acessar o registro do contato."
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1086
-msgid "web link"
-msgstr "link web"
+#: ../../mod/contacts.php:149
+msgid "Could not locate selected profile."
+msgstr "Não foi possível localizar o perfil selecionado."
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1087
-msgid "Insert video link"
-msgstr "Inserir link de vídeo"
+#: ../../mod/contacts.php:178
+msgid "Contact updated."
+msgstr "O contato foi atualizado."
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1088
-msgid "video link"
-msgstr "link de vídeo"
+#: ../../mod/contacts.php:278
+msgid "Contact has been blocked"
+msgstr "O contato foi bloqueado"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1089
-msgid "Insert audio link"
-msgstr "Inserir link de áudio"
+#: ../../mod/contacts.php:278
+msgid "Contact has been unblocked"
+msgstr "O contato foi desbloqueado"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1090
-msgid "audio link"
-msgstr "link de áudio"
+#: ../../mod/contacts.php:288
+msgid "Contact has been ignored"
+msgstr "O contato foi ignorado"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1091
-msgid "Set your location"
-msgstr "Definir sua localização"
+#: ../../mod/contacts.php:288
+msgid "Contact has been unignored"
+msgstr "O contato deixou de ser ignorado"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1092
-msgid "set location"
-msgstr "configure localização"
+#: ../../mod/contacts.php:299
+msgid "Contact has been archived"
+msgstr "O contato foi arquivado"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1093
-msgid "Clear browser location"
-msgstr "Limpar a localização do navegador"
+#: ../../mod/contacts.php:299
+msgid "Contact has been unarchived"
+msgstr "O contato foi desarquivado"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1094
-msgid "clear location"
-msgstr "apague localização"
+#: ../../mod/contacts.php:324 ../../mod/contacts.php:697
+msgid "Do you really want to delete this contact?"
+msgstr "Você realmente deseja deletar esse contato?"
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1100
-msgid "Permission settings"
-msgstr "Configurações de permissão"
+#: ../../mod/contacts.php:341
+msgid "Contact has been removed."
+msgstr "O contato foi removido."
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1109
-msgid "CC: email addresses"
-msgstr "CC: endereço de e-mail"
+#: ../../mod/contacts.php:379
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Você possui uma amizade mútua com %s"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1110
-msgid "Public post"
-msgstr "Publicação pública"
+#: ../../mod/contacts.php:383
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Você está compartilhando com %s"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1096
-msgid "Set title"
-msgstr "Definir o título"
+#: ../../mod/contacts.php:388
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s está compartilhando com você"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1098
-msgid "Categories (comma-separated list)"
-msgstr "Categorias (lista separada por vírgulas)"
+#: ../../mod/contacts.php:405
+msgid "Private communications are not available for this contact."
+msgstr "As comunicações privadas não estão disponíveis para este contato."
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1112
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com"
+#: ../../mod/contacts.php:412
+msgid "(Update was successful)"
+msgstr "(A atualização foi bem sucedida)"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "O item não está disponível."
+#: ../../mod/contacts.php:412
+msgid "(Update was not successful)"
+msgstr "(A atualização não foi bem sucedida)"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "O item não foi encontrado."
+#: ../../mod/contacts.php:414
+msgid "Suggest friends"
+msgstr "Sugerir amigos"
 
-#: ../../mod/regmod.php:63
-msgid "Account approved."
-msgstr "A conta foi aprovada."
+#: ../../mod/contacts.php:418
+#, php-format
+msgid "Network type: %s"
+msgstr "Tipo de rede: %s"
 
-#: ../../mod/regmod.php:100
+#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199
 #, php-format
-msgid "Registration revoked for %s"
-msgstr "O registro de %s foi revogado"
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d contato em comum"
+msgstr[1] "%d contatos em comum"
 
-#: ../../mod/regmod.php:112
-msgid "Please login."
-msgstr "Por favor, autentique-se."
+#: ../../mod/contacts.php:426
+msgid "View all contacts"
+msgstr "Ver todos os contatos"
 
-#: ../../mod/directory.php:57
-msgid "Find on this site"
-msgstr "Pesquisar neste site"
+#: ../../mod/contacts.php:434
+msgid "Toggle Blocked status"
+msgstr "Alternar o status de bloqueio"
 
-#: ../../mod/directory.php:59 ../../mod/contacts.php:612
-msgid "Finding: "
-msgstr "Pesquisando: "
+#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
+#: ../../mod/contacts.php:701
+msgid "Unignore"
+msgstr "Deixar de ignorar"
 
-#: ../../mod/directory.php:60
-msgid "Site Directory"
-msgstr "Diretório do site"
+#: ../../mod/contacts.php:440
+msgid "Toggle Ignored status"
+msgstr "Alternar o status de ignorado"
 
-#: ../../mod/directory.php:61 ../../mod/contacts.php:613
-#: ../../include/contact_widgets.php:33
-msgid "Find"
-msgstr "Pesquisar"
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
+msgid "Unarchive"
+msgstr "Desarquivar"
 
-#: ../../mod/directory.php:111 ../../mod/profiles.php:686
-msgid "Age: "
-msgstr "Idade: "
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
+msgid "Archive"
+msgstr "Arquivar"
 
-#: ../../mod/directory.php:114
-msgid "Gender: "
-msgstr "Gênero: "
+#: ../../mod/contacts.php:447
+msgid "Toggle Archive status"
+msgstr "Alternar o status de arquivamento"
 
-#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "Sobre:"
+#: ../../mod/contacts.php:450
+msgid "Repair"
+msgstr "Reparar"
 
-#: ../../mod/directory.php:187
-msgid "No entries (some entries may be hidden)."
-msgstr "Nenhuma entrada (algumas entradas podem estar ocultas)."
+#: ../../mod/contacts.php:453
+msgid "Advanced Contact Settings"
+msgstr "Configurações avançadas do contato"
 
-#: ../../mod/crepair.php:102
-msgid "Contact settings applied."
-msgstr "As configurações do contato foram aplicadas."
+#: ../../mod/contacts.php:459
+msgid "Communications lost with this contact!"
+msgstr "As comunicações com esse contato foram perdidas!"
 
-#: ../../mod/crepair.php:104
-msgid "Contact update failed."
-msgstr "Não foi possível atualizar o contato."
+#: ../../mod/contacts.php:462
+msgid "Contact Editor"
+msgstr "Editor de contatos"
 
-#: ../../mod/crepair.php:135
-msgid "Repair Contact Settings"
-msgstr "Corrigir configurações do contato"
+#: ../../mod/contacts.php:465
+msgid "Profile Visibility"
+msgstr "Visibilidade do perfil"
 
-#: ../../mod/crepair.php:137
+#: ../../mod/contacts.php:466
+#, php-format
 msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar."
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro."
 
-#: ../../mod/crepair.php:138
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo."
+#: ../../mod/contacts.php:467
+msgid "Contact Information / Notes"
+msgstr "Informações sobre o contato / Anotações"
 
-#: ../../mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr "Voltar ao editor de contatos"
+#: ../../mod/contacts.php:468
+msgid "Edit contact notes"
+msgstr "Editar as anotações do contato"
 
-#: ../../mod/crepair.php:149
-msgid "Account Nickname"
-msgstr "Identificação da conta"
+#: ../../mod/contacts.php:474
+msgid "Block/Unblock contact"
+msgstr "Bloquear/desbloquear o contato"
 
-#: ../../mod/crepair.php:150
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - sobrescreve Nome/Identificação"
+#: ../../mod/contacts.php:475
+msgid "Ignore contact"
+msgstr "Ignorar o contato"
 
-#: ../../mod/crepair.php:151
-msgid "Account URL"
-msgstr "URL da conta"
+#: ../../mod/contacts.php:476
+msgid "Repair URL settings"
+msgstr "Reparar as definições de URL"
 
-#: ../../mod/crepair.php:152
-msgid "Friend Request URL"
-msgstr "URL da requisição de amizade"
+#: ../../mod/contacts.php:477
+msgid "View conversations"
+msgstr "Ver as conversas"
 
-#: ../../mod/crepair.php:153
-msgid "Friend Confirm URL"
-msgstr "URL da confirmação de amizade"
+#: ../../mod/contacts.php:479
+msgid "Delete contact"
+msgstr "Excluir o contato"
 
-#: ../../mod/crepair.php:154
-msgid "Notification Endpoint URL"
-msgstr "URL do ponto final da notificação"
+#: ../../mod/contacts.php:483
+msgid "Last update:"
+msgstr "Última atualização:"
 
-#: ../../mod/crepair.php:155
-msgid "Poll/Feed URL"
-msgstr "URL do captador/fonte de notícias"
+#: ../../mod/contacts.php:485
+msgid "Update public posts"
+msgstr "Atualizar publicações públicas"
 
-#: ../../mod/crepair.php:156
-msgid "New photo from this URL"
-msgstr "Nova imagem desta URL"
+#: ../../mod/contacts.php:494
+msgid "Currently blocked"
+msgstr "Atualmente bloqueado"
+
+#: ../../mod/contacts.php:495
+msgid "Currently ignored"
+msgstr "Atualmente ignorado"
+
+#: ../../mod/contacts.php:496
+msgid "Currently archived"
+msgstr "Atualmente arquivado"
+
+#: ../../mod/contacts.php:497
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Respostas/gostadas associados às suas publicações <strong>ainda podem</strong> estar visíveis"
+
+#: ../../mod/contacts.php:498
+msgid "Notification for new posts"
+msgstr "Notificações para novas publicações"
+
+#: ../../mod/contacts.php:498
+msgid "Send a notification of every new post of this contact"
+msgstr "Envie uma notificação para todos as novas publicações deste contato"
+
+#: ../../mod/contacts.php:499
+msgid "Fetch further information for feeds"
+msgstr "Pega mais informações para feeds"
+
+#: ../../mod/contacts.php:550
+msgid "Suggestions"
+msgstr "Sugestões"
+
+#: ../../mod/contacts.php:553
+msgid "Suggest potential friends"
+msgstr "Sugerir amigos em potencial"
+
+#: ../../mod/contacts.php:556 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Todos os contatos"
+
+#: ../../mod/contacts.php:559
+msgid "Show all contacts"
+msgstr "Exibe todos os contatos"
+
+#: ../../mod/contacts.php:562
+msgid "Unblocked"
+msgstr "Desbloquear"
+
+#: ../../mod/contacts.php:565
+msgid "Only show unblocked contacts"
+msgstr "Exibe somente contatos desbloqueados"
+
+#: ../../mod/contacts.php:569
+msgid "Blocked"
+msgstr "Bloqueado"
+
+#: ../../mod/contacts.php:572
+msgid "Only show blocked contacts"
+msgstr "Exibe somente contatos bloqueados"
+
+#: ../../mod/contacts.php:576
+msgid "Ignored"
+msgstr "Ignorados"
+
+#: ../../mod/contacts.php:579
+msgid "Only show ignored contacts"
+msgstr "Exibe somente contatos ignorados"
+
+#: ../../mod/contacts.php:583
+msgid "Archived"
+msgstr "Arquivados"
+
+#: ../../mod/contacts.php:586
+msgid "Only show archived contacts"
+msgstr "Exibe somente contatos arquivados"
+
+#: ../../mod/contacts.php:590
+msgid "Hidden"
+msgstr "Ocultos"
+
+#: ../../mod/contacts.php:593
+msgid "Only show hidden contacts"
+msgstr "Exibe somente contatos ocultos"
+
+#: ../../mod/contacts.php:641
+msgid "Mutual Friendship"
+msgstr "Amizade mútua"
+
+#: ../../mod/contacts.php:645
+msgid "is a fan of yours"
+msgstr "é um fã seu"
+
+#: ../../mod/contacts.php:649
+msgid "you are a fan of"
+msgstr "você é um fã de"
+
+#: ../../mod/contacts.php:688 ../../view/theme/diabook/theme.php:125
+#: ../../include/nav.php:173
+msgid "Contacts"
+msgstr "Contatos"
+
+#: ../../mod/contacts.php:692
+msgid "Search your contacts"
+msgstr "Pesquisar seus contatos"
+
+#: ../../mod/contacts.php:693 ../../mod/directory.php:59
+msgid "Finding: "
+msgstr "Pesquisando: "
+
+#: ../../mod/contacts.php:694 ../../mod/directory.php:61
+#: ../../include/contact_widgets.php:33
+msgid "Find"
+msgstr "Pesquisar"
+
+#: ../../mod/contacts.php:699 ../../mod/settings.php:132
+#: ../../mod/settings.php:635
+msgid "Update"
+msgstr "Atualizar"
+
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Nenhum vídeo selecionado"
+
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Vídeos Recentes"
+
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Envie Novos Vídeos"
+
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Amigos em Comum"
+
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Nenhum contato em comum."
+
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "O contato foi adicionado"
 
 #: ../../mod/uimport.php:66
 msgid "Move account"
@@ -3029,1407 +3049,1935 @@ msgid ""
 "select \"Export account\""
 msgstr "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\""
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Não existe informação disponível sobre a privacidade remota."
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s está seguindo %2$s's %3$s"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Visível para:"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Amigos de %s"
 
-#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:930
-msgid "Save"
-msgstr "Salvar"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Nenhum amigo para exibir."
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Ajuda:"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "A etiqueta foi removida"
 
-#: ../../mod/help.php:84 ../../include/nav.php:113
-msgid "Help"
-msgstr "Ajuda"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Remover a etiqueta do item"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Nenhum perfil"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Selecione uma etiqueta para remover: "
 
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
-msgstr "Esta apresentação já foi aceita."
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133
+msgid "Remove"
+msgstr "Remover"
 
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "A localização do perfil não é válida ou não contém uma informação de perfil."
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Bemvindo ao Friendica"
 
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono."
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Dicas para os novos membros"
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
-msgid "Warning: profile location has no profile photo."
-msgstr "Aviso: a localização do perfil não possui nenhuma foto do perfil."
+#: ../../mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente."
 
-#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "O parâmetro requerido %d não foi encontrado na localização fornecida"
-msgstr[1] "Os parâmetros requeridos %d não foram encontrados na localização fornecida"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Do Início"
 
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
-msgstr "A apresentação foi finalizada."
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Passo-a-passo da friendica"
 
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
-msgstr "Ocorreu um erro irrecuperável de protocolo."
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar."
 
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
-msgstr "O perfil não está disponível."
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Ir para as suas configurações"
 
-#: ../../mod/dfrn_request.php:262
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s recebeu solicitações de conexão em excesso hoje."
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre."
 
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
-msgstr "As medidas de proteção contra spam foram ativadas."
+#: ../../mod/newmember.php:28
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você."
 
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Os amigos foram notificados para tentar novamente em 24 horas."
+#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1979
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
+#: ../../include/nav.php:77
+msgid "Profile"
+msgstr "Perfil "
 
-#: ../../mod/dfrn_request.php:326
-msgid "Invalid locator"
-msgstr "Localizador inválido"
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Enviar foto do perfil"
 
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr "Endereço de e-mail inválido."
+#: ../../mod/newmember.php:36
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem."
 
-#: ../../mod/dfrn_request.php:362
-msgid "This account has not been configured for email. Request failed."
-msgstr "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação."
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Editar seu perfil"
 
-#: ../../mod/dfrn_request.php:458
-msgid "Unable to resolve your name at the provided location."
-msgstr "Não foi possível encontrar a sua identificação no endereço indicado."
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos."
 
-#: ../../mod/dfrn_request.php:471
-msgid "You have already introduced yourself here."
-msgstr "Você já fez a sua apresentação aqui."
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Palavras-chave do perfil"
 
-#: ../../mod/dfrn_request.php:475
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Aparentemente você já é amigo de %s."
+#: ../../mod/newmember.php:40
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades."
 
-#: ../../mod/dfrn_request.php:496
-msgid "Invalid profile URL."
-msgstr "URL de perfil inválida."
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Conexões"
 
-#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "URL de perfil não permitida."
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124
-msgid "Failed to update contact record."
-msgstr "Não foi possível atualizar o registro do contato."
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
+msgstr "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook."
 
-#: ../../mod/dfrn_request.php:592
-msgid "Your introduction has been sent."
-msgstr "A sua apresentação foi enviada."
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>Se</em> esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre."
 
-#: ../../mod/dfrn_request.php:645
-msgid "Please login to confirm introduction."
-msgstr "Por favor, autentique-se para confirmar a apresentação."
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importação de e-mails"
 
-#: ../../mod/dfrn_request.php:659
+#: ../../mod/newmember.php:56
 msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil."
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail"
 
-#: ../../mod/dfrn_request.php:670
-msgid "Hide this contact"
-msgstr "Ocultar este contato"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Ir para a sua página de contatos"
 
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Welcome home %s."
-msgstr "Bem-vindo(a) à sua página pessoal %s."
+#: ../../mod/newmember.php:58
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>."
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Por favor, confirme sua solicitação de apresentação/conexão para %s."
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Ir para o diretório do seu site"
 
-#: ../../mod/dfrn_request.php:675
-msgid "Confirm"
-msgstr "Confirmar"
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado."
 
-#: ../../mod/dfrn_request.php:716 ../../include/items.php:3504
-msgid "[Name Withheld]"
-msgstr "[Nome não revelado]"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Pesquisar por novas pessoas"
 
-#: ../../mod/dfrn_request.php:811
+#: ../../mod/newmember.php:62
 msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:"
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas."
 
-#: ../../mod/dfrn_request.php:827
-msgid "<strike>Connect as an email follower</strike> (Coming soon)"
-msgstr "<strike>Conectar como um acompanhante por e-mail</strike> (Em breve)"
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Grupos"
 
-#: ../../mod/dfrn_request.php:829
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Agrupe seus contatos"
+
+#: ../../mod/newmember.php:70
 msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
-" Friendica site and join us today</a>."
-msgstr "Caso você ainda não seja membro da rede social livre, <a href=\"http://dir.friendica.com/siteinfo\">clique aqui para encontrar um site Friendica público e junte-se à nós</a>."
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede."
 
-#: ../../mod/dfrn_request.php:832
-msgid "Friend/Connection Request"
-msgstr "Solicitação de amizade/conexão"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Por que as minhas publicações não são públicas?"
 
-#: ../../mod/dfrn_request.php:833
+#: ../../mod/newmember.php:73
 msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima."
 
-#: ../../mod/dfrn_request.php:834
-msgid "Please answer the following:"
-msgstr "Por favor, entre com as informações solicitadas:"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Obtendo ajuda"
 
-#: ../../mod/dfrn_request.php:835
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Ir para a seção de ajuda"
+
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Nossas páginas de <strong>ajuda</strong> podem ser consultadas para mais detalhes sobre características e recursos do programa."
+
+#: ../../mod/search.php:21 ../../mod/network.php:179
+msgid "Remove term"
+msgstr "Remover o termo"
+
+#: ../../mod/search.php:30 ../../mod/network.php:188
+#: ../../include/features.php:42
+msgid "Saved Searches"
+msgstr "Pesquisas salvas"
+
+#: ../../mod/search.php:99 ../../include/text.php:951
+#: ../../include/text.php:952 ../../include/nav.php:118
+msgid "Search"
+msgstr "Pesquisar"
+
+#: ../../mod/search.php:170 ../../mod/search.php:196
+#: ../../mod/community.php:62 ../../mod/community.php:89
+msgid "No results."
+msgstr "Nenhum resultado."
+
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Limite de convites totais excedido."
+
+#: ../../mod/invite.php:49
 #, php-format
-msgid "Does %s know you?"
-msgstr "%s conhece você?"
+msgid "%s : Not a valid email address."
+msgstr "%s : Não é um endereço de e-mail válido."
 
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "Adicione uma anotação pessoal:"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Por favor, junte-se à nós na Friendica"
 
-#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limite de convites ultrapassado. Favor contactar o administrador do sítio."
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Não foi possível enviar a mensagem."
 
-#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:718
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d mensagem enviada."
+msgstr[1] "%d mensagens enviadas."
+
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Você não possui mais convites disponíveis"
+
+#: ../../mod/invite.php:120
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais."
+
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público."
+
+#: ../../mod/invite.php:123
+#, php-format
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar."
+
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros."
+
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Enviar convites."
+
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Digite os endereços de e-mail, um por linha:"
+
+#: ../../mod/invite.php:135
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web."
+
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Você preciso informar este código de convite: $invite_code"
+
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:"
+
+#: ../../mod/invite.php:139
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com."
+
+#: ../../mod/settings.php:41
+msgid "Additional features"
+msgstr "Funcionalidades adicionais"
+
+#: ../../mod/settings.php:46
+msgid "Display"
+msgstr "Tela"
+
+#: ../../mod/settings.php:52 ../../mod/settings.php:775
+msgid "Social Networks"
+msgstr "Redes Sociais"
+
+#: ../../mod/settings.php:62 ../../include/nav.php:167
+msgid "Delegations"
+msgstr "Delegações"
+
+#: ../../mod/settings.php:67
+msgid "Connected apps"
+msgstr "Aplicações conectadas"
+
+#: ../../mod/settings.php:72 ../../mod/uexport.php:85
+msgid "Export personal data"
+msgstr "Exportar dados pessoais"
+
+#: ../../mod/settings.php:77
+msgid "Remove account"
+msgstr "Remover a conta"
+
+#: ../../mod/settings.php:129
+msgid "Missing some important data!"
+msgstr "Está faltando algum dado importante!"
+
+#: ../../mod/settings.php:238
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Não foi possível conectar à conta de e-mail com as configurações fornecidas."
+
+#: ../../mod/settings.php:243
+msgid "Email settings updated."
+msgstr "As configurações de e-mail foram atualizadas."
+
+#: ../../mod/settings.php:258
+msgid "Features updated"
+msgstr "Funcionalidades atualizadas"
+
+#: ../../mod/settings.php:319
+msgid "Relocate message has been send to your contacts"
+msgstr "A mensagem de relocação foi enviada para seus contatos"
+
+#: ../../mod/settings.php:333
+msgid "Passwords do not match. Password unchanged."
+msgstr "As senhas não correspondem. A senha não foi modificada."
+
+#: ../../mod/settings.php:338
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Não é permitido uma senha em branco. A senha não foi modificada."
+
+#: ../../mod/settings.php:346
+msgid "Wrong password."
+msgstr "Senha errada."
+
+#: ../../mod/settings.php:357
+msgid "Password changed."
+msgstr "A senha foi modificada."
+
+#: ../../mod/settings.php:359
+msgid "Password update failed. Please try again."
+msgstr "Não foi possível atualizar a senha. Por favor, tente novamente."
+
+#: ../../mod/settings.php:424
+msgid " Please use a shorter name."
+msgstr " Por favor, use um nome mais curto."
+
+#: ../../mod/settings.php:426
+msgid " Name too short."
+msgstr " O nome é muito curto."
+
+#: ../../mod/settings.php:435
+msgid "Wrong Password"
+msgstr "Senha Errada"
+
+#: ../../mod/settings.php:440
+msgid " Not valid email."
+msgstr " Não é um e-mail válido."
+
+#: ../../mod/settings.php:446
+msgid " Cannot change to that email."
+msgstr " Não foi possível alterar para esse e-mail."
+
+#: ../../mod/settings.php:501
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr "O fórum privado não possui permissões de privacidade. Utilizando o grupo de privacidade padrão."
+
+#: ../../mod/settings.php:505
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr "O fórum privado não possui permissões de privacidade e nenhum grupo de privacidade padrão."
+
+#: ../../mod/settings.php:535
+msgid "Settings updated."
+msgstr "As configurações foram atualizadas."
+
+#: ../../mod/settings.php:608 ../../mod/settings.php:634
+#: ../../mod/settings.php:670
+msgid "Add application"
+msgstr "Adicionar aplicação"
+
+#: ../../mod/settings.php:612 ../../mod/settings.php:638
+msgid "Consumer Key"
+msgstr "Chave do consumidor"
+
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
+msgid "Consumer Secret"
+msgstr "Segredo do consumidor"
+
+#: ../../mod/settings.php:614 ../../mod/settings.php:640
+msgid "Redirect"
+msgstr "Redirecionar"
+
+#: ../../mod/settings.php:615 ../../mod/settings.php:641
+msgid "Icon url"
+msgstr "URL do ícone"
+
+#: ../../mod/settings.php:626
+msgid "You can't edit this application."
+msgstr "Você não pode editar esta aplicação."
+
+#: ../../mod/settings.php:669
+msgid "Connected Apps"
+msgstr "Aplicações conectadas"
+
+#: ../../mod/settings.php:673
+msgid "Client key starts with"
+msgstr "A chave do cliente inicia com"
+
+#: ../../mod/settings.php:674
+msgid "No name"
+msgstr "Sem nome"
+
+#: ../../mod/settings.php:675
+msgid "Remove authorization"
+msgstr "Remover autorização"
+
+#: ../../mod/settings.php:687
+msgid "No Plugin settings configured"
+msgstr "Não foi definida nenhuma configuração de plugin"
+
+#: ../../mod/settings.php:695
+msgid "Plugin Settings"
+msgstr "Configurações do plugin"
+
+#: ../../mod/settings.php:709
+msgid "Off"
+msgstr "Off"
+
+#: ../../mod/settings.php:709
+msgid "On"
+msgstr "On"
+
+#: ../../mod/settings.php:717
+msgid "Additional Features"
+msgstr "Funcionalidades Adicionais"
+
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr "O suporte interno para conectividade de %s está %s"
+
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
+msgid "enabled"
+msgstr "habilitado"
+
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
+msgid "disabled"
+msgstr "desabilitado"
+
+#: ../../mod/settings.php:732
+msgid "StatusNet"
+msgstr "StatusNet"
+
+#: ../../mod/settings.php:768
+msgid "Email access is disabled on this site."
+msgstr "O acesso ao e-mail está desabilitado neste site."
+
+#: ../../mod/settings.php:780
+msgid "Email/Mailbox Setup"
+msgstr "Configurações do e-mail/caixa postal"
+
+#: ../../mod/settings.php:781
+msgid ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
+msgstr "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal."
+
+#: ../../mod/settings.php:782
+msgid "Last successful email check:"
+msgstr "Última checagem bem sucedida de e-mail:"
+
+#: ../../mod/settings.php:784
+msgid "IMAP server name:"
+msgstr "Nome do servidor IMAP:"
+
+#: ../../mod/settings.php:785
+msgid "IMAP port:"
+msgstr "Porta do IMAP:"
+
+#: ../../mod/settings.php:786
+msgid "Security:"
+msgstr "Segurança:"
+
+#: ../../mod/settings.php:786 ../../mod/settings.php:791
+msgid "None"
+msgstr "Nenhuma"
+
+#: ../../mod/settings.php:787
+msgid "Email login name:"
+msgstr "Nome de usuário do e-mail:"
+
+#: ../../mod/settings.php:788
+msgid "Email password:"
+msgstr "Senha do e-mail:"
+
+#: ../../mod/settings.php:789
+msgid "Reply-to address:"
+msgstr "Endereço de resposta (Reply-to):"
+
+#: ../../mod/settings.php:790
+msgid "Send public posts to all email contacts:"
+msgstr "Enviar publicações públicas para todos os contatos de e-mail:"
+
+#: ../../mod/settings.php:791
+msgid "Action after import:"
+msgstr "Ação após a importação:"
+
+#: ../../mod/settings.php:791
+msgid "Mark as seen"
+msgstr "Marcar como visto"
+
+#: ../../mod/settings.php:791
+msgid "Move to folder"
+msgstr "Mover para pasta"
+
+#: ../../mod/settings.php:792
+msgid "Move to folder:"
+msgstr "Mover para pasta:"
+
+#: ../../mod/settings.php:870
+msgid "Display Settings"
+msgstr "Configurações de exibição"
+
+#: ../../mod/settings.php:876 ../../mod/settings.php:890
+msgid "Display Theme:"
+msgstr "Tema do perfil:"
+
+#: ../../mod/settings.php:877
+msgid "Mobile Theme:"
+msgstr "Tema para dispositivos móveis:"
+
+#: ../../mod/settings.php:878
+msgid "Update browser every xx seconds"
+msgstr "Atualizar o navegador a cada xx segundos"
+
+#: ../../mod/settings.php:878
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Mínimo de 10 segundos, não possui máximo"
+
+#: ../../mod/settings.php:879
+msgid "Number of items to display per page:"
+msgstr "Número de itens a serem exibidos por página:"
+
+#: ../../mod/settings.php:879 ../../mod/settings.php:880
+msgid "Maximum of 100 items"
+msgstr "Máximo de 100 itens"
+
+#: ../../mod/settings.php:880
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:"
+
+#: ../../mod/settings.php:881
+msgid "Don't show emoticons"
+msgstr "Não exibir emoticons"
+
+#: ../../mod/settings.php:882
+msgid "Don't show notices"
+msgstr "Não mostra avisos"
+
+#: ../../mod/settings.php:883
+msgid "Infinite scroll"
+msgstr "rolamento infinito"
+
+#: ../../mod/settings.php:960
+msgid "User Types"
+msgstr "Tipos de Usuários"
+
+#: ../../mod/settings.php:961
+msgid "Community Types"
+msgstr "Tipos de Comunidades"
+
+#: ../../mod/settings.php:962
+msgid "Normal Account Page"
+msgstr "Página de conta normal"
+
+#: ../../mod/settings.php:963
+msgid "This account is a normal personal profile"
+msgstr "Essa conta é um perfil pessoal normal"
+
+#: ../../mod/settings.php:966
+msgid "Soapbox Page"
+msgstr "Página de vitrine"
+
+#: ../../mod/settings.php:967
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão somente de leitura"
 
-#: ../../mod/dfrn_request.php:843
-#, php-format
+#: ../../mod/settings.php:970
+msgid "Community Forum/Celebrity Account"
+msgstr "Conta de fórum de comunidade/celebridade"
+
+#: ../../mod/settings.php:971
 msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora."
+"Automatically approve all connection/friend requests as read-write fans"
+msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão de leitura e escrita"
 
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr "Seu endereço de identificação:"
+#: ../../mod/settings.php:974
+msgid "Automatic Friend Page"
+msgstr "Página de amigo automático"
 
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "Enviar solicitação"
+#: ../../mod/settings.php:975
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos"
 
-#: ../../mod/update_profile.php:41 ../../mod/update_network.php:22
-#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
-#: ../../mod/update_notes.php:41
-msgid "[Embedded content - reload page to view]"
-msgstr "[Conteúdo incorporado - recarregue a página para ver]"
+#: ../../mod/settings.php:978
+msgid "Private Forum [Experimental]"
+msgstr "Fórum privado [Experimental]"
 
-#: ../../mod/content.php:496 ../../include/conversation.php:686
-msgid "View in context"
-msgstr "Ver no contexto"
+#: ../../mod/settings.php:979
+msgid "Private forum - approved members only"
+msgstr "Fórum privado - somente membros aprovados"
 
-#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
-msgid "Could not access contact record."
-msgstr "Não foi possível acessar o registro do contato."
+#: ../../mod/settings.php:991
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: ../../mod/contacts.php:99
-msgid "Could not locate selected profile."
-msgstr "Não foi possível localizar o perfil selecionado."
+#: ../../mod/settings.php:991
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Opcional) Permitir o uso deste OpenID para entrar nesta conta"
 
-#: ../../mod/contacts.php:122
-msgid "Contact updated."
-msgstr "O contato foi atualizado."
+#: ../../mod/settings.php:1001
+msgid "Publish your default profile in your local site directory?"
+msgstr "Publicar o seu perfil padrão no diretório local do seu site?"
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been blocked"
-msgstr "O contato foi bloqueado"
+#: ../../mod/settings.php:1007
+msgid "Publish your default profile in the global social directory?"
+msgstr "Publicar o seu perfil padrão no diretório social global?"
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been unblocked"
-msgstr "O contato foi desbloqueado"
+#: ../../mod/settings.php:1015
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Ocultar visualização da sua lista de contatos/amigos no seu perfil padrão? "
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been ignored"
-msgstr "O contato foi ignorado"
+#: ../../mod/settings.php:1019 ../../include/conversation.php:1055
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Ocultar os detalhes do seu perfil para pessoas desconhecidas?"
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been unignored"
-msgstr "O contato deixou de ser ignorado"
+#: ../../mod/settings.php:1024
+msgid "Allow friends to post to your profile page?"
+msgstr "Permitir aos amigos publicarem na sua página de perfil?"
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been archived"
-msgstr "O contato foi arquivado"
+#: ../../mod/settings.php:1030
+msgid "Allow friends to tag your posts?"
+msgstr "Permitir aos amigos etiquetarem suas publicações?"
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been unarchived"
-msgstr "O contato foi desarquivado"
+#: ../../mod/settings.php:1036
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Permitir que você seja sugerido como amigo em potencial para novos membros?"
 
-#: ../../mod/contacts.php:244
-msgid "Do you really want to delete this contact?"
-msgstr "Você realmente deseja deletar esse contato?"
+#: ../../mod/settings.php:1042
+msgid "Permit unknown people to send you private mail?"
+msgstr "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?"
 
-#: ../../mod/contacts.php:263
-msgid "Contact has been removed."
-msgstr "O contato foi removido."
+#: ../../mod/settings.php:1050
+msgid "Profile is <strong>not published</strong>."
+msgstr "O perfil <strong>não está publicado</strong>."
 
-#: ../../mod/contacts.php:301
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Você possui uma amizade mútua com %s"
+#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "ou"
 
-#: ../../mod/contacts.php:305
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Você está compartilhando com %s"
+#: ../../mod/settings.php:1058
+msgid "Your Identity Address is"
+msgstr "O endereço da sua identidade é"
 
-#: ../../mod/contacts.php:310
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s está compartilhando com você"
+#: ../../mod/settings.php:1069
+msgid "Automatically expire posts after this many days:"
+msgstr "Expirar automaticamente publicações após tantos dias:"
 
-#: ../../mod/contacts.php:327
-msgid "Private communications are not available for this contact."
-msgstr "As comunicações privadas não estão disponíveis para este contato."
+#: ../../mod/settings.php:1069
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Se deixado em branco, as publicações não irão expirar. Publicações expiradas serão excluídas."
 
-#: ../../mod/contacts.php:334
-msgid "(Update was successful)"
-msgstr "(A atualização foi bem sucedida)"
+#: ../../mod/settings.php:1070
+msgid "Advanced expiration settings"
+msgstr "Configurações avançadas de expiração"
 
-#: ../../mod/contacts.php:334
-msgid "(Update was not successful)"
-msgstr "(A atualização não foi bem sucedida)"
+#: ../../mod/settings.php:1071
+msgid "Advanced Expiration"
+msgstr "Expiração avançada"
 
-#: ../../mod/contacts.php:336
-msgid "Suggest friends"
-msgstr "Sugerir amigos"
+#: ../../mod/settings.php:1072
+msgid "Expire posts:"
+msgstr "Expirar publicações:"
 
-#: ../../mod/contacts.php:340
-#, php-format
-msgid "Network type: %s"
-msgstr "Tipo de rede: %s"
+#: ../../mod/settings.php:1073
+msgid "Expire personal notes:"
+msgstr "Expirar notas pessoais:"
 
-#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d contato em comum"
-msgstr[1] "%d contatos em comum"
+#: ../../mod/settings.php:1074
+msgid "Expire starred posts:"
+msgstr "Expirar publicações destacadas:"
 
-#: ../../mod/contacts.php:348
-msgid "View all contacts"
-msgstr "Ver todos os contatos"
+#: ../../mod/settings.php:1075
+msgid "Expire photos:"
+msgstr "Expirar fotos:"
 
-#: ../../mod/contacts.php:356
-msgid "Toggle Blocked status"
-msgstr "Alternar o status de bloqueio"
+#: ../../mod/settings.php:1076
+msgid "Only expire posts by others:"
+msgstr "Expirar somente as publicações de outras pessoas:"
 
-#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
-msgid "Unignore"
-msgstr "Deixar de ignorar"
+#: ../../mod/settings.php:1102
+msgid "Account Settings"
+msgstr "Configurações da conta"
 
-#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
-#: ../../mod/notifications.php:210
-msgid "Ignore"
-msgstr "Ignorar"
+#: ../../mod/settings.php:1110
+msgid "Password Settings"
+msgstr "Configurações da senha"
 
-#: ../../mod/contacts.php:362
-msgid "Toggle Ignored status"
-msgstr "Alternar o status de ignorado"
+#: ../../mod/settings.php:1111
+msgid "New Password:"
+msgstr "Nova senha:"
 
-#: ../../mod/contacts.php:366
-msgid "Unarchive"
-msgstr "Desarquivar"
+#: ../../mod/settings.php:1112
+msgid "Confirm:"
+msgstr "Confirme:"
 
-#: ../../mod/contacts.php:366
-msgid "Archive"
-msgstr "Arquivar"
+#: ../../mod/settings.php:1112
+msgid "Leave password fields blank unless changing"
+msgstr "Deixe os campos de senha em branco, a não ser que você queira alterá-la"
 
-#: ../../mod/contacts.php:369
-msgid "Toggle Archive status"
-msgstr "Alternar o status de arquivamento"
+#: ../../mod/settings.php:1113
+msgid "Current Password:"
+msgstr "Senha Atual:"
 
-#: ../../mod/contacts.php:372
-msgid "Repair"
-msgstr "Reparar"
+#: ../../mod/settings.php:1113 ../../mod/settings.php:1114
+msgid "Your current password to confirm the changes"
+msgstr "Sua senha atual para confirmar as mudanças"
 
-#: ../../mod/contacts.php:375
-msgid "Advanced Contact Settings"
-msgstr "Configurações avançadas do contato"
+#: ../../mod/settings.php:1114
+msgid "Password:"
+msgstr "Senha:"
 
-#: ../../mod/contacts.php:381
-msgid "Communications lost with this contact!"
-msgstr "As comunicações com esse contato foram perdidas!"
+#: ../../mod/settings.php:1118
+msgid "Basic Settings"
+msgstr "Configurações básicas"
 
-#: ../../mod/contacts.php:384
-msgid "Contact Editor"
-msgstr "Editor de contatos"
+#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15
+msgid "Full Name:"
+msgstr "Nome completo:"
 
-#: ../../mod/contacts.php:387
-msgid "Profile Visibility"
-msgstr "Visibilidade do perfil"
+#: ../../mod/settings.php:1120
+msgid "Email Address:"
+msgstr "Endereço de e-mail:"
 
-#: ../../mod/contacts.php:388
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro."
+#: ../../mod/settings.php:1121
+msgid "Your Timezone:"
+msgstr "Seu fuso horário:"
 
-#: ../../mod/contacts.php:389
-msgid "Contact Information / Notes"
-msgstr "Informações sobre o contato / Anotações"
+#: ../../mod/settings.php:1122
+msgid "Default Post Location:"
+msgstr "Localização padrão de suas publicações:"
 
-#: ../../mod/contacts.php:390
-msgid "Edit contact notes"
-msgstr "Editar as anotações do contato"
+#: ../../mod/settings.php:1123
+msgid "Use Browser Location:"
+msgstr "Usar localizador do navegador:"
 
-#: ../../mod/contacts.php:395 ../../mod/contacts.php:585
-#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visitar o perfil de %s [%s]"
+#: ../../mod/settings.php:1126
+msgid "Security and Privacy Settings"
+msgstr "Configurações de segurança e privacidade"
 
-#: ../../mod/contacts.php:396
-msgid "Block/Unblock contact"
-msgstr "Bloquear/desbloquear o contato"
+#: ../../mod/settings.php:1128
+msgid "Maximum Friend Requests/Day:"
+msgstr "Número máximo de requisições de amizade por dia:"
 
-#: ../../mod/contacts.php:397
-msgid "Ignore contact"
-msgstr "Ignorar o contato"
+#: ../../mod/settings.php:1128 ../../mod/settings.php:1158
+msgid "(to prevent spam abuse)"
+msgstr "(para prevenir abuso de spammers)"
 
-#: ../../mod/contacts.php:398
-msgid "Repair URL settings"
-msgstr "Reparar as definições de URL"
+#: ../../mod/settings.php:1129
+msgid "Default Post Permissions"
+msgstr "Permissões padrão de publicação"
 
-#: ../../mod/contacts.php:399
-msgid "View conversations"
-msgstr "Ver as conversas"
+#: ../../mod/settings.php:1130
+msgid "(click to open/close)"
+msgstr "(clique para abrir/fechar)"
 
-#: ../../mod/contacts.php:401
-msgid "Delete contact"
-msgstr "Excluir o contato"
+#: ../../mod/settings.php:1141
+msgid "Default Private Post"
+msgstr "Publicação Privada Padrão"
 
-#: ../../mod/contacts.php:405
-msgid "Last update:"
-msgstr "Última atualização:"
+#: ../../mod/settings.php:1142
+msgid "Default Public Post"
+msgstr "Publicação Pública Padrão"
 
-#: ../../mod/contacts.php:407
-msgid "Update public posts"
-msgstr "Atualizar publicações públicas"
+#: ../../mod/settings.php:1146
+msgid "Default Permissions for New Posts"
+msgstr "Permissões Padrão para Publicações Novas"
 
-#: ../../mod/contacts.php:416
-msgid "Currently blocked"
-msgstr "Atualmente bloqueado"
+#: ../../mod/settings.php:1158
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Número máximo de mensagens privadas de pessoas desconhecidas, por dia:"
 
-#: ../../mod/contacts.php:417
-msgid "Currently ignored"
-msgstr "Atualmente ignorado"
+#: ../../mod/settings.php:1161
+msgid "Notification Settings"
+msgstr "Configurações de notificação"
 
-#: ../../mod/contacts.php:418
-msgid "Currently archived"
-msgstr "Atualmente arquivado"
+#: ../../mod/settings.php:1162
+msgid "By default post a status message when:"
+msgstr "Por padrão, publicar uma mensagem de status quando:"
 
-#: ../../mod/contacts.php:419 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Ocultar este contato dos outros"
+#: ../../mod/settings.php:1163
+msgid "accepting a friend request"
+msgstr "aceitar uma requisição de amizade"
 
-#: ../../mod/contacts.php:419
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Respostas/gostadas associados às suas publicações <strong>ainda podem</strong> estar visíveis"
+#: ../../mod/settings.php:1164
+msgid "joining a forum/community"
+msgstr "associar-se a um fórum/comunidade"
+
+#: ../../mod/settings.php:1165
+msgid "making an <em>interesting</em> profile change"
+msgstr "fazer uma modificação <em>interessante</em> em seu perfil"
+
+#: ../../mod/settings.php:1166
+msgid "Send a notification email when:"
+msgstr "Enviar um e-mail de notificação sempre que:"
 
-#: ../../mod/contacts.php:470
-msgid "Suggestions"
-msgstr "Sugestões"
+#: ../../mod/settings.php:1167
+msgid "You receive an introduction"
+msgstr "Você recebeu uma apresentação"
 
-#: ../../mod/contacts.php:473
-msgid "Suggest potential friends"
-msgstr "Sugerir amigos em potencial"
+#: ../../mod/settings.php:1168
+msgid "Your introductions are confirmed"
+msgstr "Suas apresentações forem confirmadas"
 
-#: ../../mod/contacts.php:476 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Todos os contatos"
+#: ../../mod/settings.php:1169
+msgid "Someone writes on your profile wall"
+msgstr "Alguém escrever no mural do seu perfil"
 
-#: ../../mod/contacts.php:479
-msgid "Show all contacts"
-msgstr "Exibe todos os contatos"
+#: ../../mod/settings.php:1170
+msgid "Someone writes a followup comment"
+msgstr "Alguém comentar a sua mensagem"
 
-#: ../../mod/contacts.php:482
-msgid "Unblocked"
-msgstr "Desbloquear"
+#: ../../mod/settings.php:1171
+msgid "You receive a private message"
+msgstr "Você recebeu uma mensagem privada"
 
-#: ../../mod/contacts.php:485
-msgid "Only show unblocked contacts"
-msgstr "Exibe somente contatos desbloqueados"
+#: ../../mod/settings.php:1172
+msgid "You receive a friend suggestion"
+msgstr "Você recebe uma suggestão de amigo"
 
-#: ../../mod/contacts.php:489
-msgid "Blocked"
-msgstr "Bloqueado"
+#: ../../mod/settings.php:1173
+msgid "You are tagged in a post"
+msgstr "Você foi etiquetado em uma publicação"
 
-#: ../../mod/contacts.php:492
-msgid "Only show blocked contacts"
-msgstr "Exibe somente contatos bloqueados"
+#: ../../mod/settings.php:1174
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Você está cutucado/incitado/etc. em uma publicação"
 
-#: ../../mod/contacts.php:496
-msgid "Ignored"
-msgstr "Ignorados"
+#: ../../mod/settings.php:1177
+msgid "Advanced Account/Page Type Settings"
+msgstr "Conta avançada/Configurações do tipo de página"
 
-#: ../../mod/contacts.php:499
-msgid "Only show ignored contacts"
-msgstr "Exibe somente contatos ignorados"
+#: ../../mod/settings.php:1178
+msgid "Change the behaviour of this account for special situations"
+msgstr "Modificar o comportamento desta conta em situações especiais"
 
-#: ../../mod/contacts.php:503
-msgid "Archived"
-msgstr "Arquivados"
+#: ../../mod/settings.php:1181
+msgid "Relocate"
+msgstr "Relocação"
 
-#: ../../mod/contacts.php:506
-msgid "Only show archived contacts"
-msgstr "Exibe somente contatos arquivados"
+#: ../../mod/settings.php:1182
+msgid ""
+"If you have moved this profile from another server, and some of your "
+"contacts don't receive your updates, try pushing this button."
+msgstr "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão."
 
-#: ../../mod/contacts.php:510
-msgid "Hidden"
-msgstr "Ocultos"
+#: ../../mod/settings.php:1183
+msgid "Resend relocate message to contacts"
+msgstr "Reenviar mensagem de relocação para os contatos"
 
-#: ../../mod/contacts.php:513
-msgid "Only show hidden contacts"
-msgstr "Exibe somente contatos ocultos"
+#: ../../mod/display.php:263
+msgid "Item has been removed."
+msgstr "O item foi removido."
 
-#: ../../mod/contacts.php:561
-msgid "Mutual Friendship"
-msgstr "Amizade mútua"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Pesquisar pessoas"
 
-#: ../../mod/contacts.php:565
-msgid "is a fan of yours"
-msgstr "é um fã seu"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Nenhuma correspondência"
 
-#: ../../mod/contacts.php:569
-msgid "you are a fan of"
-msgstr "você é um fã de"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "O perfil foi excluído."
 
-#: ../../mod/contacts.php:586 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Editar o contato"
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Perfil-"
 
-#: ../../mod/contacts.php:611
-msgid "Search your contacts"
-msgstr "Pesquisar seus contatos"
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "O novo perfil foi criado."
 
-#: ../../mod/settings.php:28 ../../mod/photos.php:79
-msgid "everybody"
-msgstr "todos"
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "O perfil não está disponível para clonagem."
 
-#: ../../mod/settings.php:35 ../../mod/uexport.php:9 ../../include/nav.php:167
-msgid "Account settings"
-msgstr "Configurações da conta"
+#: ../../mod/profiles.php:170
+msgid "Profile Name is required."
+msgstr "É necessário informar o nome do perfil."
 
-#: ../../mod/settings.php:40
-msgid "Additional features"
-msgstr "Funcionalidades adicionais"
+#: ../../mod/profiles.php:321
+msgid "Marital Status"
+msgstr "Situação amorosa"
 
-#: ../../mod/settings.php:45 ../../mod/uexport.php:14
-msgid "Display settings"
-msgstr "Configurações de exibição"
+#: ../../mod/profiles.php:325
+msgid "Romantic Partner"
+msgstr "Parceiro romântico"
 
-#: ../../mod/settings.php:51 ../../mod/uexport.php:20
-msgid "Connector settings"
-msgstr "Configurações do conector"
+#: ../../mod/profiles.php:329
+msgid "Likes"
+msgstr "Gosta de"
 
-#: ../../mod/settings.php:56 ../../mod/uexport.php:25
-msgid "Plugin settings"
-msgstr "Configurações dos plugins"
+#: ../../mod/profiles.php:333
+msgid "Dislikes"
+msgstr "Não gosta de"
 
-#: ../../mod/settings.php:61 ../../mod/uexport.php:30
-msgid "Connected apps"
-msgstr "Aplicações conectadas"
+#: ../../mod/profiles.php:337
+msgid "Work/Employment"
+msgstr "Trabalho/emprego"
 
-#: ../../mod/settings.php:66 ../../mod/uexport.php:35 ../../mod/uexport.php:80
-msgid "Export personal data"
-msgstr "Exportar dados pessoais"
+#: ../../mod/profiles.php:340
+msgid "Religion"
+msgstr "Religião"
 
-#: ../../mod/settings.php:71 ../../mod/uexport.php:40
-msgid "Remove account"
-msgstr "Remover a conta"
+#: ../../mod/profiles.php:344
+msgid "Political Views"
+msgstr "Posicionamento político"
 
-#: ../../mod/settings.php:123
-msgid "Missing some important data!"
-msgstr "Está faltando algum dado importante!"
+#: ../../mod/profiles.php:348
+msgid "Gender"
+msgstr "Gênero"
 
-#: ../../mod/settings.php:126 ../../mod/settings.php:623
-msgid "Update"
-msgstr "Atualizar"
+#: ../../mod/profiles.php:352
+msgid "Sexual Preference"
+msgstr "Preferência sexual"
 
-#: ../../mod/settings.php:232
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Não foi possível conectar à conta de e-mail com as configurações fornecidas."
+#: ../../mod/profiles.php:356
+msgid "Homepage"
+msgstr "Página Principal"
 
-#: ../../mod/settings.php:237
-msgid "Email settings updated."
-msgstr "As configurações de e-mail foram atualizadas."
+#: ../../mod/profiles.php:360
+msgid "Interests"
+msgstr "Interesses"
 
-#: ../../mod/settings.php:252
-msgid "Features updated"
-msgstr "Funcionalidades atualizadas"
+#: ../../mod/profiles.php:364
+msgid "Address"
+msgstr "Endereço"
 
-#: ../../mod/settings.php:311
-msgid "Relocate message has been send to your contacts"
-msgstr "A mensagem de relocação foi enviada para seus contatos"
+#: ../../mod/profiles.php:371
+msgid "Location"
+msgstr "Localização"
 
-#: ../../mod/settings.php:325
-msgid "Passwords do not match. Password unchanged."
-msgstr "As senhas não correspondem. A senha não foi modificada."
+#: ../../mod/profiles.php:454
+msgid "Profile updated."
+msgstr "O perfil foi atualizado."
 
-#: ../../mod/settings.php:330
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Não é permitido uma senha em branco. A senha não foi modificada."
+#: ../../mod/profiles.php:525
+msgid " and "
+msgstr " e "
 
-#: ../../mod/settings.php:338
-msgid "Wrong password."
-msgstr "Senha errada."
+#: ../../mod/profiles.php:533
+msgid "public profile"
+msgstr "perfil público"
 
-#: ../../mod/settings.php:349
-msgid "Password changed."
-msgstr "A senha foi modificada."
+#: ../../mod/profiles.php:536
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s mudou %2$s para &ldquo;%3$s&rdquo;"
 
-#: ../../mod/settings.php:351
-msgid "Password update failed. Please try again."
-msgstr "Não foi possível atualizar a senha. Por favor, tente novamente."
+#: ../../mod/profiles.php:537
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " - Visite %2$s de %1$s"
 
-#: ../../mod/settings.php:416
-msgid " Please use a shorter name."
-msgstr " Por favor, use um nome mais curto."
+#: ../../mod/profiles.php:540
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s foi atualizado %2$s, mudando %3$s."
 
-#: ../../mod/settings.php:418
-msgid " Name too short."
-msgstr " O nome é muito curto."
+#: ../../mod/profiles.php:613
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?"
 
-#: ../../mod/settings.php:427
-msgid "Wrong Password"
-msgstr "Senha Errada"
+#: ../../mod/profiles.php:633
+msgid "Edit Profile Details"
+msgstr "Editar os detalhes do perfil"
 
-#: ../../mod/settings.php:432
-msgid " Not valid email."
-msgstr " Não é um e-mail válido."
+#: ../../mod/profiles.php:635
+msgid "Change Profile Photo"
+msgstr "Mudar Foto do Perfil"
 
-#: ../../mod/settings.php:435
-msgid " Cannot change to that email."
-msgstr " Não foi possível alterar para esse e-mail."
+#: ../../mod/profiles.php:636
+msgid "View this profile"
+msgstr "Ver este perfil"
 
-#: ../../mod/settings.php:489
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr "O fórum privado não possui permissões de privacidade. Utilizando o grupo de privacidade padrão."
+#: ../../mod/profiles.php:637
+msgid "Create a new profile using these settings"
+msgstr "Criar um novo perfil usando estas configurações"
 
-#: ../../mod/settings.php:493
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr "O fórum privado não possui permissões de privacidade e nenhum grupo de privacidade padrão."
+#: ../../mod/profiles.php:638
+msgid "Clone this profile"
+msgstr "Clonar este perfil"
 
-#: ../../mod/settings.php:523
-msgid "Settings updated."
-msgstr "As configurações foram atualizadas."
+#: ../../mod/profiles.php:639
+msgid "Delete this profile"
+msgstr "Excluir este perfil"
 
-#: ../../mod/settings.php:596 ../../mod/settings.php:622
-#: ../../mod/settings.php:658
-msgid "Add application"
-msgstr "Adicionar aplicação"
+#: ../../mod/profiles.php:640
+msgid "Profile Name:"
+msgstr "Nome do perfil:"
 
-#: ../../mod/settings.php:600 ../../mod/settings.php:626
-msgid "Consumer Key"
-msgstr "Chave do consumidor"
+#: ../../mod/profiles.php:641
+msgid "Your Full Name:"
+msgstr "Seu nome completo:"
 
-#: ../../mod/settings.php:601 ../../mod/settings.php:627
-msgid "Consumer Secret"
-msgstr "Segredo do consumidor"
+#: ../../mod/profiles.php:642
+msgid "Title/Description:"
+msgstr "Título/Descrição:"
 
-#: ../../mod/settings.php:602 ../../mod/settings.php:628
-msgid "Redirect"
-msgstr "Redirecionar"
+#: ../../mod/profiles.php:643
+msgid "Your Gender:"
+msgstr "Seu gênero:"
 
-#: ../../mod/settings.php:603 ../../mod/settings.php:629
-msgid "Icon url"
-msgstr "URL do ícone"
+#: ../../mod/profiles.php:644
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Aniversário (%s):"
 
-#: ../../mod/settings.php:614
-msgid "You can't edit this application."
-msgstr "Você não pode editar esta aplicação."
+#: ../../mod/profiles.php:645
+msgid "Street Address:"
+msgstr "Endereço:"
 
-#: ../../mod/settings.php:657
-msgid "Connected Apps"
-msgstr "Aplicações conectadas"
+#: ../../mod/profiles.php:646
+msgid "Locality/City:"
+msgstr "Localidade/Cidade:"
 
-#: ../../mod/settings.php:661
-msgid "Client key starts with"
-msgstr "A chave do cliente inicia com"
+#: ../../mod/profiles.php:647
+msgid "Postal/Zip Code:"
+msgstr "CEP:"
 
-#: ../../mod/settings.php:662
-msgid "No name"
-msgstr "Sem nome"
+#: ../../mod/profiles.php:648
+msgid "Country:"
+msgstr "País:"
 
-#: ../../mod/settings.php:663
-msgid "Remove authorization"
-msgstr "Remover autorização"
+#: ../../mod/profiles.php:649
+msgid "Region/State:"
+msgstr "Região/Estado:"
 
-#: ../../mod/settings.php:675
-msgid "No Plugin settings configured"
-msgstr "Não foi definida nenhuma configuração de plugin"
+#: ../../mod/profiles.php:650
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Situação amorosa:"
 
-#: ../../mod/settings.php:683
-msgid "Plugin Settings"
-msgstr "Configurações do plugin"
+#: ../../mod/profiles.php:651
+msgid "Who: (if applicable)"
+msgstr "Quem: (se pertinente)"
 
-#: ../../mod/settings.php:697
-msgid "Off"
-msgstr "Off"
+#: ../../mod/profiles.php:652
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"
 
-#: ../../mod/settings.php:697
-msgid "On"
-msgstr "On"
+#: ../../mod/profiles.php:653
+msgid "Since [date]:"
+msgstr "Desde [data]:"
 
-#: ../../mod/settings.php:705
-msgid "Additional Features"
-msgstr "Funcionalidades Adicionais"
+#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
+msgstr "Preferência sexual:"
 
-#: ../../mod/settings.php:718 ../../mod/settings.php:719
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "O suporte interno para conectividade de %s está %s"
+#: ../../mod/profiles.php:655
+msgid "Homepage URL:"
+msgstr "Endereço do site web:"
 
-#: ../../mod/settings.php:718 ../../mod/settings.php:719
-msgid "enabled"
-msgstr "habilitado"
+#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50
+msgid "Hometown:"
+msgstr "Cidade:"
 
-#: ../../mod/settings.php:718 ../../mod/settings.php:719
-msgid "disabled"
-msgstr "desabilitado"
+#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54
+msgid "Political Views:"
+msgstr "Posição política:"
 
-#: ../../mod/settings.php:719
-msgid "StatusNet"
-msgstr "StatusNet"
+#: ../../mod/profiles.php:658
+msgid "Religious Views:"
+msgstr "Orientação religiosa:"
 
-#: ../../mod/settings.php:751
-msgid "Email access is disabled on this site."
-msgstr "O acesso ao e-mail está desabilitado neste site."
+#: ../../mod/profiles.php:659
+msgid "Public Keywords:"
+msgstr "Palavras-chave públicas:"
 
-#: ../../mod/settings.php:758
-msgid "Connector Settings"
-msgstr "Configurações do conector"
+#: ../../mod/profiles.php:660
+msgid "Private Keywords:"
+msgstr "Palavras-chave privadas:"
 
-#: ../../mod/settings.php:763
-msgid "Email/Mailbox Setup"
-msgstr "Configurações do e-mail/caixa postal"
+#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62
+msgid "Likes:"
+msgstr "Gosta de:"
 
-#: ../../mod/settings.php:764
-msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal."
+#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
+msgstr "Não gosta de:"
 
-#: ../../mod/settings.php:765
-msgid "Last successful email check:"
-msgstr "Última checagem bem sucedida de e-mail:"
+#: ../../mod/profiles.php:663
+msgid "Example: fishing photography software"
+msgstr "Exemplo: pesca fotografia software"
 
-#: ../../mod/settings.php:767
-msgid "IMAP server name:"
-msgstr "Nome do servidor IMAP:"
+#: ../../mod/profiles.php:664
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)"
 
-#: ../../mod/settings.php:768
-msgid "IMAP port:"
-msgstr "Porta do IMAP:"
+#: ../../mod/profiles.php:665
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Usado na pesquisa de perfis, nunca é exibido para os outros)"
 
-#: ../../mod/settings.php:769
-msgid "Security:"
-msgstr "Segurança:"
+#: ../../mod/profiles.php:666
+msgid "Tell us about yourself..."
+msgstr "Fale um pouco sobre você..."
 
-#: ../../mod/settings.php:769 ../../mod/settings.php:774
-msgid "None"
-msgstr "Nenhuma"
+#: ../../mod/profiles.php:667
+msgid "Hobbies/Interests"
+msgstr "Passatempos/Interesses"
 
-#: ../../mod/settings.php:770
-msgid "Email login name:"
-msgstr "Nome de usuário do e-mail:"
+#: ../../mod/profiles.php:668
+msgid "Contact information and Social Networks"
+msgstr "Informações de contato e redes sociais"
 
-#: ../../mod/settings.php:771
-msgid "Email password:"
-msgstr "Senha do e-mail:"
+#: ../../mod/profiles.php:669
+msgid "Musical interests"
+msgstr "Preferências musicais"
 
-#: ../../mod/settings.php:772
-msgid "Reply-to address:"
-msgstr "Endereço de resposta (Reply-to):"
+#: ../../mod/profiles.php:670
+msgid "Books, literature"
+msgstr "Livros, literatura"
 
-#: ../../mod/settings.php:773
-msgid "Send public posts to all email contacts:"
-msgstr "Enviar publicações públicas para todos os contatos de e-mail:"
+#: ../../mod/profiles.php:671
+msgid "Television"
+msgstr "Televisão"
 
-#: ../../mod/settings.php:774
-msgid "Action after import:"
-msgstr "Ação após a importação:"
+#: ../../mod/profiles.php:672
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/dança/cultura/entretenimento"
 
-#: ../../mod/settings.php:774
-msgid "Mark as seen"
-msgstr "Marcar como visto"
+#: ../../mod/profiles.php:673
+msgid "Love/romance"
+msgstr "Amor/romance"
 
-#: ../../mod/settings.php:774
-msgid "Move to folder"
-msgstr "Mover para pasta"
+#: ../../mod/profiles.php:674
+msgid "Work/employment"
+msgstr "Trabalho/emprego"
 
-#: ../../mod/settings.php:775
-msgid "Move to folder:"
-msgstr "Mover para pasta:"
+#: ../../mod/profiles.php:675
+msgid "School/education"
+msgstr "Escola/educação"
 
-#: ../../mod/settings.php:850
-msgid "Display Settings"
-msgstr "Configurações de exibição"
+#: ../../mod/profiles.php:680
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet."
 
-#: ../../mod/settings.php:856 ../../mod/settings.php:869
-msgid "Display Theme:"
-msgstr "Tema do perfil:"
+#: ../../mod/profiles.php:690 ../../mod/directory.php:111
+msgid "Age: "
+msgstr "Idade: "
 
-#: ../../mod/settings.php:857
-msgid "Mobile Theme:"
-msgstr "Tema para dispositivos móveis:"
+#: ../../mod/profiles.php:729
+msgid "Edit/Manage Profiles"
+msgstr "Editar/Gerenciar perfis"
 
-#: ../../mod/settings.php:858
-msgid "Update browser every xx seconds"
-msgstr "Atualizar o navegador a cada xx segundos"
+#: ../../mod/profiles.php:730 ../../boot.php:1473 ../../boot.php:1499
+msgid "Change profile photo"
+msgstr "Mudar a foto do perfil"
 
-#: ../../mod/settings.php:858
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Mínimo de 10 segundos, não possui máximo"
+#: ../../mod/profiles.php:731 ../../boot.php:1474
+msgid "Create New Profile"
+msgstr "Criar um novo perfil"
 
-#: ../../mod/settings.php:859
-msgid "Number of items to display per page:"
-msgstr "Número de itens a serem exibidos por página:"
+#: ../../mod/profiles.php:742 ../../boot.php:1484
+msgid "Profile Image"
+msgstr "Imagem do perfil"
 
-#: ../../mod/settings.php:859 ../../mod/settings.php:860
-msgid "Maximum of 100 items"
-msgstr "Máximo de 100 itens"
+#: ../../mod/profiles.php:744 ../../boot.php:1487
+msgid "visible to everybody"
+msgstr "visível para todos"
 
-#: ../../mod/settings.php:860
-msgid "Number of items to display per page when viewed from mobile device:"
-msgstr "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:"
+#: ../../mod/profiles.php:745 ../../boot.php:1488
+msgid "Edit visibility"
+msgstr "Editar a visibilidade"
 
-#: ../../mod/settings.php:861
-msgid "Don't show emoticons"
-msgstr "Não exibir emoticons"
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "ligação"
 
-#: ../../mod/settings.php:862
-msgid "Infinite scroll"
-msgstr "rolamento infinito"
+#: ../../mod/uexport.php:77
+msgid "Export account"
+msgstr "Exportar conta"
 
-#: ../../mod/settings.php:938
-msgid "Normal Account Page"
-msgstr "Página de conta normal"
+#: ../../mod/uexport.php:77
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor."
 
-#: ../../mod/settings.php:939
-msgid "This account is a normal personal profile"
-msgstr "Essa conta é um perfil pessoal normal"
+#: ../../mod/uexport.php:78
+msgid "Export all"
+msgstr "Exportar tudo"
 
-#: ../../mod/settings.php:942
-msgid "Soapbox Page"
-msgstr "Página de vitrine"
+#: ../../mod/uexport.php:78
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)"
 
-#: ../../mod/settings.php:943
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão somente de leitura"
+#: ../../mod/ping.php:238
+msgid "{0} wants to be your friend"
+msgstr "{0} deseja ser seu amigo"
 
-#: ../../mod/settings.php:946
-msgid "Community Forum/Celebrity Account"
-msgstr "Conta de fórum de comunidade/celebridade"
+#: ../../mod/ping.php:243
+msgid "{0} sent you a message"
+msgstr "{0} lhe enviou uma mensagem"
 
-#: ../../mod/settings.php:947
-msgid ""
-"Automatically approve all connection/friend requests as read-write fans"
-msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão de leitura e escrita"
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr "{0} solicitou registro"
 
-#: ../../mod/settings.php:950
-msgid "Automatic Friend Page"
-msgstr "Página de amigo automático"
+#: ../../mod/ping.php:254
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} comentou a publicação de %s"
 
-#: ../../mod/settings.php:951
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos"
+#: ../../mod/ping.php:259
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} gostou da publicação de %s"
 
-#: ../../mod/settings.php:954
-msgid "Private Forum [Experimental]"
-msgstr "Fórum privado [Experimental]"
+#: ../../mod/ping.php:264
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} desgostou da publicação de %s"
 
-#: ../../mod/settings.php:955
-msgid "Private forum - approved members only"
-msgstr "Fórum privado - somente membros aprovados"
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} agora é amigo de %s"
 
-#: ../../mod/settings.php:967
-msgid "OpenID:"
-msgstr "OpenID:"
+#: ../../mod/ping.php:274
+msgid "{0} posted"
+msgstr "{0} publicou"
 
-#: ../../mod/settings.php:967
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Opcional) Permitir o uso deste OpenID para entrar nesta conta"
+#: ../../mod/ping.php:279
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} etiquetou a publicação de %s com #%s"
 
-#: ../../mod/settings.php:977
-msgid "Publish your default profile in your local site directory?"
-msgstr "Publicar o seu perfil padrão no diretório local do seu site?"
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
+msgstr "{0} mencionou você em uma publicação"
 
-#: ../../mod/settings.php:983
-msgid "Publish your default profile in the global social directory?"
-msgstr "Publicar o seu perfil padrão no diretório social global?"
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Nada de novo aqui"
 
-#: ../../mod/settings.php:991
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Ocultar visualização da sua lista de contatos/amigos no seu perfil padrão? "
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Descartar notificações"
 
-#: ../../mod/settings.php:995
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Ocultar os detalhes do seu perfil para pessoas desconhecidas?"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Não disponível."
 
-#: ../../mod/settings.php:1000
-msgid "Allow friends to post to your profile page?"
-msgstr "Permitir aos amigos publicarem na sua página de perfil?"
+#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129
+#: ../../include/nav.php:128
+msgid "Community"
+msgstr "Comunidade"
 
-#: ../../mod/settings.php:1006
-msgid "Allow friends to tag your posts?"
-msgstr "Permitir aos amigos etiquetarem suas publicações?"
+#: ../../mod/filer.php:30 ../../include/conversation.php:1004
+#: ../../include/conversation.php:1022
+msgid "Save to Folder:"
+msgstr "Salvar na pasta:"
 
-#: ../../mod/settings.php:1012
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Permitir que você seja sugerido como amigo em potencial para novos membros?"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "-selecione-"
 
-#: ../../mod/settings.php:1018
-msgid "Permit unknown people to send you private mail?"
-msgstr "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?"
+#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954
+msgid "Save"
+msgstr "Salvar"
 
-#: ../../mod/settings.php:1026
-msgid "Profile is <strong>not published</strong>."
-msgstr "O perfil <strong>não está publicado</strong>."
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem"
 
-#: ../../mod/settings.php:1029 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr "ou"
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "Ou - você tentou enviar um arquivo vazio?"
 
-#: ../../mod/settings.php:1034
-msgid "Your Identity Address is"
-msgstr "O endereço da sua identidade é"
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "O arquivo excedeu o tamanho limite de %d"
 
-#: ../../mod/settings.php:1045
-msgid "Automatically expire posts after this many days:"
-msgstr "Expirar automaticamente publicações após tantos dias:"
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Não foi possível enviar o arquivo."
 
-#: ../../mod/settings.php:1045
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Se deixado em branco, as publicações não irão expirar. Publicações expiradas serão excluídas."
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Identificador de perfil inválido."
 
-#: ../../mod/settings.php:1046
-msgid "Advanced expiration settings"
-msgstr "Configurações avançadas de expiração"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Editor de visibilidade do perfil"
 
-#: ../../mod/settings.php:1047
-msgid "Advanced Expiration"
-msgstr "Expiração avançada"
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
+msgstr "Clique em um contato para adicionar ou remover."
 
-#: ../../mod/settings.php:1048
-msgid "Expire posts:"
-msgstr "Expirar publicações:"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Visível para"
 
-#: ../../mod/settings.php:1049
-msgid "Expire personal notes:"
-msgstr "Expirar notas pessoais:"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Todos os contatos (com acesso a perfil seguro)"
 
-#: ../../mod/settings.php:1050
-msgid "Expire starred posts:"
-msgstr "Expirar publicações destacadas:"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Você realmente deseja deletar essa sugestão?"
 
-#: ../../mod/settings.php:1051
-msgid "Expire photos:"
-msgstr "Expirar fotos:"
+#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527
+#: ../../include/contact_widgets.php:34
+msgid "Friend Suggestions"
+msgstr "Sugestões de amigos"
 
-#: ../../mod/settings.php:1052
-msgid "Only expire posts by others:"
-msgstr "Expirar somente as publicações de outras pessoas:"
+#: ../../mod/suggest.php:72
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas."
 
-#: ../../mod/settings.php:1078
-msgid "Account Settings"
-msgstr "Configurações da conta"
+#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1445
+#: ../../include/contact_widgets.php:9
+msgid "Connect"
+msgstr "Conectar"
 
-#: ../../mod/settings.php:1086
-msgid "Password Settings"
-msgstr "Configurações da senha"
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "Ignorar/Ocultar"
 
-#: ../../mod/settings.php:1087
-msgid "New Password:"
-msgstr "Nova senha:"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Acesso negado."
 
-#: ../../mod/settings.php:1088
-msgid "Confirm:"
-msgstr "Confirme:"
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s dá as boas vinda à %2$s"
 
-#: ../../mod/settings.php:1088
-msgid "Leave password fields blank unless changing"
-msgstr "Deixe os campos de senha em branco, a não ser que você queira alterá-la"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Gerenciar identidades e/ou páginas"
 
-#: ../../mod/settings.php:1089
-msgid "Current Password:"
-msgstr "Senha Atual:"
+#: ../../mod/manage.php:107
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\""
 
-#: ../../mod/settings.php:1089 ../../mod/settings.php:1090
-msgid "Your current password to confirm the changes"
-msgstr "Sua senha atual para confirmar as mudanças"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Selecione uma identidade para gerenciar: "
 
-#: ../../mod/settings.php:1090
-msgid "Password:"
-msgstr "Senha:"
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Nenhuma página delegada potencial localizada."
 
-#: ../../mod/settings.php:1094
-msgid "Basic Settings"
-msgstr "Configurações básicas"
+#: ../../mod/delegate.php:124 ../../include/nav.php:167
+msgid "Delegate Page Management"
+msgstr "Delegar Administração de Página"
 
-#: ../../mod/settings.php:1095 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "Nome completo:"
+#: ../../mod/delegate.php:126
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente."
 
-#: ../../mod/settings.php:1096
-msgid "Email Address:"
-msgstr "Endereço de e-mail:"
+#: ../../mod/delegate.php:127
+msgid "Existing Page Managers"
+msgstr "Administradores de Páginas Existentes"
 
-#: ../../mod/settings.php:1097
-msgid "Your Timezone:"
-msgstr "Seu fuso horário:"
+#: ../../mod/delegate.php:129
+msgid "Existing Page Delegates"
+msgstr "Delegados de Páginas Existentes"
 
-#: ../../mod/settings.php:1098
-msgid "Default Post Location:"
-msgstr "Localização padrão de suas publicações:"
+#: ../../mod/delegate.php:131
+msgid "Potential Delegates"
+msgstr "Delegados Potenciais"
 
-#: ../../mod/settings.php:1099
-msgid "Use Browser Location:"
-msgstr "Usar localizador do navegador:"
+#: ../../mod/delegate.php:134
+msgid "Add"
+msgstr "Adicionar"
 
-#: ../../mod/settings.php:1102
-msgid "Security and Privacy Settings"
-msgstr "Configurações de segurança e privacidade"
+#: ../../mod/delegate.php:135
+msgid "No entries."
+msgstr "Sem entradas."
 
-#: ../../mod/settings.php:1104
-msgid "Maximum Friend Requests/Day:"
-msgstr "Número máximo de requisições de amizade por dia:"
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "Nenhum contato."
 
-#: ../../mod/settings.php:1104 ../../mod/settings.php:1134
-msgid "(to prevent spam abuse)"
-msgstr "(para prevenir abuso de spammers)"
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:874
+msgid "View Contacts"
+msgstr "Ver contatos"
 
-#: ../../mod/settings.php:1105
-msgid "Default Post Permissions"
-msgstr "Permissões padrão de publicação"
+#: ../../mod/notes.php:44 ../../boot.php:2010
+msgid "Personal Notes"
+msgstr "Notas pessoais"
 
-#: ../../mod/settings.php:1106
-msgid "(click to open/close)"
-msgstr "(clique para abrir/fechar)"
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Cutucar/Incitar"
 
-#: ../../mod/settings.php:1115 ../../mod/photos.php:1140
-#: ../../mod/photos.php:1506
-msgid "Show to Groups"
-msgstr "Mostre para Grupos"
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "Cutuca, incita ou faz outras coisas com alguém"
 
-#: ../../mod/settings.php:1116 ../../mod/photos.php:1141
-#: ../../mod/photos.php:1507
-msgid "Show to Contacts"
-msgstr "Mostre para Contatos"
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Destinatário"
 
-#: ../../mod/settings.php:1117
-msgid "Default Private Post"
-msgstr "Publicação Privada Padrão"
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Selecione o que você deseja fazer com o destinatário"
 
-#: ../../mod/settings.php:1118
-msgid "Default Public Post"
-msgstr "Publicação Pública Padrão"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Fazer com que essa publicação se torne privada"
 
-#: ../../mod/settings.php:1122
-msgid "Default Permissions for New Posts"
-msgstr "Permissões Padrão para Publicações Novas"
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:525
+msgid "Global Directory"
+msgstr "Diretório global"
 
-#: ../../mod/settings.php:1134
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Número máximo de mensagens privadas de pessoas desconhecidas, por dia:"
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "Pesquisar neste site"
 
-#: ../../mod/settings.php:1137
-msgid "Notification Settings"
-msgstr "Configurações de notificação"
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "Diretório do site"
 
-#: ../../mod/settings.php:1138
-msgid "By default post a status message when:"
-msgstr "Por padrão, publicar uma mensagem de status quando:"
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "Gênero: "
 
-#: ../../mod/settings.php:1139
-msgid "accepting a friend request"
-msgstr "aceitar uma requisição de amizade"
+#: ../../mod/directory.php:136 ../../boot.php:1515
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Gênero:"
 
-#: ../../mod/settings.php:1140
-msgid "joining a forum/community"
-msgstr "associar-se a um fórum/comunidade"
+#: ../../mod/directory.php:138 ../../boot.php:1518
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
+msgstr "Situação:"
 
-#: ../../mod/settings.php:1141
-msgid "making an <em>interesting</em> profile change"
-msgstr "fazer uma modificação <em>interessante</em> em seu perfil"
+#: ../../mod/directory.php:140 ../../boot.php:1520
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
+msgstr "Página web:"
 
-#: ../../mod/settings.php:1142
-msgid "Send a notification email when:"
-msgstr "Enviar um e-mail de notificação sempre que:"
+#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "Sobre:"
 
-#: ../../mod/settings.php:1143
-msgid "You receive an introduction"
-msgstr "Você recebeu uma apresentação"
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr "Nenhuma entrada (algumas entradas podem estar ocultas)."
 
-#: ../../mod/settings.php:1144
-msgid "Your introductions are confirmed"
-msgstr "Suas apresentações forem confirmadas"
+#: ../../mod/localtime.php:12 ../../include/event.php:11
+#: ../../include/bb2diaspora.php:133
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ H:i"
 
-#: ../../mod/settings.php:1145
-msgid "Someone writes on your profile wall"
-msgstr "Alguém escrever no mural do seu perfil"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Conversão de tempo"
 
-#: ../../mod/settings.php:1146
-msgid "Someone writes a followup comment"
-msgstr "Alguém comentar a sua mensagem"
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos."
 
-#: ../../mod/settings.php:1147
-msgid "You receive a private message"
-msgstr "Você recebeu uma mensagem privada"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "Hora UTC: %s"
 
-#: ../../mod/settings.php:1148
-msgid "You receive a friend suggestion"
-msgstr "Você recebe uma suggestão de amigo"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Fuso horário atual: %s"
 
-#: ../../mod/settings.php:1149
-msgid "You are tagged in a post"
-msgstr "Você foi etiquetado em uma publicação"
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Horário local convertido: %s"
 
-#: ../../mod/settings.php:1150
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Você está cutucado/incitado/etc. em uma publicação"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Por favor, selecione seu fuso horário:"
 
-#: ../../mod/settings.php:1153
-msgid "Advanced Account/Page Type Settings"
-msgstr "Conta avançada/Configurações do tipo de página"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Publicado com sucesso."
 
-#: ../../mod/settings.php:1154
-msgid "Change the behaviour of this account for special situations"
-msgstr "Modificar o comportamento desta conta em situações especiais"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "A imagem foi enviada, mas não foi possível cortá-la."
 
-#: ../../mod/settings.php:1157
-msgid "Relocate"
-msgstr "Relocação"
+#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
+#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Não foi possível reduzir o tamanho da imagem [%s]."
 
-#: ../../mod/settings.php:1158
+#: ../../mod/profile_photo.php:118
 msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
-msgstr "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente"
 
-#: ../../mod/settings.php:1159
-msgid "Resend relocate message to contacts"
-msgstr "Reenviar mensagem de relocação para os contatos"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Não foi possível processar a imagem"
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "O perfil foi excluído."
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Enviar arquivo:"
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Perfil-"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Selecione um perfil:"
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "O novo perfil foi criado."
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Enviar"
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "O perfil não está disponível para clonagem."
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "pule esta etapa"
 
-#: ../../mod/profiles.php:170
-msgid "Profile Name is required."
-msgstr "É necessário informar o nome do perfil."
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "selecione uma foto de um álbum de fotos"
 
-#: ../../mod/profiles.php:317
-msgid "Marital Status"
-msgstr "Situação amorosa"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Cortar a imagem"
 
-#: ../../mod/profiles.php:321
-msgid "Romantic Partner"
-msgstr "Parceiro romântico"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Por favor, ajuste o corte da imagem para a melhor visualização."
 
-#: ../../mod/profiles.php:325
-msgid "Likes"
-msgstr "Gosta de"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Encerrar a edição"
 
-#: ../../mod/profiles.php:329
-msgid "Dislikes"
-msgstr "Não gosta de"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "A imagem foi enviada com sucesso."
 
-#: ../../mod/profiles.php:333
-msgid "Work/Employment"
-msgstr "Trabalho/emprego"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Servidor de Comunicações Friendica - Configuração"
 
-#: ../../mod/profiles.php:336
-msgid "Religion"
-msgstr "Religião"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Não foi possível conectar ao banco de dados."
 
-#: ../../mod/profiles.php:340
-msgid "Political Views"
-msgstr "Posicionamento político"
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Não foi possível criar tabela."
 
-#: ../../mod/profiles.php:344
-msgid "Gender"
-msgstr "Gênero"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "O banco de dados do seu site Friendica foi instalado."
 
-#: ../../mod/profiles.php:348
-msgid "Sexual Preference"
-msgstr "Preferência sexual"
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql."
 
-#: ../../mod/profiles.php:352
-msgid "Homepage"
-msgstr "Página Principal"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:521
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"."
 
-#: ../../mod/profiles.php:356
-msgid "Interests"
-msgstr "Interesses"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Checagem do sistema"
 
-#: ../../mod/profiles.php:360
-msgid "Address"
-msgstr "Endereço"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Checar novamente"
 
-#: ../../mod/profiles.php:367
-msgid "Location"
-msgstr "Localização"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Conexão de banco de dados"
 
-#: ../../mod/profiles.php:450
-msgid "Profile updated."
-msgstr "O perfil foi atualizado."
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados."
 
-#: ../../mod/profiles.php:521
-msgid " and "
-msgstr " e "
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações."
 
-#: ../../mod/profiles.php:529
-msgid "public profile"
-msgstr "perfil público"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar."
 
-#: ../../mod/profiles.php:532
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s mudou %2$s para &ldquo;%3$s&rdquo;"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Nome do servidor de banco de dados"
 
-#: ../../mod/profiles.php:533
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Visite %2$s de %1$s"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Nome do usuário do banco de dados"
 
-#: ../../mod/profiles.php:536
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s foi atualizado %2$s, mudando %3$s."
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Senha do usuário do banco de dados"
 
-#: ../../mod/profiles.php:609
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Nome do banco de dados"
 
-#: ../../mod/profiles.php:629
-msgid "Edit Profile Details"
-msgstr "Editar os detalhes do perfil"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Endereço de email do administrador do site"
 
-#: ../../mod/profiles.php:631
-msgid "Change Profile Photo"
-msgstr "Mudar Foto do Perfil"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."
 
-#: ../../mod/profiles.php:632
-msgid "View this profile"
-msgstr "Ver este perfil"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Por favor, selecione o fuso horário padrão para o seu site"
 
-#: ../../mod/profiles.php:633
-msgid "Create a new profile using these settings"
-msgstr "Criar um novo perfil usando estas configurações"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Configurações do site"
 
-#: ../../mod/profiles.php:634
-msgid "Clone this profile"
-msgstr "Clonar este perfil"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web."
 
-#: ../../mod/profiles.php:635
-msgid "Delete this profile"
-msgstr "Excluir este perfil"
+#: ../../mod/install.php:322
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../mod/profiles.php:636
-msgid "Profile Name:"
-msgstr "Nome do perfil:"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Caminho para o executável do PhP"
 
-#: ../../mod/profiles.php:637
-msgid "Your Full Name:"
-msgstr "Seu nome completo:"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."
 
-#: ../../mod/profiles.php:638
-msgid "Title/Description:"
-msgstr "Título/Descrição:"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "PHP em linha de comando"
 
-#: ../../mod/profiles.php:639
-msgid "Your Gender:"
-msgstr "Seu gênero:"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)"
 
-#: ../../mod/profiles.php:640
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Aniversário (%s):"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Encontrado PHP versão:"
 
-#: ../../mod/profiles.php:641
-msgid "Street Address:"
-msgstr "Endereço:"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "Binário cli do PHP"
 
-#: ../../mod/profiles.php:642
-msgid "Locality/City:"
-msgstr "Localidade/Cidade:"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."
 
-#: ../../mod/profiles.php:643
-msgid "Postal/Zip Code:"
-msgstr "CEP:"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Isto é necessário para o funcionamento do envio de mensagens."
 
-#: ../../mod/profiles.php:644
-msgid "Country:"
-msgstr "País:"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/profiles.php:645
-msgid "Region/State:"
-msgstr "Região/Estado:"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"
 
-#: ../../mod/profiles.php:646
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Situação amorosa:"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../mod/profiles.php:647
-msgid "Who: (if applicable)"
-msgstr "Quem: (se pertinente)"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Gerar chaves de encriptação"
 
-#: ../../mod/profiles.php:648
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "Módulo PHP libCurl"
 
-#: ../../mod/profiles.php:649
-msgid "Since [date]:"
-msgstr "Desde [data]:"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "Módulo PHP GD graphics"
 
-#: ../../mod/profiles.php:650 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Preferência sexual:"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "Módulo PHP OpenSSL"
 
-#: ../../mod/profiles.php:651
-msgid "Homepage URL:"
-msgstr "Endereço do site web:"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "Módulo PHP mysqli"
 
-#: ../../mod/profiles.php:652 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr "Cidade:"
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "Módulo PHP mb_string "
 
-#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Posição política:"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Módulo mod_rewrite do Apache"
 
-#: ../../mod/profiles.php:654
-msgid "Religious Views:"
-msgstr "Orientação religiosa:"
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."
 
-#: ../../mod/profiles.php:655
-msgid "Public Keywords:"
-msgstr "Palavras-chave públicas:"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."
 
-#: ../../mod/profiles.php:656
-msgid "Private Keywords:"
-msgstr "Palavras-chave privadas:"
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."
 
-#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "Gosta de:"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Erro: o módulo openssl do PHP é necessário, mas não está instalado."
 
-#: ../../mod/profiles.php:658 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "Não gosta de:"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Erro: o módulo mysqli do PHP é necessário, mas não está instalado."
 
-#: ../../mod/profiles.php:659
-msgid "Example: fishing photography software"
-msgstr "Exemplo: pesca fotografia software"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Erro: o módulo mb_string PHP é necessário, mas não está instalado."
 
-#: ../../mod/profiles.php:660
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)"
+#: ../../mod/install.php:438
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."
 
-#: ../../mod/profiles.php:661
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Usado na pesquisa de perfis, nunca é exibido para os outros)"
+#: ../../mod/install.php:439
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."
 
-#: ../../mod/profiles.php:662
-msgid "Tell us about yourself..."
-msgstr "Fale um pouco sobre você..."
+#: ../../mod/install.php:440
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica."
 
-#: ../../mod/profiles.php:663
-msgid "Hobbies/Interests"
-msgstr "Passatempos/Interesses"
+#: ../../mod/install.php:441
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções."
 
-#: ../../mod/profiles.php:664
-msgid "Contact information and Social Networks"
-msgstr "Informações de contato e redes sociais"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php tem permissão de escrita"
 
-#: ../../mod/profiles.php:665
-msgid "Musical interests"
-msgstr "Preferências musicais"
+#: ../../mod/install.php:454
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização."
 
-#: ../../mod/profiles.php:666
-msgid "Books, literature"
-msgstr "Livros, literatura"
+#: ../../mod/install.php:455
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica."
 
-#: ../../mod/profiles.php:667
-msgid "Television"
-msgstr "Televisão"
+#: ../../mod/install.php:456
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."
 
-#: ../../mod/profiles.php:668
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/dança/cultura/entretenimento"
+#: ../../mod/install.php:457
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém."
 
-#: ../../mod/profiles.php:669
-msgid "Love/romance"
-msgstr "Amor/romance"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 tem escrita permitida"
 
-#: ../../mod/profiles.php:670
-msgid "Work/employment"
-msgstr "Trabalho/emprego"
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor."
 
-#: ../../mod/profiles.php:671
-msgid "School/education"
-msgstr "Escola/educação"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "A reescrita de URLs está funcionando"
 
-#: ../../mod/profiles.php:676
+#: ../../mod/install.php:484
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet."
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."
 
-#: ../../mod/profiles.php:725
-msgid "Edit/Manage Profiles"
-msgstr "Editar/Gerenciar perfis"
+#: ../../mod/install.php:508
+msgid "Errors encountered creating database tables."
+msgstr "Foram encontrados erros durante a criação das tabelas do banco de dados."
+
+#: ../../mod/install.php:519
+msgid "<h1>What next</h1>"
+msgstr "<h1>A seguir</h1>"
+
+#: ../../mod/install.php:520
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador."
 
 #: ../../mod/group.php:29
 msgid "Group created."
@@ -4475,2015 +5023,1723 @@ msgstr "Editor de grupo"
 msgid "Members"
 msgstr "Membros"
 
-#: ../../mod/group.php:224 ../../mod/profperm.php:105
-msgid "Click on a contact to add or remove."
-msgstr "Clique em um contato para adicionar ou remover."
-
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Texto fonte (bbcode):"
-
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Texto fonte (Diaspora) a converter para BBcode:"
-
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Entrada fonte:"
-
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (HTML puro):"
-
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
-
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
-
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
-
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
-
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
-
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
-
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Fonte de entrada (formato Diaspora):"
-
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
-
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Não disponível."
-
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "O contato foi adicionado"
-
-#: ../../mod/notify.php:61 ../../mod/notifications.php:332
-msgid "No more system notifications."
-msgstr "Não fazer notificações de sistema."
-
-#: ../../mod/notify.php:65 ../../mod/notifications.php:336
-msgid "System Notifications"
-msgstr "Notificações de sistema"
-
-#: ../../mod/message.php:9 ../../include/nav.php:159
-msgid "New Message"
-msgstr "Nova mensagem"
-
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Não foi possível localizar informação do contato."
-
-#: ../../mod/message.php:182 ../../mod/notifications.php:103
-#: ../../include/nav.php:156
-msgid "Messages"
-msgstr "Mensagens"
-
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Você realmente deseja deletar essa mensagem?"
-
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "A mensagem foi excluída."
-
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "A conversa foi removida."
-
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Nenhuma mensagem."
-
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Remetente desconhecido - %s"
-
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Você e %s"
-
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s e você"
-
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Excluir conversa"
-
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
-
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d mensagem"
-msgstr[1] "%d mensagens"
-
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "A mensagem não está disponível."
-
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Excluir a mensagem"
-
-#: ../../mod/message.php:548
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente."
-
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Enviar resposta"
-
-#: ../../mod/like.php:170 ../../include/conversation.php:140
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s não gosta de %3$s de %2$s"
-
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Publicado com sucesso."
-
-#: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:393
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ H:i"
-
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Conversão de tempo"
-
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos."
-
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "Hora UTC: %s"
-
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Fuso horário atual: %s"
-
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Horário local convertido: %s"
-
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Por favor, selecione seu fuso horário:"
-
-#: ../../mod/filer.php:30 ../../include/conversation.php:1001
-#: ../../include/conversation.php:1019
-msgid "Save to Folder:"
-msgstr "Salvar na pasta:"
-
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "-selecione-"
-
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Identificador de perfil inválido."
-
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Editor de visibilidade do perfil"
-
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Visível para"
-
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Todos os contatos (com acesso a perfil seguro)"
-
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Nenhum contato."
-
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:850
-msgid "View Contacts"
-msgstr "Ver contatos"
-
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Pesquisar pessoas"
-
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Nenhuma correspondência"
-
-#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
-msgid "Upload New Photos"
-msgstr "Enviar novas fotos"
-
-#: ../../mod/photos.php:143
-msgid "Contact information unavailable"
-msgstr "A informação de contato não está disponível"
-
-#: ../../mod/photos.php:164
-msgid "Album not found."
-msgstr "O álbum não foi encontrado."
-
-#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
-msgid "Delete Album"
-msgstr "Excluir o álbum"
-
-#: ../../mod/photos.php:197
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?"
-
-#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
-msgid "Delete Photo"
-msgstr "Excluir a foto"
-
-#: ../../mod/photos.php:285
-msgid "Do you really want to delete this photo?"
-msgstr "Você realmente deseja deletar essa foto?"
-
-#: ../../mod/photos.php:656
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s foi marcado em %2$s por %3$s"
-
-#: ../../mod/photos.php:656
-msgid "a photo"
-msgstr "uma foto"
-
-#: ../../mod/photos.php:761
-msgid "Image exceeds size limit of "
-msgstr "A imagem excede o tamanho máximo de "
-
-#: ../../mod/photos.php:769
-msgid "Image file is empty."
-msgstr "O arquivo de imagem está vazio."
-
-#: ../../mod/photos.php:801 ../../mod/wall_upload.php:112
-#: ../../mod/profile_photo.php:153
-msgid "Unable to process image."
-msgstr "Não foi possível processar a imagem."
+#: ../../mod/content.php:119 ../../mod/network.php:514
+msgid "No such group"
+msgstr "Este grupo não existe"
 
-#: ../../mod/photos.php:828 ../../mod/wall_upload.php:138
-#: ../../mod/profile_photo.php:301
-msgid "Image upload failed."
-msgstr "Não foi possível enviar a imagem."
+#: ../../mod/content.php:130 ../../mod/network.php:531
+msgid "Group is empty"
+msgstr "O grupo está vazio"
 
-#: ../../mod/photos.php:924
-msgid "No photos selected"
-msgstr "Não foi selecionada nenhuma foto"
+#: ../../mod/content.php:134 ../../mod/network.php:538
+msgid "Group: "
+msgstr "Grupo: "
 
-#: ../../mod/photos.php:1025 ../../mod/videos.php:226
-msgid "Access to this item is restricted."
-msgstr "O acesso a este item é restrito."
+#: ../../mod/content.php:496 ../../include/conversation.php:688
+msgid "View in context"
+msgstr "Ver no contexto"
+
+#: ../../mod/regmod.php:63
+msgid "Account approved."
+msgstr "A conta foi aprovada."
 
-#: ../../mod/photos.php:1088
+#: ../../mod/regmod.php:100
 #, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos."
+msgid "Registration revoked for %s"
+msgstr "O registro de %s foi revogado"
 
-#: ../../mod/photos.php:1123
-msgid "Upload Photos"
-msgstr "Enviar fotos"
+#: ../../mod/regmod.php:112
+msgid "Please login."
+msgstr "Por favor, autentique-se."
 
-#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
-msgid "New album name: "
-msgstr "Nome do novo álbum: "
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Correspondência de perfil"
 
-#: ../../mod/photos.php:1128
-msgid "or existing album name: "
-msgstr "ou o nome de um álbum já existente: "
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão."
 
-#: ../../mod/photos.php:1129
-msgid "Do not show a status post for this upload"
-msgstr "Não exiba uma publicação de status para este envio"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "se interessa por:"
 
-#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
-msgid "Permissions"
-msgstr "Permissões"
+#: ../../mod/item.php:110
+msgid "Unable to locate original post."
+msgstr "Não foi possível localizar a publicação original."
 
-#: ../../mod/photos.php:1142
-msgid "Private Photo"
-msgstr "Foto Privada"
+#: ../../mod/item.php:319
+msgid "Empty post discarded."
+msgstr "A publicação em branco foi descartada."
 
-#: ../../mod/photos.php:1143
-msgid "Public Photo"
-msgstr "Foto Pública"
+#: ../../mod/item.php:891
+msgid "System error. Post not saved."
+msgstr "Erro no sistema. A publicação não foi salva."
 
-#: ../../mod/photos.php:1210
-msgid "Edit Album"
-msgstr "Editar o álbum"
+#: ../../mod/item.php:917
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica."
 
-#: ../../mod/photos.php:1216
-msgid "Show Newest First"
-msgstr "Exibir as mais recentes primeiro"
+#: ../../mod/item.php:919
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Você pode visitá-lo em %s"
 
-#: ../../mod/photos.php:1218
-msgid "Show Oldest First"
-msgstr "Exibir as mais antigas primeiro"
+#: ../../mod/item.php:920
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens."
 
-#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
-msgid "View Photo"
-msgstr "Ver a foto"
+#: ../../mod/item.php:924
+#, php-format
+msgid "%s posted an update."
+msgstr "%s publicou uma atualização."
 
-#: ../../mod/photos.php:1286
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Permissão negada. O acesso a este item pode estar restrito."
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s atualmente está %2$s"
 
-#: ../../mod/photos.php:1288
-msgid "Photo not available"
-msgstr "A foto não está disponível"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Humor"
 
-#: ../../mod/photos.php:1344
-msgid "View photo"
-msgstr "Ver a imagem"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Defina o seu humor e conte aos seus amigos"
 
-#: ../../mod/photos.php:1344
-msgid "Edit photo"
-msgstr "Editar a foto"
+#: ../../mod/network.php:136
+msgid "Search Results For:"
+msgstr "Resultados de Busca Por:"
 
-#: ../../mod/photos.php:1345
-msgid "Use as profile photo"
-msgstr "Usar como uma foto de perfil"
+#: ../../mod/network.php:189 ../../include/group.php:275
+msgid "add"
+msgstr "adicionar"
 
-#: ../../mod/photos.php:1370
-msgid "View Full Size"
-msgstr "Ver no tamanho real"
+#: ../../mod/network.php:350
+msgid "Commented Order"
+msgstr "Ordem dos comentários"
 
-#: ../../mod/photos.php:1444
-msgid "Tags: "
-msgstr "Etiquetas: "
+#: ../../mod/network.php:353
+msgid "Sort by Comment Date"
+msgstr "Ordenar pela data do comentário"
 
-#: ../../mod/photos.php:1447
-msgid "[Remove any tag]"
-msgstr "[Remover qualquer etiqueta]"
+#: ../../mod/network.php:356
+msgid "Posted Order"
+msgstr "Ordem das publicações"
 
-#: ../../mod/photos.php:1487
-msgid "Rotate CW (right)"
-msgstr "Rotacionar para direita"
+#: ../../mod/network.php:359
+msgid "Sort by Post Date"
+msgstr "Ordenar pela data de publicação"
 
-#: ../../mod/photos.php:1488
-msgid "Rotate CCW (left)"
-msgstr "Rotacionar para esquerda"
+#: ../../mod/network.php:368
+msgid "Posts that mention or involve you"
+msgstr "Publicações que mencionem ou envolvam você"
 
-#: ../../mod/photos.php:1490
-msgid "New album name"
-msgstr "Novo nome para o álbum"
+#: ../../mod/network.php:374
+msgid "New"
+msgstr "Nova"
 
-#: ../../mod/photos.php:1493
-msgid "Caption"
-msgstr "Legenda"
+#: ../../mod/network.php:377
+msgid "Activity Stream - by date"
+msgstr "Fluxo de atividades - por data"
 
-#: ../../mod/photos.php:1495
-msgid "Add a Tag"
-msgstr "Adicionar uma etiqueta"
+#: ../../mod/network.php:383
+msgid "Shared Links"
+msgstr "Links compartilhados"
 
-#: ../../mod/photos.php:1499
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento"
+#: ../../mod/network.php:386
+msgid "Interesting Links"
+msgstr "Links interessantes"
 
-#: ../../mod/photos.php:1508
-msgid "Private photo"
-msgstr "Foto privada"
+#: ../../mod/network.php:392
+msgid "Starred"
+msgstr "Destacada"
 
-#: ../../mod/photos.php:1509
-msgid "Public photo"
-msgstr "Foto pública"
+#: ../../mod/network.php:395
+msgid "Favourite Posts"
+msgstr "Publicações favoritas"
 
-#: ../../mod/photos.php:1531 ../../include/conversation.php:1080
-msgid "Share"
-msgstr "Compartilhar"
+#: ../../mod/network.php:457
+#, php-format
+msgid "Warning: This group contains %s member from an insecure network."
+msgid_plural ""
+"Warning: This group contains %s members from an insecure network."
+msgstr[0] "Aviso: Este grupo contém %s membro de uma rede insegura."
+msgstr[1] "Aviso: Este grupo contém %s membros de uma rede insegura."
 
-#: ../../mod/photos.php:1784 ../../mod/videos.php:308
-msgid "View Album"
-msgstr "Ver álbum"
+#: ../../mod/network.php:460
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública."
 
-#: ../../mod/photos.php:1793
-msgid "Recent Photos"
-msgstr "Fotos recentes"
+#: ../../mod/network.php:548
+msgid "Contact: "
+msgstr "Contato: "
 
-#: ../../mod/wall_attach.php:69
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "O arquivo excedeu o tamanho limite de %d"
+#: ../../mod/network.php:550
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública."
 
-#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
-msgid "File upload failed."
-msgstr "Não foi possível enviar o arquivo."
+#: ../../mod/network.php:555
+msgid "Invalid contact."
+msgstr "Contato inválido."
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Nenhum vídeo selecionado"
+#: ../../mod/crepair.php:104
+msgid "Contact settings applied."
+msgstr "As configurações do contato foram aplicadas."
 
-#: ../../mod/videos.php:301 ../../include/text.php:1376
-msgid "View Video"
-msgstr "Ver Vídeo"
+#: ../../mod/crepair.php:106
+msgid "Contact update failed."
+msgstr "Não foi possível atualizar o contato."
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Vídeos Recentes"
+#: ../../mod/crepair.php:137
+msgid "Repair Contact Settings"
+msgstr "Corrigir configurações do contato"
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Envie Novos Vídeos"
+#: ../../mod/crepair.php:139
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar."
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Cutucar/Incitar"
+#: ../../mod/crepair.php:140
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo."
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "Cutuca, incita ou faz outras coisas com alguém"
+#: ../../mod/crepair.php:146
+msgid "Return to contact editor"
+msgstr "Voltar ao editor de contatos"
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Destinatário"
+#: ../../mod/crepair.php:151
+msgid "Account Nickname"
+msgstr "Identificação da conta"
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Selecione o que você deseja fazer com o destinatário"
+#: ../../mod/crepair.php:152
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - sobrescreve Nome/Identificação"
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Fazer com que essa publicação se torne privada"
+#: ../../mod/crepair.php:153
+msgid "Account URL"
+msgstr "URL da conta"
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s está seguindo %2$s's %3$s"
+#: ../../mod/crepair.php:154
+msgid "Friend Request URL"
+msgstr "URL da requisição de amizade"
 
-#: ../../mod/uexport.php:72
-msgid "Export account"
-msgstr "Exportar conta"
+#: ../../mod/crepair.php:155
+msgid "Friend Confirm URL"
+msgstr "URL da confirmação de amizade"
 
-#: ../../mod/uexport.php:72
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor."
+#: ../../mod/crepair.php:156
+msgid "Notification Endpoint URL"
+msgstr "URL do ponto final da notificação"
+
+#: ../../mod/crepair.php:157
+msgid "Poll/Feed URL"
+msgstr "URL do captador/fonte de notícias"
+
+#: ../../mod/crepair.php:158
+msgid "New photo from this URL"
+msgstr "Nova imagem desta URL"
 
-#: ../../mod/uexport.php:73
-msgid "Export all"
-msgstr "Exportar tudo"
+#: ../../mod/crepair.php:159
+msgid "Remote Self"
+msgstr "Auto remoto"
 
-#: ../../mod/uexport.php:73
+#: ../../mod/crepair.php:161
+msgid "Mirror postings from this contact"
+msgstr "Espelhar publicações deste contato"
+
+#: ../../mod/crepair.php:161
 msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)"
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Marcar este contato como auto remoto fará com que o friendica republique novas entradas deste usuário."
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Amigos em Comum"
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:145
+msgid "Your posts and conversations"
+msgstr "Suas publicações e conversas"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Nenhum contato em comum."
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Sua página de perfil"
 
-#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "A imagem excede o limite de tamanho de %d"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Seus contatos"
 
-#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
-#: ../../mod/wall_upload.php:151 ../../mod/item.php:446
-#: ../../include/message.php:144
-msgid "Wall Photos"
-msgstr "Fotos do mural"
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Suas fotos"
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "A imagem foi enviada, mas não foi possível cortá-la."
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
+msgid "Your events"
+msgstr "Seus eventos"
 
-#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
-#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Não foi possível reduzir o tamanho da imagem [%s]."
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Personal notes"
+msgstr "Suas anotações pessoais"
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente"
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Your personal photos"
+msgstr "Suas fotos pessoais"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Não foi possível processar a imagem"
+#: ../../view/theme/diabook/theme.php:130
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:624
+#: ../../view/theme/diabook/config.php:158
+msgid "Community Pages"
+msgstr "Páginas da Comunidade"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Enviar arquivo:"
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+#: ../../view/theme/diabook/config.php:160
+msgid "Community Profiles"
+msgstr "Profiles Comunitários"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Selecione um perfil:"
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+#: ../../view/theme/diabook/config.php:164
+msgid "Last users"
+msgstr "Últimos usuários"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Enviar"
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:166
+msgid "Last likes"
+msgstr "Últimas gostadas"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "pule esta etapa"
+#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1953
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+msgid "event"
+msgstr "evento"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "selecione uma foto de um álbum de fotos"
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+#: ../../view/theme/diabook/config.php:165
+msgid "Last photos"
+msgstr "Últimas fotos"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Cortar a imagem"
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:163
+msgid "Find Friends"
+msgstr "Encontrar amigos"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Por favor, ajuste o corte da imagem para a melhor visualização."
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Diretório Local"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Encerrar a edição"
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
+msgid "Similar Interests"
+msgstr "Interesses Parecidos"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "A imagem foi enviada com sucesso."
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
+msgid "Invite Friends"
+msgstr "Convidar amigos"
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Aplicativos"
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+#: ../../view/theme/diabook/config.php:159
+msgid "Earth Layers"
+msgstr "Camadas da Terra"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Nenhum aplicativo instalado"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Configure o zoom para Camadas da Terra"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "Nada de novo aqui"
+#: ../../view/theme/diabook/theme.php:585
+#: ../../view/theme/diabook/config.php:156
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Configure longitude (X) para Camadas da Terra"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr "Descartar notificações"
+#: ../../view/theme/diabook/theme.php:586
+#: ../../view/theme/diabook/config.php:157
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Configure latitude (Y) para Camadas da Terra"
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Correspondência de perfil"
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+#: ../../view/theme/diabook/config.php:161
+msgid "Help or @NewHere ?"
+msgstr "Ajuda ou @NewHere ?"
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão."
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+#: ../../view/theme/diabook/config.php:162
+msgid "Connect Services"
+msgstr "Conectar serviços"
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "se interessa por:"
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328
+msgid "don't show"
+msgstr "não exibir"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "A etiqueta foi removida"
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
+msgid "show"
+msgstr "exibir"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Remover a etiqueta do item"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Mostre/esconda caixas na coluna à direita:"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Selecione uma etiqueta para remover: "
+#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:49
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+#: ../../view/theme/cleanzero/config.php:82
+msgid "Theme settings"
+msgstr "Configurações do tema"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
-msgid "Remove"
-msgstr "Remover"
+#: ../../view/theme/diabook/config.php:151
+#: ../../view/theme/dispy/config.php:73
+#: ../../view/theme/cleanzero/config.php:84
+msgid "Set font-size for posts and comments"
+msgstr "Escolha o tamanho da fonte para publicações e comentários"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "O título do evento e a hora de início são obrigatórios."
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Escolha comprimento da linha para publicações e comentários"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Escolha a resolução para a coluna do meio"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Editar o evento"
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Configure o esquema de cores"
 
-#: ../../mod/events.php:335 ../../include/text.php:1606
-msgid "link to source"
-msgstr "exibir a origem"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Configure o zoom para Camadas da Terra"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Criar um novo evento"
+#: ../../view/theme/vier/config.php:50
+msgid "Set style"
+msgstr "escolha estilo"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Anterior"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Configure o esquema de cores"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "hora:minuto"
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Alinhamento"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Detalhes do evento"
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Esquerda"
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "O formato é %s %s. O título e a data de início são obrigatórios."
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Centro"
+
+#: ../../view/theme/quattro/config.php:68
+#: ../../view/theme/cleanzero/config.php:86
+msgid "Color scheme"
+msgstr "Esquema de cores"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Início do evento:"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Tamanho da fonte para publicações"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Obrigatório"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Tamanho da fonte para campos texto"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "A data/hora de término não é conhecida ou não é relevante"
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Término do evento:"
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Configure a largura do tema"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Ajustar para o fuso horário do visualizador"
+#: ../../boot.php:692
+msgid "Delete this item?"
+msgstr "Excluir este item?"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Descrição:"
+#: ../../boot.php:695
+msgid "show fewer"
+msgstr "exibir menos"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Título:"
+#: ../../boot.php:1023
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Atualização %s falhou. Vide registro de erros (log)."
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Compartilhar este evento"
+#: ../../boot.php:1025
+#, php-format
+msgid "Update Error at %s"
+msgstr "Erro de Atualização em %s"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Nenhuma página delegada potencial localizada."
+#: ../../boot.php:1135
+msgid "Create a New Account"
+msgstr "Criar uma nova conta"
 
-#: ../../mod/delegate.php:121 ../../include/nav.php:165
-msgid "Delegate Page Management"
-msgstr "Delegar Administração de Página"
+#: ../../boot.php:1160 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Sair"
 
-#: ../../mod/delegate.php:123
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente."
+#: ../../boot.php:1161 ../../include/nav.php:91
+msgid "Login"
+msgstr "Entrar"
 
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr "Administradores de Páginas Existentes"
+#: ../../boot.php:1163
+msgid "Nickname or Email address: "
+msgstr "Identificação ou endereço de e-mail: "
 
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr "Delegados de Páginas Existentes"
+#: ../../boot.php:1164
+msgid "Password: "
+msgstr "Senha: "
 
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "Delegados Potenciais"
+#: ../../boot.php:1165
+msgid "Remember me"
+msgstr "Lembre-se de mim"
 
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Adicionar"
+#: ../../boot.php:1168
+msgid "Or login using OpenID: "
+msgstr "Ou login usando OpendID:"
 
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Sem entradas."
+#: ../../boot.php:1174
+msgid "Forgot your password?"
+msgstr "Esqueceu a sua senha?"
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Contatos que não são membros de um grupo"
+#: ../../boot.php:1177
+msgid "Website Terms of Service"
+msgstr "Termos de Serviço do Website"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Arquivos"
+#: ../../boot.php:1178
+msgid "terms of service"
+msgstr "termos de serviço"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "Sistema em manutenção"
+#: ../../boot.php:1180
+msgid "Website Privacy Policy"
+msgstr "Política de Privacidade do Website"
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
-msgstr "Remover minha conta"
+#: ../../boot.php:1181
+msgid "privacy policy"
+msgstr "política de privacidade"
 
-#: ../../mod/removeme.php:46
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la."
+#: ../../boot.php:1314
+msgid "Requested account is not available."
+msgstr "Conta solicitada não disponível"
 
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
-msgstr "Por favor, digite a sua senha para verificação:"
+#: ../../boot.php:1393 ../../boot.php:1497
+msgid "Edit profile"
+msgstr "Editar perfil"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "A sugestão de amigo foi enviada"
+#: ../../boot.php:1459
+msgid "Message"
+msgstr "Mensagem"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Sugerir amigos"
+#: ../../boot.php:1467 ../../include/nav.php:171
+msgid "Profiles"
+msgstr "Perfis"
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Sugerir um amigo para %s"
+#: ../../boot.php:1467
+msgid "Manage/edit profiles"
+msgstr "Gerenciar/editar perfis"
 
-#: ../../mod/item.php:108
-msgid "Unable to locate original post."
-msgstr "Não foi possível localizar a publicação original."
+#: ../../boot.php:1596 ../../boot.php:1682
+msgid "g A l F d"
+msgstr "G l d F"
 
-#: ../../mod/item.php:310
-msgid "Empty post discarded."
-msgstr "A publicação em branco foi descartada."
+#: ../../boot.php:1597 ../../boot.php:1683
+msgid "F d"
+msgstr "F d"
 
-#: ../../mod/item.php:872
-msgid "System error. Post not saved."
-msgstr "Erro no sistema. A publicação não foi salva."
+#: ../../boot.php:1642 ../../boot.php:1723
+msgid "[today]"
+msgstr "[hoje]"
 
-#: ../../mod/item.php:897
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica."
+#: ../../boot.php:1654
+msgid "Birthday Reminders"
+msgstr "Lembretes de aniversário"
 
-#: ../../mod/item.php:899
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Você pode visitá-lo em %s"
+#: ../../boot.php:1655
+msgid "Birthdays this week:"
+msgstr "Aniversários nesta semana:"
 
-#: ../../mod/item.php:900
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens."
+#: ../../boot.php:1716
+msgid "[No description]"
+msgstr "[Sem descrição]"
 
-#: ../../mod/item.php:904
-#, php-format
-msgid "%s posted an update."
-msgstr "%s publicou uma atualização."
+#: ../../boot.php:1734
+msgid "Event Reminders"
+msgstr "Lembretes de eventos"
 
-#: ../../mod/ping.php:238
-msgid "{0} wants to be your friend"
-msgstr "{0} deseja ser seu amigo"
+#: ../../boot.php:1735
+msgid "Events this week:"
+msgstr "Eventos esta semana:"
 
-#: ../../mod/ping.php:243
-msgid "{0} sent you a message"
-msgstr "{0} lhe enviou uma mensagem"
+#: ../../boot.php:1972 ../../include/nav.php:76
+msgid "Status"
+msgstr "Status"
 
-#: ../../mod/ping.php:248
-msgid "{0} requested registration"
-msgstr "{0} solicitou registro"
+#: ../../boot.php:1975
+msgid "Status Messages and Posts"
+msgstr "Mensagem de Estado (status) e Publicações"
 
-#: ../../mod/ping.php:254
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} comentou a publicação de %s"
+#: ../../boot.php:1982
+msgid "Profile Details"
+msgstr "Detalhe do Perfil"
 
-#: ../../mod/ping.php:259
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} gostou da publicação de %s"
+#: ../../boot.php:1993 ../../boot.php:1996
+msgid "Videos"
+msgstr "Vídeos"
 
-#: ../../mod/ping.php:264
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} desgostou da publicação de %s"
+#: ../../boot.php:2006
+msgid "Events and Calendar"
+msgstr "Eventos e Agenda"
 
-#: ../../mod/ping.php:269
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} agora é amigo de %s"
+#: ../../boot.php:2013
+msgid "Only You Can See This"
+msgstr "Somente Você Pode Ver Isso"
 
-#: ../../mod/ping.php:274
-msgid "{0} posted"
-msgstr "{0} publicou"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Funcionalidades Gerais"
 
-#: ../../mod/ping.php:279
-#, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} etiquetou a publicação de %s com #%s"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Perfís Múltiplos"
 
-#: ../../mod/ping.php:285
-msgid "{0} mentioned you in a post"
-msgstr "{0} mencionou você em uma publicação"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Capacidade de criar perfis múltiplos"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Erro no protocolo OpenID. Não foi retornada nenhuma ID."
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Funcionalidades de Composição de Publicações"
 
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "A conta não foi encontrada e não são permitidos registros via OpenID nesse site."
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Editor Richtext"
 
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "Não foi possível autenticar."
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Habilite editor richtext"
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Identificador de solicitação inválido"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Pré-visualização da Publicação"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Descartar"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Permite pré-visualizar publicações e comentários antes de publicá-los"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Sistema"
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "Auto-menção Fóruns"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:140
-msgid "Network"
-msgstr "Rede"
+#: ../../include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:149
-msgid "Introductions"
-msgstr "Apresentações"
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Widgets da Barra Lateral da Rede"
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Exibir solicitações ignoradas"
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Buscar por Data"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Ocultar solicitações ignoradas"
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Capacidade de selecionar publicações por intervalos de data"
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Tipo de notificação:"
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Filtrar Grupo"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Sugestão de amigo"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Habilita widget para mostrar publicações da Rede somente de grupos selecionados"
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "sugerido por %s"
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Filtrar Rede"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Publicar a adição de amigo"
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Habilita widget para mostrar publicações da Rede de redes selecionadas"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "se aplicável"
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Guarde as palavras-chaves para reuso"
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Alega ser conhecido por você: "
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Abas da Rede"
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "sim"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Aba Pessoal da Rede"
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "o"
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido"
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Aprovar como:"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Aba Nova da Rede"
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Amigo"
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Compartilhador"
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "Aba de Links Compartilhados da Rede"
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fã/Admirador"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Habilite aba para mostrar somente publicações da Rede que contenham links"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Solicitação de amizade/conexão"
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Ferramentas de Publicação/Comentário"
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Novo acompanhante"
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Deleção Multipla"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Sem apresentações."
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Selecione e delete múltiplas publicações/comentário imediatamente"
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:150
-msgid "Notifications"
-msgstr "Notificações"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Editar Publicações Enviadas"
 
-#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
-#: ../../mod/notifications.php:469
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s gostou da publicação de %s"
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Editar e corrigir publicações e comentários após envio"
 
-#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s desgostou da publicação de %s"
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Etiquetagem"
 
-#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
-#: ../../mod/notifications.php:492
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s agora é amigo de %s"
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Capacidade de colocar etiquetas em publicações existentes"
 
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#, php-format
-msgid "%s created a new post"
-msgstr "%s criou uma nova publicação"
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Categorias de Publicações"
 
-#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
-#: ../../mod/notifications.php:501
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s comentou uma publicação de %s"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Adicione Categorias ás Publicações"
 
-#: ../../mod/notifications.php:302
-msgid "No more network notifications."
-msgstr "Nenhuma notificação de rede."
+#: ../../include/features.php:60 ../../include/contact_widgets.php:103
+msgid "Saved Folders"
+msgstr "Pastas salvas"
 
-#: ../../mod/notifications.php:306
-msgid "Network Notifications"
-msgstr "Notificações de rede"
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Capacidade de arquivar publicações em pastas"
 
-#: ../../mod/notifications.php:427
-msgid "No more personal notifications."
-msgstr "Nenhuma notificação pessoal."
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Desgostar de publicações"
 
-#: ../../mod/notifications.php:431
-msgid "Personal Notifications"
-msgstr "Notificações pessoais"
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Capacidade de desgostar de publicações/comentários"
 
-#: ../../mod/notifications.php:508
-msgid "No more home notifications."
-msgstr "Não existe mais nenhuma notificação pessoal."
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Destacar publicações"
 
-#: ../../mod/notifications.php:512
-msgid "Home Notifications"
-msgstr "Notificações pessoais"
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Capacidade de marcar publicações especiais com uma estrela indicadora"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Limite de convites totais excedido."
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Saiu."
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Não é um endereço de e-mail válido."
+#: ../../include/auth.php:128 ../../include/user.php:66
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente."
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Por favor, junte-se à nós na Friendica"
+#: ../../include/auth.php:128 ../../include/user.php:66
+msgid "The error message was:"
+msgstr "A mensagem de erro foi:"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limite de convites ultrapassado. Favor contactar o administrador do sítio."
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
+msgid "Starts:"
+msgstr "Início:"
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Não foi possível enviar a mensagem."
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
+msgid "Finishes:"
+msgstr "Término:"
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d mensagem enviada."
-msgstr[1] "%d mensagens enviadas."
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j de F, Y"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Você não possui mais convites disponíveis"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j de F"
 
-#: ../../mod/invite.php:120
-#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais."
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Aniversário:"
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público."
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Idade:"
 
-#: ../../mod/invite.php:123
+#: ../../include/profile_advanced.php:43
 #, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar."
+msgid "for %1$d %2$s"
+msgstr "para %1$d %2$s"
 
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros."
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Etiquetas:"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Enviar convites."
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religião:"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Digite os endereços de e-mail, um por linha:"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Passatempos/Interesses:"
 
-#: ../../mod/invite.php:135
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web."
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Informações de contato e redes sociais:"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Você preciso informar este código de convite: $invite_code"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Preferências musicais:"
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Livros, literatura:"
 
-#: ../../mod/invite.php:139
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com."
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Televisão:"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Gerenciar identidades e/ou páginas"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Filmes/dança/cultura/entretenimento:"
 
-#: ../../mod/manage.php:107
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\""
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Amor/romance:"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Selecione uma identidade para gerenciar: "
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Trabalho/emprego:"
 
-#: ../../mod/home.php:34
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bem-vindo(a) a %s"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Escola/educação:"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Amigos de %s"
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[sem assunto]"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Nenhum amigo para exibir."
+#: ../../include/Scrape.php:584
+msgid " on Last.fm"
+msgstr "na Last.fm"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Adicionar Contato Novo"
+#: ../../include/text.php:296
+msgid "newer"
+msgstr "mais recente"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Forneça endereço ou localização web"
+#: ../../include/text.php:298
+msgid "older"
+msgstr "antigo"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"
+#: ../../include/text.php:303
+msgid "prev"
+msgstr "anterior"
 
-#: ../../include/contact_widgets.php:23
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d convite disponível"
-msgstr[1] "%d convites disponíveis"
+#: ../../include/text.php:305
+msgid "first"
+msgstr "primeiro"
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
-msgstr "Pesquisar por pessoas"
+#: ../../include/text.php:337
+msgid "last"
+msgstr "último"
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
-msgstr "Fornecer nome ou interesse"
+#: ../../include/text.php:340
+msgid "next"
+msgstr "próximo"
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
-msgstr "Conectar-se/acompanhar"
+#: ../../include/text.php:853
+msgid "No contacts"
+msgstr "Nenhum contato"
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Examplos: Robert Morgenstein, Fishing"
+#: ../../include/text.php:862
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d contato"
+msgstr[1] "%d contatos"
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
-msgstr "Perfil Randômico"
+#: ../../include/text.php:1003
+msgid "poke"
+msgstr "cutucar"
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
-msgstr "Redes"
+#: ../../include/text.php:1003 ../../include/conversation.php:211
+msgid "poked"
+msgstr "cutucado"
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
-msgstr "Todas as redes"
+#: ../../include/text.php:1004
+msgid "ping"
+msgstr "ping"
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:59
-msgid "Saved Folders"
-msgstr "Pastas salvas"
+#: ../../include/text.php:1004
+msgid "pinged"
+msgstr "pingado"
 
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
-msgstr "Tudo"
+#: ../../include/text.php:1005
+msgid "prod"
+msgstr "incentivar"
 
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
-msgstr "Categorias"
+#: ../../include/text.php:1005
+msgid "prodded"
+msgstr "incentivado"
 
-#: ../../include/plugin.php:454 ../../include/plugin.php:456
-msgid "Click here to upgrade."
-msgstr "Clique aqui para atualização (upgrade)."
+#: ../../include/text.php:1006
+msgid "slap"
+msgstr "bater"
 
-#: ../../include/plugin.php:462
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Essa ação excede o limite definido para o seu plano de assinatura."
+#: ../../include/text.php:1006
+msgid "slapped"
+msgstr "batido"
 
-#: ../../include/plugin.php:467
-msgid "This action is not available under your subscription plan."
-msgstr "Essa ação não está disponível em seu plano de assinatura."
+#: ../../include/text.php:1007
+msgid "finger"
+msgstr "apontar"
 
-#: ../../include/network.php:883
-msgid "view full size"
-msgstr "ver na tela inteira"
+#: ../../include/text.php:1007
+msgid "fingered"
+msgstr "apontado"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
-msgid "Starts:"
-msgstr "Início:"
+#: ../../include/text.php:1008
+msgid "rebuff"
+msgstr "rejeite"
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
-msgid "Finishes:"
-msgstr "Término:"
+#: ../../include/text.php:1008
+msgid "rebuffed"
+msgstr "rejeitado"
 
-#: ../../include/notifier.php:774 ../../include/delivery.php:457
-msgid "(no subject)"
-msgstr "(sem assunto)"
+#: ../../include/text.php:1022
+msgid "happy"
+msgstr "feliz"
 
-#: ../../include/notifier.php:784 ../../include/enotify.php:28
-#: ../../include/delivery.php:468
-msgid "noreply"
-msgstr "naoresponda"
+#: ../../include/text.php:1023
+msgid "sad"
+msgstr "triste"
 
-#: ../../include/user.php:39
-msgid "An invitation is required."
-msgstr "É necessário um convite."
+#: ../../include/text.php:1024
+msgid "mellow"
+msgstr "desencanado"
 
-#: ../../include/user.php:44
-msgid "Invitation could not be verified."
-msgstr "Não foi possível verificar o convite."
+#: ../../include/text.php:1025
+msgid "tired"
+msgstr "cansado"
 
-#: ../../include/user.php:52
-msgid "Invalid OpenID url"
-msgstr "A URL do OpenID é inválida"
+#: ../../include/text.php:1026
+msgid "perky"
+msgstr "audacioso"
 
-#: ../../include/user.php:66 ../../include/auth.php:128
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente."
+#: ../../include/text.php:1027
+msgid "angry"
+msgstr "chateado"
 
-#: ../../include/user.php:66 ../../include/auth.php:128
-msgid "The error message was:"
-msgstr "A mensagem de erro foi:"
+#: ../../include/text.php:1028
+msgid "stupified"
+msgstr "estupefato"
 
-#: ../../include/user.php:73
-msgid "Please enter the required information."
-msgstr "Por favor, forneça a informação solicitada."
+#: ../../include/text.php:1029
+msgid "puzzled"
+msgstr "confuso"
 
-#: ../../include/user.php:87
-msgid "Please use a shorter name."
-msgstr "Por favor, use um nome mais curto."
+#: ../../include/text.php:1030
+msgid "interested"
+msgstr "interessado"
 
-#: ../../include/user.php:89
-msgid "Name too short."
-msgstr "O nome é muito curto."
+#: ../../include/text.php:1031
+msgid "bitter"
+msgstr "rancoroso"
 
-#: ../../include/user.php:104
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Isso não parece ser o seu nome completo (Nome Sobrenome)."
+#: ../../include/text.php:1032
+msgid "cheerful"
+msgstr "jovial"
 
-#: ../../include/user.php:109
-msgid "Your email domain is not among those allowed on this site."
-msgstr "O domínio do seu e-mail não está entre os permitidos neste site."
+#: ../../include/text.php:1033
+msgid "alive"
+msgstr "vivo"
 
-#: ../../include/user.php:112
-msgid "Not a valid email address."
-msgstr "Não é um endereço de e-mail válido."
+#: ../../include/text.php:1034
+msgid "annoyed"
+msgstr "incomodado"
 
-#: ../../include/user.php:122
-msgid "Cannot use that email."
-msgstr "Não é possível usar esse e-mail."
+#: ../../include/text.php:1035
+msgid "anxious"
+msgstr "ansioso"
 
-#: ../../include/user.php:128
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra."
+#: ../../include/text.php:1036
+msgid "cranky"
+msgstr "excêntrico"
 
-#: ../../include/user.php:134 ../../include/user.php:232
-msgid "Nickname is already registered. Please choose another."
-msgstr "Esta identificação já foi registrada. Por favor, escolha outra."
+#: ../../include/text.php:1037
+msgid "disturbed"
+msgstr "perturbado"
 
-#: ../../include/user.php:144
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra."
+#: ../../include/text.php:1038
+msgid "frustrated"
+msgstr "frustrado"
 
-#: ../../include/user.php:160
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERRO GRAVE: Não foi possível gerar as chaves de segurança."
+#: ../../include/text.php:1039
+msgid "motivated"
+msgstr "motivado"
 
-#: ../../include/user.php:218
-msgid "An error occurred during registration. Please try again."
-msgstr "Ocorreu um erro durante o registro. Por favor, tente novamente."
+#: ../../include/text.php:1040
+msgid "relaxed"
+msgstr "relaxado"
 
-#: ../../include/user.php:253
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente."
+#: ../../include/text.php:1041
+msgid "surprised"
+msgstr "surpreso"
 
-#: ../../include/user.php:285 ../../include/user.php:289
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Amigos"
+#: ../../include/text.php:1209
+msgid "Monday"
+msgstr "Segunda"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s cutucou %2$s"
+#: ../../include/text.php:1209
+msgid "Tuesday"
+msgstr "Terça"
 
-#: ../../include/conversation.php:211 ../../include/text.php:979
-msgid "poked"
-msgstr "cutucado"
+#: ../../include/text.php:1209
+msgid "Wednesday"
+msgstr "Quarta"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "postagem/item"
+#: ../../include/text.php:1209
+msgid "Thursday"
+msgstr "Quinta"
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s marcou %3$s de %2$s como favorito"
+#: ../../include/text.php:1209
+msgid "Friday"
+msgstr "Sexta"
 
-#: ../../include/conversation.php:767
-msgid "remove"
-msgstr "remover"
+#: ../../include/text.php:1209
+msgid "Saturday"
+msgstr "Sábado"
 
-#: ../../include/conversation.php:771
-msgid "Delete Selected Items"
-msgstr "Excluir os itens selecionados"
+#: ../../include/text.php:1209
+msgid "Sunday"
+msgstr "Domingo"
 
-#: ../../include/conversation.php:870
-msgid "Follow Thread"
-msgstr "Seguir o Thread"
+#: ../../include/text.php:1213
+msgid "January"
+msgstr "Janeiro"
 
-#: ../../include/conversation.php:871 ../../include/Contact.php:228
-msgid "View Status"
-msgstr "Ver Status"
+#: ../../include/text.php:1213
+msgid "February"
+msgstr "Fevereiro"
 
-#: ../../include/conversation.php:872 ../../include/Contact.php:229
-msgid "View Profile"
-msgstr "Ver Perfil"
+#: ../../include/text.php:1213
+msgid "March"
+msgstr "Março"
 
-#: ../../include/conversation.php:873 ../../include/Contact.php:230
-msgid "View Photos"
-msgstr "Ver Fotos"
+#: ../../include/text.php:1213
+msgid "April"
+msgstr "Abril"
 
-#: ../../include/conversation.php:874 ../../include/Contact.php:231
-#: ../../include/Contact.php:254
-msgid "Network Posts"
-msgstr "Publicações da Rede"
+#: ../../include/text.php:1213
+msgid "May"
+msgstr "Maio"
 
-#: ../../include/conversation.php:875 ../../include/Contact.php:232
-#: ../../include/Contact.php:254
-msgid "Edit Contact"
-msgstr "Editar Contato"
+#: ../../include/text.php:1213
+msgid "June"
+msgstr "Junho"
 
-#: ../../include/conversation.php:876 ../../include/Contact.php:234
-#: ../../include/Contact.php:254
-msgid "Send PM"
-msgstr "Enviar MP"
+#: ../../include/text.php:1213
+msgid "July"
+msgstr "Julho"
 
-#: ../../include/conversation.php:877 ../../include/Contact.php:227
-msgid "Poke"
-msgstr "Cutucar"
+#: ../../include/text.php:1213
+msgid "August"
+msgstr "Agosto"
 
-#: ../../include/conversation.php:939
-#, php-format
-msgid "%s likes this."
-msgstr "%s gostou disso."
+#: ../../include/text.php:1213
+msgid "September"
+msgstr "Setembro"
 
-#: ../../include/conversation.php:939
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s não gostou disso."
+#: ../../include/text.php:1213
+msgid "October"
+msgstr "Outubro"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d pessoas</span> gostaram disso"
+#: ../../include/text.php:1213
+msgid "November"
+msgstr "Novembro"
 
-#: ../../include/conversation.php:947
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d pessoas</span> não gostaram disso"
+#: ../../include/text.php:1213
+msgid "December"
+msgstr "Dezembro"
 
-#: ../../include/conversation.php:961
-msgid "and"
-msgstr "e"
+#: ../../include/text.php:1432
+msgid "bytes"
+msgstr "bytes"
 
-#: ../../include/conversation.php:967
-#, php-format
-msgid ", and %d other people"
-msgstr ", e mais %d outras pessoas"
+#: ../../include/text.php:1456 ../../include/text.php:1468
+msgid "Click to open/close"
+msgstr "Clique para abrir/fechar"
 
-#: ../../include/conversation.php:969
-#, php-format
-msgid "%s like this."
-msgstr "%s gostaram disso."
+#: ../../include/text.php:1689 ../../include/user.php:246
+msgid "default"
+msgstr "padrão"
 
-#: ../../include/conversation.php:969
-#, php-format
-msgid "%s don't like this."
-msgstr "%s não gostaram disso."
+#: ../../include/text.php:1701
+msgid "Select an alternate language"
+msgstr "Selecione um idioma alternativo"
 
-#: ../../include/conversation.php:996 ../../include/conversation.php:1014
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visível para <strong>todos</strong>"
+#: ../../include/text.php:1957
+msgid "activity"
+msgstr "atividade"
 
-#: ../../include/conversation.php:998 ../../include/conversation.php:1016
-msgid "Please enter a video link/URL:"
-msgstr "Favor fornecer um link/URL de vídeo"
+#: ../../include/text.php:1960
+msgid "post"
+msgstr "publicação"
 
-#: ../../include/conversation.php:999 ../../include/conversation.php:1017
-msgid "Please enter an audio link/URL:"
-msgstr "Favor fornecer um link/URL de áudio"
+#: ../../include/text.php:2128
+msgid "Item filed"
+msgstr "O item foi arquivado"
 
-#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
-msgid "Tag term:"
-msgstr "Etiqueta:"
+#: ../../include/api.php:263 ../../include/api.php:274
+#: ../../include/api.php:375
+msgid "User not found."
+msgstr "Usuário não encontrado."
 
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Where are you right now?"
-msgstr "Onde você está agora?"
+#: ../../include/api.php:1123
+msgid "There is no status with this id."
+msgstr "Não existe status com esse id."
 
-#: ../../include/conversation.php:1003
-msgid "Delete item(s)?"
-msgstr "Deletar item(s)?"
+#: ../../include/api.php:1193
+msgid "There is no conversation with this id."
+msgstr "Não existe conversas com esse id."
 
-#: ../../include/conversation.php:1045
-msgid "Post to Email"
-msgstr "Enviar por e-mail"
+#: ../../include/dba.php:51 ../../include/dba_pdo.php:72
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"
 
-#: ../../include/conversation.php:1101
-msgid "permissions"
-msgstr "permissões"
+#: ../../include/items.php:1981 ../../include/datetime.php:472
+#, php-format
+msgid "%s's birthday"
+msgstr "aniversários de %s's"
 
-#: ../../include/conversation.php:1125
-msgid "Post to Groups"
-msgstr "Postar em Grupos"
+#: ../../include/items.php:1982 ../../include/datetime.php:473
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Feliz Aniversário %s"
 
-#: ../../include/conversation.php:1126
-msgid "Post to Contacts"
-msgstr "Publique para Contatos"
+#: ../../include/items.php:3710
+msgid "A new person is sharing with you at "
+msgstr "Uma nova pessoa está compartilhando com você em "
 
-#: ../../include/conversation.php:1127
-msgid "Private post"
-msgstr "Publicação privada"
+#: ../../include/items.php:3710
+msgid "You have a new follower at "
+msgstr "Você tem um novo acompanhante em "
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Saiu."
+#: ../../include/items.php:4233
+msgid "Do you really want to delete this item?"
+msgstr "Você realmente deseja deletar esse item?"
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Erro ao decodificar arquivo de conta"
+#: ../../include/items.php:4460
+msgid "Archives"
+msgstr "Arquivos"
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?"
+#: ../../include/delivery.php:456 ../../include/notifier.php:774
+msgid "(no subject)"
+msgstr "(sem assunto)"
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Erro! Não consigo conferir o apelido (nickname)"
+#: ../../include/delivery.php:467 ../../include/notifier.php:784
+#: ../../include/enotify.php:28
+msgid "noreply"
+msgstr "naoresponda"
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "User '%s' já existe nesse servidor!"
+#: ../../include/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
+msgstr "Notificação de compartilhamento da rede Diaspora"
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Erro na criação do usuário"
+#: ../../include/diaspora.php:2299
+msgid "Attachments:"
+msgstr "Anexos:"
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Erro na criação do perfil do Usuário"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "URL de conexão faltando."
 
-#: ../../include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d contato não foi importado"
-msgstr[1] "%d contatos não foram importados"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Este site não está configurado para permitir comunicações com outras redes."
 
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Feito. Você agora pode entrar com seu nome de usuário e senha"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível."
 
-#: ../../include/text.php:293
-msgid "newer"
-msgstr "mais recente"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "O endereço de perfil especificado não fornece informação adequada."
+
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Não foi encontrado nenhum autor ou nome."
 
-#: ../../include/text.php:295
-msgid "older"
-msgstr "antigo"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Não foi possível encontrar nenhuma URL de navegação neste endereço."
 
-#: ../../include/text.php:300
-msgid "prev"
-msgstr "anterior"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Não foi possível  casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email."
 
-#: ../../include/text.php:302
-msgid "first"
-msgstr "primeiro"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Use mailto: antes do endereço para forçar a checagem de email."
 
-#: ../../include/text.php:334
-msgid "last"
-msgstr "último"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site."
 
-#: ../../include/text.php:337
-msgid "next"
-msgstr "próximo"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você."
 
-#: ../../include/text.php:829
-msgid "No contacts"
-msgstr "Nenhum contato"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Não foi possível recuperar a informação do contato."
 
-#: ../../include/text.php:838
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d contato"
-msgstr[1] "%d contatos"
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "acompanhando"
 
-#: ../../include/text.php:979
-msgid "poke"
-msgstr "cutucar"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Bem-vindo(a) "
 
-#: ../../include/text.php:980
-msgid "ping"
-msgstr "ping"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Por favor, envie uma foto para o perfil."
 
-#: ../../include/text.php:980
-msgid "pinged"
-msgstr "pingado"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Bem-vindo(a) de volta "
 
-#: ../../include/text.php:981
-msgid "prod"
-msgstr "incentivar"
+#: ../../include/security.php:366
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."
 
-#: ../../include/text.php:981
-msgid "prodded"
-msgstr "incentivado"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Masculino"
 
-#: ../../include/text.php:982
-msgid "slap"
-msgstr "bater"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Feminino"
 
-#: ../../include/text.php:982
-msgid "slapped"
-msgstr "batido"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Atualmente masculino"
 
-#: ../../include/text.php:983
-msgid "finger"
-msgstr "apontar"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Atualmente feminino"
 
-#: ../../include/text.php:983
-msgid "fingered"
-msgstr "apontado"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Masculino a maior parte do tempo"
 
-#: ../../include/text.php:984
-msgid "rebuff"
-msgstr "rejeite"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Feminino a maior parte do tempo"
 
-#: ../../include/text.php:984
-msgid "rebuffed"
-msgstr "rejeitado"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgênero"
 
-#: ../../include/text.php:998
-msgid "happy"
-msgstr "feliz"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersexual"
 
-#: ../../include/text.php:999
-msgid "sad"
-msgstr "triste"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transexual"
 
-#: ../../include/text.php:1000
-msgid "mellow"
-msgstr "desencanado"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermafrodita"
 
-#: ../../include/text.php:1001
-msgid "tired"
-msgstr "cansado"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutro"
 
-#: ../../include/text.php:1002
-msgid "perky"
-msgstr "audacioso"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Não específico"
 
-#: ../../include/text.php:1003
-msgid "angry"
-msgstr "chateado"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Outro"
 
-#: ../../include/text.php:1004
-msgid "stupified"
-msgstr "estupefato"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Indeciso"
 
-#: ../../include/text.php:1005
-msgid "puzzled"
-msgstr "confuso"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Homens"
 
-#: ../../include/text.php:1006
-msgid "interested"
-msgstr "interessado"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Mulheres"
 
-#: ../../include/text.php:1007
-msgid "bitter"
-msgstr "rancoroso"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gays"
 
-#: ../../include/text.php:1008
-msgid "cheerful"
-msgstr "jovial"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lésbicas"
 
-#: ../../include/text.php:1009
-msgid "alive"
-msgstr "vivo"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Sem preferência"
 
-#: ../../include/text.php:1010
-msgid "annoyed"
-msgstr "incomodado"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bissexuais"
 
-#: ../../include/text.php:1011
-msgid "anxious"
-msgstr "ansioso"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autossexuais"
 
-#: ../../include/text.php:1012
-msgid "cranky"
-msgstr "excêntrico"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstêmios"
 
-#: ../../include/text.php:1013
-msgid "disturbed"
-msgstr "perturbado"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Virgens"
 
-#: ../../include/text.php:1014
-msgid "frustrated"
-msgstr "frustrado"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Desviantes"
 
-#: ../../include/text.php:1015
-msgid "motivated"
-msgstr "motivado"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetiches"
 
-#: ../../include/text.php:1016
-msgid "relaxed"
-msgstr "relaxado"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Insaciável"
 
-#: ../../include/text.php:1017
-msgid "surprised"
-msgstr "surpreso"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Não sexual"
 
-#: ../../include/text.php:1185
-msgid "Monday"
-msgstr "Segunda"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Solteiro(a)"
 
-#: ../../include/text.php:1185
-msgid "Tuesday"
-msgstr "Terça"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Solitário(a)"
 
-#: ../../include/text.php:1185
-msgid "Wednesday"
-msgstr "Quarta"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Disponível"
 
-#: ../../include/text.php:1185
-msgid "Thursday"
-msgstr "Quinta"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Não disponível"
 
-#: ../../include/text.php:1185
-msgid "Friday"
-msgstr "Sexta"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Tem uma paixão"
 
-#: ../../include/text.php:1185
-msgid "Saturday"
-msgstr "Sábado"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Apaixonado"
 
-#: ../../include/text.php:1185
-msgid "Sunday"
-msgstr "Domingo"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Saindo com alguém"
 
-#: ../../include/text.php:1189
-msgid "January"
-msgstr "Janeiro"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Infiel"
 
-#: ../../include/text.php:1189
-msgid "February"
-msgstr "Fevereiro"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Viciado(a) em sexo"
 
-#: ../../include/text.php:1189
-msgid "March"
-msgstr "Março"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:288
+#: ../../include/user.php:292
+msgid "Friends"
+msgstr "Amigos"
 
-#: ../../include/text.php:1189
-msgid "April"
-msgstr "Abril"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Amigos/Benefícios"
 
-#: ../../include/text.php:1189
-msgid "May"
-msgstr "Maio"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: ../../include/text.php:1189
-msgid "June"
-msgstr "Junho"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Envolvido(a)"
 
-#: ../../include/text.php:1189
-msgid "July"
-msgstr "Julho"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Casado(a)"
 
-#: ../../include/text.php:1189
-msgid "August"
-msgstr "Agosto"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Casado imaginariamente"
 
-#: ../../include/text.php:1189
-msgid "September"
-msgstr "Setembro"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Parceiros"
 
-#: ../../include/text.php:1189
-msgid "October"
-msgstr "Outubro"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Coabitando"
 
-#: ../../include/text.php:1189
-msgid "November"
-msgstr "Novembro"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Direito comum"
 
-#: ../../include/text.php:1189
-msgid "December"
-msgstr "Dezembro"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Feliz"
 
-#: ../../include/text.php:1408
-msgid "bytes"
-msgstr "bytes"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Não estou procurando"
 
-#: ../../include/text.php:1432 ../../include/text.php:1444
-msgid "Click to open/close"
-msgstr "Clique para abrir/fechar"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../include/text.php:1661
-msgid "Select an alternate language"
-msgstr "Selecione um idioma alternativo"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Traído(a)"
 
-#: ../../include/text.php:1917
-msgid "activity"
-msgstr "atividade"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Separado(a)"
 
-#: ../../include/text.php:1920
-msgid "post"
-msgstr "publicação"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Instável"
 
-#: ../../include/text.php:2075
-msgid "Item filed"
-msgstr "O item foi arquivado"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Divorciado(a)"
 
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
-msgstr "Notificação Friendica"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Divorciado imaginariamente"
 
-#: ../../include/enotify.php:19
-msgid "Thank You,"
-msgstr "Obrigado,"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Viúvo(a)"
 
-#: ../../include/enotify.php:21
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrador"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Incerto(a)"
 
-#: ../../include/enotify.php:40
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "É complicado"
 
-#: ../../include/enotify.php:44
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notify] Nova mensagem recebida em %s"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Não importa"
 
-#: ../../include/enotify.php:46
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s lhe enviou uma mensagem privativa em %2$s."
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Pergunte-me"
 
-#: ../../include/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s lhe enviou %2$s."
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Erro ao decodificar arquivo de conta"
 
-#: ../../include/enotify.php:47
-msgid "a private message"
-msgstr "uma mensagem privada"
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?"
 
-#: ../../include/enotify.php:48
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Favor visitar %s para ver e/ou responder às suas mensagens privadas."
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Erro! Não consigo conferir o apelido (nickname)"
 
-#: ../../include/enotify.php:90
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
 #, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s comentou uma [url=%2$s] %3$s[/url]"
+msgid "User '%s' already exists on this server!"
+msgstr "User '%s' já existe nesse servidor!"
 
-#: ../../include/enotify.php:97
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s comentou na %4$s de [url=%2$s]%3$s [/url]"
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Erro na criação do usuário"
 
-#: ../../include/enotify.php:105
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s comentou [url=%2$s]sua %3$s[/url]"
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Erro na criação do perfil do Usuário"
 
-#: ../../include/enotify.php:115
+#: ../../include/uimport.php:220
 #, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notify] Comentário na conversa #%1$d por %2$s"
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contato não foi importado"
+msgstr[1] "%d contatos não foram importados"
 
-#: ../../include/enotify.php:116
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s comentou um item/conversa que você está seguindo."
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Feito. Você agora pode entrar com seu nome de usuário e senha"
 
-#: ../../include/enotify.php:119 ../../include/enotify.php:134
-#: ../../include/enotify.php:147 ../../include/enotify.php:165
-#: ../../include/enotify.php:178
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Favor visitar %s para ver e/ou responder à conversa."
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Clique aqui para atualização (upgrade)."
 
-#: ../../include/enotify.php:126
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notify] %s publicou no mural do seu perfil"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Essa ação excede o limite definido para o seu plano de assinatura."
 
-#: ../../include/enotify.php:128
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s publicou no mural do seu perfil em %2$s"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Essa ação não está disponível em seu plano de assinatura."
 
-#: ../../include/enotify.php:130
+#: ../../include/conversation.php:207
 #, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s publicou para [url=%2$s]seu mural[/url]"
+msgid "%1$s poked %2$s"
+msgstr "%1$s cutucou %2$s"
 
-#: ../../include/enotify.php:141
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notify] %s etiquetou você"
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr "postagem/item"
 
-#: ../../include/enotify.php:142
+#: ../../include/conversation.php:292
 #, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s etiquetou você em %2$s"
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s marcou %3$s de %2$s como favorito"
 
-#: ../../include/enotify.php:143
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]etiquetou você[/url]."
+#: ../../include/conversation.php:770
+msgid "remove"
+msgstr "remover"
 
-#: ../../include/enotify.php:155
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s cutucou você"
+#: ../../include/conversation.php:774
+msgid "Delete Selected Items"
+msgstr "Excluir os itens selecionados"
 
-#: ../../include/enotify.php:156
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s cutucou você em %2$s"
+#: ../../include/conversation.php:873
+msgid "Follow Thread"
+msgstr "Seguir o Thread"
 
-#: ../../include/enotify.php:157
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]cutucou você[/url]."
+#: ../../include/conversation.php:874 ../../include/Contact.php:229
+msgid "View Status"
+msgstr "Ver Status"
 
-#: ../../include/enotify.php:172
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notify] %s etiquetou sua publicação"
+#: ../../include/conversation.php:875 ../../include/Contact.php:230
+msgid "View Profile"
+msgstr "Ver Perfil"
 
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s etiquetou sua publicação em %2$s"
+#: ../../include/conversation.php:876 ../../include/Contact.php:231
+msgid "View Photos"
+msgstr "Ver Fotos"
 
-#: ../../include/enotify.php:174
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s etiquetou [url=%2$s]sua publicação[/url]"
+#: ../../include/conversation.php:877 ../../include/Contact.php:232
+#: ../../include/Contact.php:255
+msgid "Network Posts"
+msgstr "Publicações da Rede"
 
-#: ../../include/enotify.php:185
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notify] Você recebeu uma apresentação"
+#: ../../include/conversation.php:878 ../../include/Contact.php:233
+#: ../../include/Contact.php:255
+msgid "Edit Contact"
+msgstr "Editar Contato"
 
-#: ../../include/enotify.php:186
+#: ../../include/conversation.php:879 ../../include/Contact.php:235
+#: ../../include/Contact.php:255
+msgid "Send PM"
+msgstr "Enviar MP"
+
+#: ../../include/conversation.php:880 ../../include/Contact.php:228
+msgid "Poke"
+msgstr "Cutucar"
+
+#: ../../include/conversation.php:942
 #, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Você recebeu uma apresentação de '%1$s' em %2$s"
+msgid "%s likes this."
+msgstr "%s gostou disso."
 
-#: ../../include/enotify.php:187
+#: ../../include/conversation.php:942
 #, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Você recebeu [url=%1$s]uma apresentação[/url] de %2$s."
+msgid "%s doesn't like this."
+msgstr "%s não gostou disso."
 
-#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#: ../../include/conversation.php:947
 #, php-format
-msgid "You may visit their profile at %s"
-msgstr "Você pode visitar o perfil deles em %s"
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d pessoas</span> gostaram disso"
 
-#: ../../include/enotify.php:192
+#: ../../include/conversation.php:950
 #, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Favor visitar %s para aprovar ou rejeitar a apresentação."
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d pessoas</span> não gostaram disso"
 
-#: ../../include/enotify.php:199
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notify] Você recebeu uma sugestão de amigo"
+#: ../../include/conversation.php:964
+msgid "and"
+msgstr "e"
 
-#: ../../include/enotify.php:200
+#: ../../include/conversation.php:970
 #, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Você recebeu uma sugestão de amigo de '%1$s' em %2$s"
+msgid ", and %d other people"
+msgstr ", e mais %d outras pessoas"
 
-#: ../../include/enotify.php:201
+#: ../../include/conversation.php:972
 #, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Você recebeu [url=%1$s]uma sugestão de amigo[/url] de %2$s em %3$s"
+msgid "%s like this."
+msgstr "%s gostaram disso."
 
-#: ../../include/enotify.php:206
-msgid "Name:"
-msgstr "Nome:"
+#: ../../include/conversation.php:972
+#, php-format
+msgid "%s don't like this."
+msgstr "%s não gostaram disso."
 
-#: ../../include/enotify.php:207
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../include/conversation.php:999 ../../include/conversation.php:1017
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visível para <strong>todos</strong>"
 
-#: ../../include/enotify.php:210
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Favor visitar %s para aprovar ou rejeitar a sugestão."
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+msgid "Please enter a video link/URL:"
+msgstr "Favor fornecer um link/URL de vídeo"
 
-#: ../../include/Scrape.php:583
-msgid " on Last.fm"
-msgstr "na Last.fm"
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter an audio link/URL:"
+msgstr "Favor fornecer um link/URL de áudio"
 
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Tag term:"
+msgstr "Etiqueta:"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Grupo de privacidade padrão para novos contatos"
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+msgid "Where are you right now?"
+msgstr "Onde você está agora?"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Todos"
+#: ../../include/conversation.php:1006
+msgid "Delete item(s)?"
+msgstr "Deletar item(s)?"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "editar"
+#: ../../include/conversation.php:1049
+msgid "Post to Email"
+msgstr "Enviar por e-mail"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Editar grupo"
+#: ../../include/conversation.php:1054
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Conectores desabilitados, desde \"%s\" está habilitado."
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Criar um novo grupo"
+#: ../../include/conversation.php:1109
+msgid "permissions"
+msgstr "permissões"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Contatos não estão dentro de nenhum grupo"
+#: ../../include/conversation.php:1133
+msgid "Post to Groups"
+msgstr "Postar em Grupos"
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "URL de conexão faltando."
+#: ../../include/conversation.php:1134
+msgid "Post to Contacts"
+msgstr "Publique para Contatos"
 
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Este site não está configurado para permitir comunicações com outras redes."
+#: ../../include/conversation.php:1135
+msgid "Private post"
+msgstr "Publicação privada"
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível."
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Adicionar Contato Novo"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "O endereço de perfil especificado não fornece informação adequada."
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Forneça endereço ou localização web"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Não foi encontrado nenhum autor ou nome."
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Não foi possível encontrar nenhuma URL de navegação neste endereço."
+#: ../../include/contact_widgets.php:23
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d convite disponível"
+msgstr[1] "%d convites disponíveis"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Não foi possível  casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email."
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "Pesquisar por pessoas"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Use mailto: antes do endereço para forçar a checagem de email."
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "Fornecer nome ou interesse"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site."
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "Conectar-se/acompanhar"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você."
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Examplos: Robert Morgenstein, Fishing"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Não foi possível recuperar a informação do contato."
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr "Perfil Randômico"
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "acompanhando"
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
+msgstr "Redes"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[sem assunto]"
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
+msgstr "Todas as redes"
+
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
+msgstr "Tudo"
+
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
+msgstr "Categorias"
 
 #: ../../include/nav.php:73
 msgid "End this session"
@@ -6529,158 +6785,81 @@ msgstr "Diretório"
 msgid "People directory"
 msgstr "Diretório de pessoas"
 
-#: ../../include/nav.php:140
-msgid "Conversations from your friends"
-msgstr "Conversas dos seus amigos"
-
-#: ../../include/nav.php:141
-msgid "Network Reset"
-msgstr "Reiniciar Rede"
-
-#: ../../include/nav.php:141
-msgid "Load Network page with no filters"
-msgstr "Carregar página Rede sem filtros"
-
-#: ../../include/nav.php:149
-msgid "Friend Requests"
-msgstr "Requisições de Amizade"
-
-#: ../../include/nav.php:151
-msgid "See all notifications"
-msgstr "Ver todas notificações"
-
-#: ../../include/nav.php:152
-msgid "Mark all system notifications seen"
-msgstr "Marcar todas as notificações de sistema como vistas"
-
-#: ../../include/nav.php:156
-msgid "Private mail"
-msgstr "Mensagem privada"
-
-#: ../../include/nav.php:157
-msgid "Inbox"
-msgstr "Recebidas"
-
-#: ../../include/nav.php:158
-msgid "Outbox"
-msgstr "Enviadas"
-
-#: ../../include/nav.php:162
-msgid "Manage"
-msgstr "Gerenciar"
-
-#: ../../include/nav.php:162
-msgid "Manage other pages"
-msgstr "Gerenciar outras páginas"
-
-#: ../../include/nav.php:165
-msgid "Delegations"
-msgstr "Delegações"
-
-#: ../../include/nav.php:169
-msgid "Manage/Edit Profiles"
-msgstr "Administrar/Editar Perfis"
-
-#: ../../include/nav.php:171
-msgid "Manage/edit friends and contacts"
-msgstr "Gerenciar/editar amigos e contatos"
-
-#: ../../include/nav.php:178
-msgid "Site setup and configuration"
-msgstr "Configurações do site"
-
-#: ../../include/nav.php:182
-msgid "Navigation"
-msgstr "Navegação"
-
-#: ../../include/nav.php:182
-msgid "Site map"
-msgstr "Mapa do Site"
-
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j de F, Y"
+#: ../../include/nav.php:132
+msgid "Information"
+msgstr "Informação"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j de F"
-
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Aniversário:"
-
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Idade:"
+#: ../../include/nav.php:132
+msgid "Information about this friendica instance"
+msgstr "Informação sobre esta instância do friendica"
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "para %1$d %2$s"
+#: ../../include/nav.php:142
+msgid "Conversations from your friends"
+msgstr "Conversas dos seus amigos"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Etiquetas:"
+#: ../../include/nav.php:143
+msgid "Network Reset"
+msgstr "Reiniciar Rede"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religião:"
+#: ../../include/nav.php:143
+msgid "Load Network page with no filters"
+msgstr "Carregar página Rede sem filtros"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Passatempos/Interesses:"
+#: ../../include/nav.php:151
+msgid "Friend Requests"
+msgstr "Requisições de Amizade"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Informações de contato e redes sociais:"
+#: ../../include/nav.php:153
+msgid "See all notifications"
+msgstr "Ver todas notificações"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Preferências musicais:"
+#: ../../include/nav.php:154
+msgid "Mark all system notifications seen"
+msgstr "Marcar todas as notificações de sistema como vistas"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Livros, literatura:"
+#: ../../include/nav.php:158
+msgid "Private mail"
+msgstr "Mensagem privada"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Televisão:"
+#: ../../include/nav.php:159
+msgid "Inbox"
+msgstr "Recebidas"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Filmes/dança/cultura/entretenimento:"
+#: ../../include/nav.php:160
+msgid "Outbox"
+msgstr "Enviadas"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Amor/romance:"
+#: ../../include/nav.php:164
+msgid "Manage"
+msgstr "Gerenciar"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Trabalho/emprego:"
+#: ../../include/nav.php:164
+msgid "Manage other pages"
+msgstr "Gerenciar outras páginas"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Escola/educação:"
+#: ../../include/nav.php:169
+msgid "Account settings"
+msgstr "Configurações da conta"
 
-#: ../../include/bbcode.php:215 ../../include/bbcode.php:614
-#: ../../include/bbcode.php:615
-msgid "Image/photo"
-msgstr "Imagem/foto"
+#: ../../include/nav.php:171
+msgid "Manage/Edit Profiles"
+msgstr "Administrar/Editar Perfis"
 
-#: ../../include/bbcode.php:279
-#, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"external-link\">post</a>"
-msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a>escreveu o seguinte<a href=\"%s\" target=\"external-link\">publicação</a>"
+#: ../../include/nav.php:173
+msgid "Manage/edit friends and contacts"
+msgstr "Gerenciar/editar amigos e contatos"
 
-#: ../../include/bbcode.php:578 ../../include/bbcode.php:598
-msgid "$1 wrote:"
-msgstr "$1 escreveu:"
+#: ../../include/nav.php:180
+msgid "Site setup and configuration"
+msgstr "Configurações do site"
 
-#: ../../include/bbcode.php:625 ../../include/bbcode.php:626
-msgid "Encrypted content"
-msgstr "Conteúdo criptografado"
+#: ../../include/nav.php:184
+msgid "Navigation"
+msgstr "Navegação"
+
+#: ../../include/nav.php:184
+msgid "Site map"
+msgstr "Mapa do Site"
 
 #: ../../include/contact_selectors.php:32
 msgid "Unknown | Not categorised"
@@ -6750,528 +6929,432 @@ msgstr "pump.io"
 msgid "Twitter"
 msgstr "Twitter"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Miscelânea"
-
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr "ano"
-
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "mês"
-
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr "dia"
-
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "nunca"
-
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "menos de um segundo atrás"
-
-#: ../../include/datetime.php:285
-msgid "years"
-msgstr "anos"
-
-#: ../../include/datetime.php:286
-msgid "months"
-msgstr "meses"
-
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "semana"
-
-#: ../../include/datetime.php:287
-msgid "weeks"
-msgstr "semanas"
-
-#: ../../include/datetime.php:288
-msgid "days"
-msgstr "dias"
-
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "hora"
-
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "horas"
-
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "minuto"
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Conector do Diáspora"
 
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "minutos"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "Statusnet"
 
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr "segundo"
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr "Notificação Friendica"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "segundos"
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr "Obrigado,"
 
-#: ../../include/datetime.php:300
+#: ../../include/enotify.php:21
 #, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s atrás"
+msgid "%s Administrator"
+msgstr "%s Administrador"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1829
+#: ../../include/enotify.php:40
 #, php-format
-msgid "%s's birthday"
-msgstr "aniversários de %s's"
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../include/datetime.php:473 ../../include/items.php:1830
+#: ../../include/enotify.php:44
 #, php-format
-msgid "Happy Birthday %s"
-msgstr "Feliz Aniversário %s"
-
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Funcionalidades Gerais"
-
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Perfís Múltiplos"
-
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Capacidade de criar perfis múltiplos"
-
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Funcionalidades de Composição de Publicações"
-
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Editor Richtext"
-
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Habilite editor richtext"
-
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Pré-visualização da Publicação"
-
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Permite pré-visualizar publicações e comentários antes de publicá-los"
-
-#: ../../include/features.php:37
-msgid "Network Sidebar Widgets"
-msgstr "Widgets da Barra Lateral da Rede"
-
-#: ../../include/features.php:38
-msgid "Search by Date"
-msgstr "Buscar por Data"
-
-#: ../../include/features.php:38
-msgid "Ability to select posts by date ranges"
-msgstr "Capacidade de selecionar publicações por intervalos de data"
-
-#: ../../include/features.php:39
-msgid "Group Filter"
-msgstr "Filtrar Grupo"
-
-#: ../../include/features.php:39
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Habilita widget para mostrar publicações da Rede somente de grupos selecionados"
-
-#: ../../include/features.php:40
-msgid "Network Filter"
-msgstr "Filtrar Rede"
-
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Habilita widget para mostrar publicações da Rede de redes selecionadas"
-
-#: ../../include/features.php:41
-msgid "Save search terms for re-use"
-msgstr "Guarde as palavras-chaves para reuso"
-
-#: ../../include/features.php:46
-msgid "Network Tabs"
-msgstr "Abas da Rede"
-
-#: ../../include/features.php:47
-msgid "Network Personal Tab"
-msgstr "Aba Pessoal da Rede"
-
-#: ../../include/features.php:47
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido"
-
-#: ../../include/features.php:48
-msgid "Network New Tab"
-msgstr "Aba Nova da Rede"
-
-#: ../../include/features.php:48
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)"
-
-#: ../../include/features.php:49
-msgid "Network Shared Links Tab"
-msgstr "Aba de Links Compartilhados da Rede"
-
-#: ../../include/features.php:49
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Habilite aba para mostrar somente publicações da Rede que contenham links"
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notify] Nova mensagem recebida em %s"
 
-#: ../../include/features.php:54
-msgid "Post/Comment Tools"
-msgstr "Ferramentas de Publicação/Comentário"
+#: ../../include/enotify.php:46
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s lhe enviou uma mensagem privativa em %2$s."
 
-#: ../../include/features.php:55
-msgid "Multiple Deletion"
-msgstr "Deleção Multipla"
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s lhe enviou %2$s."
 
-#: ../../include/features.php:55
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Selecione e delete múltiplas publicações/comentário imediatamente"
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr "uma mensagem privada"
 
-#: ../../include/features.php:56
-msgid "Edit Sent Posts"
-msgstr "Editar Publicações Enviadas"
+#: ../../include/enotify.php:48
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Favor visitar %s para ver e/ou responder às suas mensagens privadas."
 
-#: ../../include/features.php:56
-msgid "Edit and correct posts and comments after sending"
-msgstr "Editar e corrigir publicações e comentários após envio"
+#: ../../include/enotify.php:91
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s comentou uma [url=%2$s] %3$s[/url]"
 
-#: ../../include/features.php:57
-msgid "Tagging"
-msgstr "Etiquetagem"
+#: ../../include/enotify.php:98
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s comentou na %4$s de [url=%2$s]%3$s [/url]"
 
-#: ../../include/features.php:57
-msgid "Ability to tag existing posts"
-msgstr "Capacidade de colocar etiquetas em publicações existentes"
+#: ../../include/enotify.php:106
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s comentou [url=%2$s]sua %3$s[/url]"
 
-#: ../../include/features.php:58
-msgid "Post Categories"
-msgstr "Categorias de Publicações"
+#: ../../include/enotify.php:116
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notify] Comentário na conversa #%1$d por %2$s"
 
-#: ../../include/features.php:58
-msgid "Add categories to your posts"
-msgstr "Adicione Categorias ás Publicações"
+#: ../../include/enotify.php:117
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s comentou um item/conversa que você está seguindo."
 
-#: ../../include/features.php:59
-msgid "Ability to file posts under folders"
-msgstr "Capacidade de arquivar publicações em pastas"
+#: ../../include/enotify.php:120 ../../include/enotify.php:135
+#: ../../include/enotify.php:148 ../../include/enotify.php:161
+#: ../../include/enotify.php:179 ../../include/enotify.php:192
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Favor visitar %s para ver e/ou responder à conversa."
 
-#: ../../include/features.php:60
-msgid "Dislike Posts"
-msgstr "Desgostar de publicações"
+#: ../../include/enotify.php:127
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notify] %s publicou no mural do seu perfil"
 
-#: ../../include/features.php:60
-msgid "Ability to dislike posts/comments"
-msgstr "Capacidade de desgostar de publicações/comentários"
+#: ../../include/enotify.php:129
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s publicou no mural do seu perfil em %2$s"
 
-#: ../../include/features.php:61
-msgid "Star Posts"
-msgstr "Destacar publicações"
+#: ../../include/enotify.php:131
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s publicou para [url=%2$s]seu mural[/url]"
 
-#: ../../include/features.php:61
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Capacidade de marcar publicações especiais com uma estrela indicadora"
+#: ../../include/enotify.php:142
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notify] %s etiquetou você"
 
-#: ../../include/diaspora.php:704
-msgid "Sharing notification from Diaspora network"
-msgstr "Notificação de compartilhamento da rede Diaspora"
+#: ../../include/enotify.php:143
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s etiquetou você em %2$s"
 
-#: ../../include/diaspora.php:2264
-msgid "Attachments:"
-msgstr "Anexos:"
+#: ../../include/enotify.php:144
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]etiquetou você[/url]."
 
-#: ../../include/acl_selectors.php:325
-msgid "Visible to everybody"
-msgstr "Visível para todos"
+#: ../../include/enotify.php:155
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notify] %s compartilhado uma nova publicação"
 
-#: ../../include/items.php:3511
-msgid "A new person is sharing with you at "
-msgstr "Uma nova pessoa está compartilhando com você em "
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s compartilhou uma nova publicação em %2$s"
 
-#: ../../include/items.php:3511
-msgid "You have a new follower at "
-msgstr "Você tem um novo acompanhante em "
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]compartilhou uma publicação[/url]."
 
-#: ../../include/items.php:4034
-msgid "Do you really want to delete this item?"
-msgstr "Você realmente deseja deletar esse item?"
+#: ../../include/enotify.php:169
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s cutucou você"
 
-#: ../../include/items.php:4257
-msgid "Archives"
-msgstr "Arquivos"
+#: ../../include/enotify.php:170
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s cutucou você em %2$s"
 
-#: ../../include/oembed.php:138
-msgid "Embedded content"
-msgstr "Conteúdo incorporado"
+#: ../../include/enotify.php:171
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]cutucou você[/url]."
 
-#: ../../include/oembed.php:147
-msgid "Embedding disabled"
-msgstr "A incorporação está desabilitada"
+#: ../../include/enotify.php:186
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notify] %s etiquetou sua publicação"
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Bem-vindo(a) "
+#: ../../include/enotify.php:187
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s etiquetou sua publicação em %2$s"
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Por favor, envie uma foto para o perfil."
+#: ../../include/enotify.php:188
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s etiquetou [url=%2$s]sua publicação[/url]"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Bem-vindo(a) de volta "
+#: ../../include/enotify.php:199
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notify] Você recebeu uma apresentação"
 
-#: ../../include/security.php:366
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."
+#: ../../include/enotify.php:200
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Você recebeu uma apresentação de '%1$s' em %2$s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Masculino"
+#: ../../include/enotify.php:201
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Você recebeu [url=%1$s]uma apresentação[/url] de %2$s."
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Feminino"
+#: ../../include/enotify.php:204 ../../include/enotify.php:222
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Você pode visitar o perfil deles em %s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Atualmente masculino"
+#: ../../include/enotify.php:206
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Favor visitar %s para aprovar ou rejeitar a apresentação."
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Atualmente feminino"
+#: ../../include/enotify.php:213
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notify] Você recebeu uma sugestão de amigo"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Masculino a maior parte do tempo"
+#: ../../include/enotify.php:214
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Você recebeu uma sugestão de amigo de '%1$s' em %2$s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Feminino a maior parte do tempo"
+#: ../../include/enotify.php:215
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Você recebeu [url=%1$s]uma sugestão de amigo[/url] de %2$s em %3$s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgênero"
+#: ../../include/enotify.php:220
+msgid "Name:"
+msgstr "Nome:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersexual"
+#: ../../include/enotify.php:221
+msgid "Photo:"
+msgstr "Foto:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transexual"
+#: ../../include/enotify.php:224
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Favor visitar %s para aprovar ou rejeitar a sugestão."
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermafrodita"
+#: ../../include/user.php:39
+msgid "An invitation is required."
+msgstr "É necessário um convite."
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neutro"
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
+msgstr "Não foi possível verificar o convite."
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Não específico"
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
+msgstr "A URL do OpenID é inválida"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Outro"
+#: ../../include/user.php:73
+msgid "Please enter the required information."
+msgstr "Por favor, forneça a informação solicitada."
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Indeciso"
+#: ../../include/user.php:87
+msgid "Please use a shorter name."
+msgstr "Por favor, use um nome mais curto."
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Homens"
+#: ../../include/user.php:89
+msgid "Name too short."
+msgstr "O nome é muito curto."
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Mulheres"
+#: ../../include/user.php:104
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Isso não parece ser o seu nome completo (Nome Sobrenome)."
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gays"
+#: ../../include/user.php:109
+msgid "Your email domain is not among those allowed on this site."
+msgstr "O domínio do seu e-mail não está entre os permitidos neste site."
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lésbicas"
+#: ../../include/user.php:112
+msgid "Not a valid email address."
+msgstr "Não é um endereço de e-mail válido."
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Sem preferência"
+#: ../../include/user.php:125
+msgid "Cannot use that email."
+msgstr "Não é possível usar esse e-mail."
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bissexuais"
+#: ../../include/user.php:131
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra."
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autossexuais"
+#: ../../include/user.php:137 ../../include/user.php:235
+msgid "Nickname is already registered. Please choose another."
+msgstr "Esta identificação já foi registrada. Por favor, escolha outra."
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstêmios"
+#: ../../include/user.php:147
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra."
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Virgens"
+#: ../../include/user.php:163
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ERRO GRAVE: Não foi possível gerar as chaves de segurança."
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Desviantes"
+#: ../../include/user.php:221
+msgid "An error occurred during registration. Please try again."
+msgstr "Ocorreu um erro durante o registro. Por favor, tente novamente."
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetiches"
+#: ../../include/user.php:256
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente."
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Insaciável"
+#: ../../include/acl_selectors.php:326
+msgid "Visible to everybody"
+msgstr "Visível para todos"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Não sexual"
+#: ../../include/bbcode.php:287 ../../include/bbcode.php:920
+#: ../../include/bbcode.php:921
+msgid "Image/photo"
+msgstr "Imagem/foto"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Solteiro(a)"
+#: ../../include/bbcode.php:357
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> escreveu a seguinte <a href=\"%s\" target=\"_blank\">publicação</a>"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Solitário(a)"
+#: ../../include/bbcode.php:458
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Disponível"
+#: ../../include/bbcode.php:884 ../../include/bbcode.php:904
+msgid "$1 wrote:"
+msgstr "$1 escreveu:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Não disponível"
+#: ../../include/bbcode.php:935 ../../include/bbcode.php:936
+msgid "Encrypted content"
+msgstr "Conteúdo criptografado"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Tem uma paixão"
+#: ../../include/oembed.php:174
+msgid "Embedded content"
+msgstr "Conteúdo incorporado"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Apaixonado"
+#: ../../include/oembed.php:183
+msgid "Embedding disabled"
+msgstr "A incorporação está desabilitada"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Saindo com alguém"
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Infiel"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Grupo de privacidade padrão para novos contatos"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Viciado(a) em sexo"
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Todos"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Amigos/Benefícios"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "editar"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Editar grupo"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Envolvido(a)"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Criar um novo grupo"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Casado(a)"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Contatos não estão dentro de nenhum grupo"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Casado imaginariamente"
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "parou de acompanhar"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Parceiros"
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
+msgstr "Excluir o contato"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Coabitando"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Miscelânea"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Direito comum"
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "ano"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Feliz"
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr "mês"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Não estou procurando"
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr "dia"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nunca"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Traído(a)"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "menos de um segundo atrás"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Separado(a)"
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr "anos"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Instável"
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr "meses"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Divorciado(a)"
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "semana"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Divorciado imaginariamente"
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "semanas"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Viúvo(a)"
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr "dias"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Incerto(a)"
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "hora"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "É complicado"
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "horas"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Não importa"
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "minuto"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Pergunte-me"
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "minutos"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "parou de acompanhar"
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr "segundo"
 
-#: ../../include/Contact.php:233
-msgid "Drop Contact"
-msgstr "Excluir o contato"
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "segundos"
 
-#: ../../include/dba.php:44
+#: ../../include/datetime.php:300
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s atrás"
+
+#: ../../include/network.php:886
+msgid "view full size"
+msgstr "ver na tela inteira"
index 9503c0d4cab96ba04d072912ca445a1e9014c0fa..5c1ebfd478720193855372ae62e61da0a8794fd1 100644 (file)
@@ -58,339 +58,125 @@ $a->strings["Page not found."] = "Página não encontrada.";
 $a->strings["Permission denied"] = "Permissão negada";
 $a->strings["Permission denied."] = "Permissão negada.";
 $a->strings["toggle mobile"] = "habilita mobile";
-$a->strings["Home"] = "Pessoal";
-$a->strings["Your posts and conversations"] = "Suas publicações e conversas";
-$a->strings["Profile"] = "Perfil ";
-$a->strings["Your profile page"] = "Sua página de perfil";
-$a->strings["Photos"] = "Fotos";
-$a->strings["Your photos"] = "Suas fotos";
-$a->strings["Events"] = "Eventos";
-$a->strings["Your events"] = "Seus eventos";
-$a->strings["Personal notes"] = "Suas anotações pessoais";
-$a->strings["Your personal photos"] = "Suas fotos pessoais";
-$a->strings["Community"] = "Comunidade";
-$a->strings["don't show"] = "não exibir";
-$a->strings["show"] = "exibir";
-$a->strings["Theme settings"] = "Configurações do tema";
-$a->strings["Set font-size for posts and comments"] = "Escolha o tamanho da fonte para publicações e comentários";
-$a->strings["Set line-height for posts and comments"] = "Escolha comprimento da linha para publicações e comentários";
-$a->strings["Set resolution for middle column"] = "Escolha a resolução para a coluna do meio";
-$a->strings["Contacts"] = "Contatos";
-$a->strings["Your contacts"] = "Seus contatos";
-$a->strings["Community Pages"] = "Páginas da Comunidade";
-$a->strings["Community Profiles"] = "Profiles Comunitários";
-$a->strings["Last users"] = "Últimos usuários";
-$a->strings["Last likes"] = "Últimas gostadas";
-$a->strings["event"] = "evento";
-$a->strings["status"] = "status";
-$a->strings["photo"] = "foto";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s";
-$a->strings["Last photos"] = "Últimas fotos";
-$a->strings["Contact Photos"] = "Fotos dos contatos";
-$a->strings["Profile Photos"] = "Fotos do perfil";
-$a->strings["Find Friends"] = "Encontrar amigos";
-$a->strings["Local Directory"] = "Diretório Local";
-$a->strings["Global Directory"] = "Diretório global";
-$a->strings["Similar Interests"] = "Interesses Parecidos";
-$a->strings["Friend Suggestions"] = "Sugestões de amigos";
-$a->strings["Invite Friends"] = "Convidar amigos";
-$a->strings["Settings"] = "Configurações";
-$a->strings["Earth Layers"] = "Camadas da Terra";
-$a->strings["Set zoomfactor for Earth Layers"] = "Configure o zoom para Camadas da Terra";
-$a->strings["Set longitude (X) for Earth Layers"] = "Configure longitude (X) para Camadas da Terra";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Configure latitude (Y) para Camadas da Terra";
-$a->strings["Help or @NewHere ?"] = "Ajuda ou @NewHere ?";
-$a->strings["Connect Services"] = "Conectar serviços";
-$a->strings["Show/hide boxes at right-hand column:"] = "Mostre/esconda caixas na coluna à direita:";
-$a->strings["Set color scheme"] = "Configure o esquema de cores";
-$a->strings["Set zoomfactor for Earth Layer"] = "Configure o zoom para Camadas da Terra";
-$a->strings["Alignment"] = "Alinhamento";
-$a->strings["Left"] = "Esquerda";
-$a->strings["Center"] = "Centro";
-$a->strings["Color scheme"] = "Esquema de cores";
-$a->strings["Posts font size"] = "Tamanho da fonte para publicações";
-$a->strings["Textareas font size"] = "Tamanho da fonte para campos texto";
-$a->strings["Set colour scheme"] = "Configure o esquema de cores";
-$a->strings["default"] = "padrão";
-$a->strings["Background Image"] = "Imagem de fundo";
-$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "A URL de uma imagem (ex. do seu álbum de fotos) que possa ser usada como fundo da tela.";
-$a->strings["Background Color"] = "Cor do fundo";
-$a->strings["HEX value for the background color. Don't include the #"] = "Valor hexadecimal para a cor do fundo. Não inclua o #.";
-$a->strings["font size"] = "tamanho da fonte";
-$a->strings["base font size for your interface"] = "tamanho base da fonte para a sua interface";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)";
-$a->strings["Set theme width"] = "Configure a largura do tema";
-$a->strings["Delete this item?"] = "Excluir este item?";
-$a->strings["show fewer"] = "exibir menos";
-$a->strings["Update %s failed. See error logs."] = "Atualização %s falhou. Vide registro de erros (log).";
-$a->strings["Update Error at %s"] = "Erro de Atualização em %s";
-$a->strings["Create a New Account"] = "Criar uma nova conta";
-$a->strings["Register"] = "Registrar";
-$a->strings["Logout"] = "Sair";
-$a->strings["Login"] = "Entrar";
-$a->strings["Nickname or Email address: "] = "Identificação ou endereço de e-mail: ";
-$a->strings["Password: "] = "Senha: ";
-$a->strings["Remember me"] = "Lembre-se de mim";
-$a->strings["Or login using OpenID: "] = "Ou login usando OpendID:";
-$a->strings["Forgot your password?"] = "Esqueceu a sua senha?";
-$a->strings["Password Reset"] = "Reiniciar a senha";
-$a->strings["Website Terms of Service"] = "Termos de Serviço do Website";
-$a->strings["terms of service"] = "termos de serviço";
-$a->strings["Website Privacy Policy"] = "Política de Privacidade do Website";
-$a->strings["privacy policy"] = "política de privacidade";
-$a->strings["Requested account is not available."] = "Conta solicitada não disponível";
-$a->strings["Requested profile is not available."] = "Perfil solicitado não está disponível.";
-$a->strings["Edit profile"] = "Editar perfil";
-$a->strings["Connect"] = "Conectar";
-$a->strings["Message"] = "Mensagem";
-$a->strings["Profiles"] = "Perfis";
-$a->strings["Manage/edit profiles"] = "Gerenciar/editar perfis";
-$a->strings["Change profile photo"] = "Mudar a foto do perfil";
-$a->strings["Create New Profile"] = "Criar um novo perfil";
-$a->strings["Profile Image"] = "Imagem do perfil";
-$a->strings["visible to everybody"] = "visível para todos";
-$a->strings["Edit visibility"] = "Editar a visibilidade";
-$a->strings["Location:"] = "Localização:";
-$a->strings["Gender:"] = "Gênero:";
-$a->strings["Status:"] = "Situação:";
-$a->strings["Homepage:"] = "Página web:";
-$a->strings["g A l F d"] = "G l d F";
-$a->strings["F d"] = "F d";
-$a->strings["[today]"] = "[hoje]";
-$a->strings["Birthday Reminders"] = "Lembretes de aniversário";
-$a->strings["Birthdays this week:"] = "Aniversários nesta semana:";
-$a->strings["[No description]"] = "[Sem descrição]";
-$a->strings["Event Reminders"] = "Lembretes de eventos";
-$a->strings["Events this week:"] = "Eventos esta semana:";
-$a->strings["Status"] = "Status";
-$a->strings["Status Messages and Posts"] = "Mensagem de Estado (status) e Publicações";
-$a->strings["Profile Details"] = "Detalhe do Perfil";
-$a->strings["Photo Albums"] = "Álbuns de fotos";
-$a->strings["Videos"] = "Vídeos";
-$a->strings["Events and Calendar"] = "Eventos e Agenda";
-$a->strings["Personal Notes"] = "Notas pessoais";
-$a->strings["Only You Can See This"] = "Somente Você Pode Ver Isso";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s atualmente está %2\$s";
-$a->strings["Mood"] = "Humor";
-$a->strings["Set your current mood and tell your friends"] = "Defina o seu humor e conte aos seus amigos";
-$a->strings["Public access denied."] = "Acesso público negado.";
-$a->strings["Item not found."] = "O item não foi encontrado.";
-$a->strings["Access to this profile has been restricted."] = "O acesso a este perfil está restrito.";
-$a->strings["Item has been removed."] = "O item foi removido.";
-$a->strings["Access denied."] = "Acesso negado.";
-$a->strings["This is Friendica, version"] = "Este é o Friendica, versão";
-$a->strings["running at web location"] = "sendo executado no endereço web";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica.";
-$a->strings["Bug reports and issues: please visit"] = "Relatos e acompanhamentos de erros podem ser encontrados em";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com";
-$a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instaladas:";
-$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicativo instalado";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s dá as boas vinda à %2\$s";
-$a->strings["Registration details for %s"] = "Detalhes do registro de %s";
-$a->strings["Registration successful. Please check your email for further instructions."] = "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações.";
-$a->strings["Failed to send email message. Here is the message that failed."] = "Não foi possível enviar a mensagem de e-mail. Aqui está a mensagem que não foi.";
-$a->strings["Your registration can not be processed."] = "Não foi possível processar o seu registro.";
-$a->strings["Registration request at %s"] = "Solicitação de registro em %s";
-$a->strings["Your registration is pending approval by the site owner."] = "A aprovação do seu registro está pendente junto ao administrador do site.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens.";
-$a->strings["Your OpenID (optional): "] = "Seu OpenID (opcional): ";
-$a->strings["Include your profile in member directory?"] = "Incluir o seu perfil no diretório de membros?";
-$a->strings["Yes"] = "Sim";
-$a->strings["No"] = "Não";
-$a->strings["Membership on this site is by invitation only."] = "A associação a este site só pode ser feita mediante convite.";
-$a->strings["Your invitation ID: "] = "A ID do seu convite: ";
-$a->strings["Registration"] = "Registro";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Seu nome completo (ex: José da Silva): ";
-$a->strings["Your Email Address: "] = "Seu endereço de e-mail: ";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será '<strong>identificação@\$sitename</strong>'";
-$a->strings["Choose a nickname: "] = "Escolha uma identificação: ";
-$a->strings["Import"] = "Importar";
-$a->strings["Import your profile to this friendica instance"] = "Importa seu perfil  desta instância do friendica";
-$a->strings["Profile not found."] = "O perfil não foi encontrado.";
+$a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]";
 $a->strings["Contact not found."] = "O contato não foi encontrado.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado.";
-$a->strings["Response from remote site was not understood."] = "A resposta do site remoto não foi compreendida.";
-$a->strings["Unexpected response from remote site: "] = "Resposta inesperada do site remoto: ";
-$a->strings["Confirmation completed successfully."] = "A confirmação foi completada com sucesso.";
-$a->strings["Remote site reported: "] = "O site remoto relatou: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Falha temporária. Por favor, aguarde e tente novamente.";
-$a->strings["Introduction failed or was revoked."] = "Ocorreu uma falha na apresentação ou ela foi revogada.";
-$a->strings["Unable to set contact photo."] = "Não foi possível definir a foto do contato.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s agora é amigo de %2\$s";
-$a->strings["No user record found for '%s' "] = "Não foi encontrado nenhum registro de usuário para '%s' ";
-$a->strings["Our site encryption key is apparently messed up."] = "A chave de criptografia do nosso site está, aparentemente, bagunçada.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Foi fornecida uma URL em branco ou não foi possível descriptografá-la.";
-$a->strings["Contact record was not found for you on our site."] = "O registro do contato não foi encontrado para você em seu site.";
-$a->strings["Site public key not available in contact record for URL %s."] = "A chave pública do site não está disponível no registro do contato para a URL %s";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo.";
-$a->strings["Unable to set your contact credentials on our system."] = "Não foi possível definir suas credenciais de contato no nosso sistema.";
-$a->strings["Unable to update your contact profile details on our system"] = "Não foi possível atualizar os detalhes do seu perfil em nosso sistema.";
-$a->strings["Connection accepted at %s"] = "Conexão aceita em %s";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s se associou a %2\$s";
-$a->strings["Authorize application connection"] = "Autorizar a conexão com a aplicação";
-$a->strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:";
-$a->strings["Please login to continue."] = "Por favor, autentique-se para continuar.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?";
-$a->strings["No valid account found."] = "Não foi encontrada nenhuma conta válida.";
-$a->strings["Password reset request issued. Check your email."] = "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail.";
-$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de reiniciação da senha em %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada.";
-$a->strings["Your password has been reset as requested."] = "Sua senha foi reiniciada, conforme solicitado.";
-$a->strings["Your new password is"] = "Sua nova senha é";
-$a->strings["Save or copy your new password - and then"] = "Grave ou copie a sua nova senha e, então";
-$a->strings["click here to login"] = "clique aqui para entrar";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil.";
-$a->strings["Your password has been changed at %s"] = "Sua senha foi modifica às %s";
-$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções.";
-$a->strings["Nickname or Email: "] = "Identificação ou e-mail: ";
-$a->strings["Reset"] = "Reiniciar";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem.";
-$a->strings["No recipient selected."] = "Não foi selecionado nenhum destinatário.";
-$a->strings["Unable to check your home location."] = "Não foi possível verificar a sua localização.";
-$a->strings["Message could not be sent."] = "Não foi possível enviar a mensagem.";
-$a->strings["Message collection failure."] = "Falha na coleta de mensagens.";
-$a->strings["Message sent."] = "A mensagem foi enviada.";
-$a->strings["No recipient."] = "Nenhum destinatário.";
-$a->strings["Please enter a link URL:"] = "Por favor, digite uma URL:";
-$a->strings["Send Private Message"] = "Enviar mensagem privada";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos.";
-$a->strings["To:"] = "Para:";
-$a->strings["Subject:"] = "Assunto:";
-$a->strings["Your message:"] = "Sua mensagem:";
-$a->strings["Upload photo"] = "Enviar foto";
-$a->strings["Insert web link"] = "Inserir link web";
-$a->strings["Welcome to Friendica"] = "Bemvindo ao Friendica";
-$a->strings["New Member Checklist"] = "Dicas para os novos membros";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente.";
-$a->strings["Getting Started"] = "Do Início";
-$a->strings["Friendica Walk-Through"] = "Passo-a-passo da friendica";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar.";
-$a->strings["Go to Your Settings"] = "Ir para as suas configurações";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você.";
-$a->strings["Upload Profile Photo"] = "Enviar foto do perfil";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem.";
-$a->strings["Edit Your Profile"] = "Editar seu perfil";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos.";
-$a->strings["Profile Keywords"] = "Palavras-chave do perfil";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades.";
-$a->strings["Connecting"] = "Conexões";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Se</em> esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre.";
-$a->strings["Importing Emails"] = "Importação de e-mails";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail";
-$a->strings["Go to Your Contacts Page"] = "Ir para a sua página de contatos";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>.";
-$a->strings["Go to Your Site's Directory"] = "Ir para o diretório do seu site";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado.";
-$a->strings["Finding New People"] = "Pesquisar por novas pessoas";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas.";
-$a->strings["Groups"] = "Grupos";
-$a->strings["Group Your Contacts"] = "Agrupe seus contatos";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede.";
-$a->strings["Why Aren't My Posts Public?"] = "Por que as minhas publicações não são públicas?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima.";
-$a->strings["Getting Help"] = "Obtendo ajuda";
-$a->strings["Go to the Help Section"] = "Ir para a seção de ajuda";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nossas páginas de <strong>ajuda</strong> podem ser consultadas para mais detalhes sobre características e recursos do programa.";
-$a->strings["Do you really want to delete this suggestion?"] = "Você realmente deseja deletar essa sugestão?";
-$a->strings["Cancel"] = "Cancelar";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas.";
-$a->strings["Ignore/Hide"] = "Ignorar/Ocultar";
-$a->strings["Search Results For:"] = "Resultados de Busca Por:";
-$a->strings["Remove term"] = "Remover o termo";
-$a->strings["Saved Searches"] = "Pesquisas salvas";
-$a->strings["add"] = "adicionar";
-$a->strings["Commented Order"] = "Ordem dos comentários";
-$a->strings["Sort by Comment Date"] = "Ordenar pela data do comentário";
-$a->strings["Posted Order"] = "Ordem das publicações";
-$a->strings["Sort by Post Date"] = "Ordenar pela data de publicação";
-$a->strings["Personal"] = "Pessoal";
-$a->strings["Posts that mention or involve you"] = "Publicações que mencionem ou envolvam você";
-$a->strings["New"] = "Nova";
-$a->strings["Activity Stream - by date"] = "Fluxo de atividades - por data";
-$a->strings["Shared Links"] = "Links compartilhados";
-$a->strings["Interesting Links"] = "Links interessantes";
-$a->strings["Starred"] = "Destacada";
-$a->strings["Favourite Posts"] = "Publicações favoritas";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Aviso: Este grupo contém %s membro de uma rede insegura.",
-       1 => "Aviso: Este grupo contém %s membros de uma rede insegura.",
+$a->strings["Friend suggestion sent."] = "A sugestão de amigo foi enviada";
+$a->strings["Suggest Friends"] = "Sugerir amigos";
+$a->strings["Suggest a friend for %s"] = "Sugerir um amigo para %s";
+$a->strings["This introduction has already been accepted."] = "Esta apresentação já foi aceita.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "A localização do perfil não é válida ou não contém uma informação de perfil.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono.";
+$a->strings["Warning: profile location has no profile photo."] = "Aviso: a localização do perfil não possui nenhuma foto do perfil.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "O parâmetro requerido %d não foi encontrado na localização fornecida",
+       1 => "Os parâmetros requeridos %d não foram encontrados na localização fornecida",
 );
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública.";
-$a->strings["No such group"] = "Este grupo não existe";
-$a->strings["Group is empty"] = "O grupo está vazio";
-$a->strings["Group: "] = "Grupo: ";
-$a->strings["Contact: "] = "Contato: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública.";
-$a->strings["Invalid contact."] = "Contato inválido.";
-$a->strings["Friendica Communications Server - Setup"] = "Servidor de Comunicações Friendica - Configuração";
-$a->strings["Could not connect to database."] = "Não foi possível conectar ao banco de dados.";
-$a->strings["Could not create table."] = "Não foi possível criar tabela.";
-$a->strings["Your Friendica site database has been installed."] = "O banco de dados do seu site Friendica foi instalado.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\".";
-$a->strings["System check"] = "Checagem do sistema";
-$a->strings["Next"] = "Próximo";
-$a->strings["Check again"] = "Checar novamente";
-$a->strings["Database connection"] = "Conexão de banco de dados";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar.";
-$a->strings["Database Server Name"] = "Nome do servidor de banco de dados";
-$a->strings["Database Login Name"] = "Nome do usuário do banco de dados";
-$a->strings["Database Login Password"] = "Senha do usuário do banco de dados";
-$a->strings["Database Name"] = "Nome do banco de dados";
-$a->strings["Site administrator email address"] = "Endereço de email do administrador do site";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web.";
-$a->strings["Please select a default timezone for your website"] = "Por favor, selecione o fuso horário padrão para o seu site";
-$a->strings["Site settings"] = "Configurações do site";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
-$a->strings["PHP executable path"] = "Caminho para o executável do PhP";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação.";
-$a->strings["Command line PHP"] = "PHP em linha de comando";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)";
-$a->strings["Found PHP version: "] = "Encontrado PHP versão:";
-$a->strings["PHP cli binary"] = "Binário cli do PHP";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema.";
-$a->strings["This is required for message delivery to work."] = "Isto é necessário para o funcionamento do envio de mensagens.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Gerar chaves de encriptação";
-$a->strings["libCurl PHP module"] = "Módulo PHP libCurl";
-$a->strings["GD graphics PHP module"] = "Módulo PHP GD graphics";
-$a->strings["OpenSSL PHP module"] = "Módulo PHP OpenSSL";
-$a->strings["mysqli PHP module"] = "Módulo PHP mysqli";
-$a->strings["mb_string PHP module"] = "Módulo PHP mb_string ";
-$a->strings["Apache mod_rewrite module"] = "Módulo mod_rewrite do Apache";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Erro: o módulo libCURL do PHP é necessário, mas não está instalado.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Erro: o módulo openssl do PHP é necessário, mas não está instalado.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Erro: o módulo mysqli do PHP é necessário, mas não está instalado.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Erro: o módulo mb_string PHP é necessário, mas não está instalado.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php tem permissão de escrita";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório.";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 tem escrita permitida";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor.";
-$a->strings["Url rewrite is working"] = "A reescrita de URLs está funcionando";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web.";
-$a->strings["Errors encountered creating database tables."] = "Foram encontrados erros durante a criação das tabelas do banco de dados.";
-$a->strings["<h1>What next</h1>"] = "<h1>A seguir</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador.";
+$a->strings["Introduction complete."] = "A apresentação foi finalizada.";
+$a->strings["Unrecoverable protocol error."] = "Ocorreu um erro irrecuperável de protocolo.";
+$a->strings["Profile unavailable."] = "O perfil não está disponível.";
+$a->strings["%s has received too many connection requests today."] = "%s recebeu solicitações de conexão em excesso hoje.";
+$a->strings["Spam protection measures have been invoked."] = "As medidas de proteção contra spam foram ativadas.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Os amigos foram notificados para tentar novamente em 24 horas.";
+$a->strings["Invalid locator"] = "Localizador inválido";
+$a->strings["Invalid email address."] = "Endereço de e-mail inválido.";
+$a->strings["This account has not been configured for email. Request failed."] = "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação.";
+$a->strings["Unable to resolve your name at the provided location."] = "Não foi possível encontrar a sua identificação no endereço indicado.";
+$a->strings["You have already introduced yourself here."] = "Você já fez a sua apresentação aqui.";
+$a->strings["Apparently you are already friends with %s."] = "Aparentemente você já é amigo de %s.";
+$a->strings["Invalid profile URL."] = "URL de perfil inválida.";
+$a->strings["Disallowed profile URL."] = "URL de perfil não permitida.";
+$a->strings["Failed to update contact record."] = "Não foi possível atualizar o registro do contato.";
+$a->strings["Your introduction has been sent."] = "A sua apresentação foi enviada.";
+$a->strings["Please login to confirm introduction."] = "Por favor, autentique-se para confirmar a apresentação.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil.";
+$a->strings["Hide this contact"] = "Ocultar este contato";
+$a->strings["Welcome home %s."] = "Bem-vindo(a) à sua página pessoal %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirme sua solicitação de apresentação/conexão para %s.";
+$a->strings["Confirm"] = "Confirmar";
+$a->strings["[Name Withheld]"] = "[Nome não revelado]";
+$a->strings["Public access denied."] = "Acesso público negado.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:";
+$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Conectar como um acompanhante por e-mail</strike> (Em breve)";
+$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Caso você ainda não seja membro da rede social livre, <a href=\"http://dir.friendica.com/siteinfo\">clique aqui para encontrar um site Friendica público e junte-se à nós</a>.";
+$a->strings["Friend/Connection Request"] = "Solicitação de amizade/conexão";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Por favor, entre com as informações solicitadas:";
+$a->strings["Does %s know you?"] = "%s conhece você?";
+$a->strings["Yes"] = "Sim";
+$a->strings["No"] = "Não";
+$a->strings["Add a personal note:"] = "Adicione uma anotação pessoal:";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora.";
+$a->strings["Your Identity Address:"] = "Seu endereço de identificação:";
+$a->strings["Submit Request"] = "Enviar solicitação";
+$a->strings["Cancel"] = "Cancelar";
+$a->strings["View Video"] = "Ver Vídeo";
+$a->strings["Requested profile is not available."] = "Perfil solicitado não está disponível.";
+$a->strings["Access to this profile has been restricted."] = "O acesso a este perfil está restrito.";
+$a->strings["Tips for New Members"] = "Dicas para novos membros";
+$a->strings["Invalid request identifier."] = "Identificador de solicitação inválido";
+$a->strings["Discard"] = "Descartar";
+$a->strings["Ignore"] = "Ignorar";
+$a->strings["System"] = "Sistema";
+$a->strings["Network"] = "Rede";
+$a->strings["Personal"] = "Pessoal";
+$a->strings["Home"] = "Pessoal";
+$a->strings["Introductions"] = "Apresentações";
+$a->strings["Messages"] = "Mensagens";
+$a->strings["Show Ignored Requests"] = "Exibir solicitações ignoradas";
+$a->strings["Hide Ignored Requests"] = "Ocultar solicitações ignoradas";
+$a->strings["Notification type: "] = "Tipo de notificação:";
+$a->strings["Friend Suggestion"] = "Sugestão de amigo";
+$a->strings["suggested by %s"] = "sugerido por %s";
+$a->strings["Hide this contact from others"] = "Ocultar este contato dos outros";
+$a->strings["Post a new friend activity"] = "Publicar a adição de amigo";
+$a->strings["if applicable"] = "se aplicável";
+$a->strings["Approve"] = "Aprovar";
+$a->strings["Claims to be known to you: "] = "Alega ser conhecido por você: ";
+$a->strings["yes"] = "sim";
+$a->strings["no"] = "não";
+$a->strings["Approve as: "] = "Aprovar como:";
+$a->strings["Friend"] = "Amigo";
+$a->strings["Sharer"] = "Compartilhador";
+$a->strings["Fan/Admirer"] = "Fã/Admirador";
+$a->strings["Friend/Connect Request"] = "Solicitação de amizade/conexão";
+$a->strings["New Follower"] = "Novo acompanhante";
+$a->strings["No introductions."] = "Sem apresentações.";
+$a->strings["Notifications"] = "Notificações";
+$a->strings["%s liked %s's post"] = "%s gostou da publicação de %s";
+$a->strings["%s disliked %s's post"] = "%s desgostou da publicação de %s";
+$a->strings["%s is now friends with %s"] = "%s agora é amigo de %s";
+$a->strings["%s created a new post"] = "%s criou uma nova publicação";
+$a->strings["%s commented on %s's post"] = "%s comentou uma publicação de %s";
+$a->strings["No more network notifications."] = "Nenhuma notificação de rede.";
+$a->strings["Network Notifications"] = "Notificações de rede";
+$a->strings["No more system notifications."] = "Não fazer notificações de sistema.";
+$a->strings["System Notifications"] = "Notificações de sistema";
+$a->strings["No more personal notifications."] = "Nenhuma notificação pessoal.";
+$a->strings["Personal Notifications"] = "Notificações pessoais";
+$a->strings["No more home notifications."] = "Não existe mais nenhuma notificação pessoal.";
+$a->strings["Home Notifications"] = "Notificações pessoais";
+$a->strings["photo"] = "foto";
+$a->strings["status"] = "status";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s";
+$a->strings["OpenID protocol error. No ID returned."] = "Erro no protocolo OpenID. Não foi retornada nenhuma ID.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "A conta não foi encontrada e não são permitidos registros via OpenID nesse site.";
+$a->strings["Login failed."] = "Não foi possível autenticar.";
+$a->strings["Source (bbcode) text:"] = "Texto fonte (bbcode):";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texto fonte (Diaspora) a converter para BBcode:";
+$a->strings["Source input: "] = "Entrada fonte:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (HTML puro):";
+$a->strings["bb2html: "] = "bb2html: ";
+$a->strings["bb2html2bb: "] = "bb2html2bb: ";
+$a->strings["bb2md: "] = "bb2md: ";
+$a->strings["bb2md2html: "] = "bb2md2html: ";
+$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
+$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
+$a->strings["Source input (Diaspora format): "] = "Fonte de entrada (formato Diaspora):";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
 $a->strings["Theme settings updated."] = "As configurações do tema foram atualizadas.";
 $a->strings["Site"] = "Site";
 $a->strings["Users"] = "Usuários";
@@ -401,6 +187,7 @@ $a->strings["Logs"] = "Relatórios";
 $a->strings["Admin"] = "Admin";
 $a->strings["Plugin Features"] = "Recursos do plugin";
 $a->strings["User registrations waiting for confirmation"] = "Cadastros de novos usuários aguardando confirmação";
+$a->strings["Item not found."] = "O item não foi encontrado.";
 $a->strings["Normal Account"] = "Conta normal";
 $a->strings["Soapbox Account"] = "Conta de vitrine";
 $a->strings["Community/Celebrity Account"] = "Conta de comunidade/celebridade";
@@ -418,6 +205,7 @@ $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] =
 $a->strings["Site settings updated."] = "As configurações do site foram atualizadas.";
 $a->strings["No special theme for mobile devices"] = "Nenhum tema especial para dispositivos móveis";
 $a->strings["Never"] = "Nunca";
+$a->strings["At post arrival"] = "Na chegada da publicação";
 $a->strings["Frequently"] = "Frequentemente";
 $a->strings["Hourly"] = "De hora em hora";
 $a->strings["Twice daily"] = "Duas vezes ao dia";
@@ -430,6 +218,7 @@ $a->strings["No SSL policy, links will track page SSL state"] = "Nenhuma políti
 $a->strings["Force all links to use SSL"] = "Forçar todos os links a utilizar SSL";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)";
 $a->strings["Save Settings"] = "Salvar configurações";
+$a->strings["Registration"] = "Registro";
 $a->strings["File upload"] = "Envio de arquivo";
 $a->strings["Policies"] = "Políticas";
 $a->strings["Advanced"] = "Avançado";
@@ -485,6 +274,8 @@ $a->strings["Disallow public access to addons listed in the apps menu."] = "Disa
 $a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente.";
 $a->strings["Don't embed private images in posts"] = "Não inclua imagens privadas em publicações";
 $a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo.";
+$a->strings["Allow Users to set remote_self"] = "Permite usuários configurarem remote_self";
+$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários";
 $a->strings["Block multiple registrations"] = "Bloquear registros repetidos";
 $a->strings["Disallow users to register additional accounts for use as pages."] = "Desabilitar o registro de contas adicionais para serem usadas como páginas.";
 $a->strings["OpenID support"] = "Suporte ao OpenID";
@@ -496,7 +287,7 @@ $a->strings["Use PHP UTF8 regular expressions"] = "Use expressões regulares do
 $a->strings["Show Community Page"] = "Exibir a página da comunidade";
 $a->strings["Display a Community page showing all recent public postings on this site."] = "Exibe uma página da Comunidade, mostrando todas as publicações recentes feitas nesse site.";
 $a->strings["Enable OStatus support"] = "Habilitar suporte ao OStatus";
-$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornece compatibilidade nativa ao OStatus (identi,.ca, status.net, etc.). Todas as comunicações via OStatus são públicas, por isso avisos de privacidade serão exibidos ocasionalmente.";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados.";
 $a->strings["OStatus conversation completion interval"] = "Intervalo de finalização da conversação OStatus ";
 $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada.";
 $a->strings["Enable Diaspora support"] = "Habilitar suporte ao Diaspora";
@@ -536,6 +327,7 @@ $a->strings["Failed Updates"] = "Atualizações com falha";
 $a->strings["This does not include updates prior to 1139, which did not return a status."] = "Isso não inclue atualizações antes da 1139, as quais não retornavam um status.";
 $a->strings["Mark success (if update was manually applied)"] = "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)";
 $a->strings["Attempt to execute this update step automatically"] = "Tentar executar esse passo da atualização automaticamente";
+$a->strings["Registration details for %s"] = "Detalhes do registro de %s";
 $a->strings["Registration successful. Email send to user"] = "Registro bem sucedido. Email enviado ao usuário.";
 $a->strings["%s user blocked/unblocked"] = array(
        0 => "%s usuário bloqueado/desbloqueado",
@@ -556,7 +348,6 @@ $a->strings["Request date"] = "Solicitar data";
 $a->strings["Name"] = "Nome";
 $a->strings["Email"] = "E-mail";
 $a->strings["No registrations."] = "Nenhum registro.";
-$a->strings["Approve"] = "Aprovar";
 $a->strings["Deny"] = "Negar";
 $a->strings["Block"] = "Bloquear";
 $a->strings["Unblock"] = "Desbloquear";
@@ -579,6 +370,7 @@ $a->strings["Plugin %s enabled."] = "O plugin %s foi habilitado.";
 $a->strings["Disable"] = "Desabilitar";
 $a->strings["Enable"] = "Habilitar";
 $a->strings["Toggle"] = "Alternar";
+$a->strings["Settings"] = "Configurações";
 $a->strings["Author: "] = "Autor: ";
 $a->strings["Maintainer: "] = "Mantenedor: ";
 $a->strings["No themes found."] = "Nenhum tema encontrado";
@@ -597,11 +389,36 @@ $a->strings["FTP Host"] = "Endereço do FTP";
 $a->strings["FTP Path"] = "Caminho do FTP";
 $a->strings["FTP User"] = "Usuário do FTP";
 $a->strings["FTP Password"] = "Senha do FTP";
-$a->strings["Search"] = "Pesquisar";
-$a->strings["No results."] = "Nenhum resultado.";
-$a->strings["Tips for New Members"] = "Dicas para novos membros";
-$a->strings["link"] = "ligação";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetou %3\$s de %2\$s com %4\$s";
+$a->strings["New Message"] = "Nova mensagem";
+$a->strings["No recipient selected."] = "Não foi selecionado nenhum destinatário.";
+$a->strings["Unable to locate contact information."] = "Não foi possível localizar informação do contato.";
+$a->strings["Message could not be sent."] = "Não foi possível enviar a mensagem.";
+$a->strings["Message collection failure."] = "Falha na coleta de mensagens.";
+$a->strings["Message sent."] = "A mensagem foi enviada.";
+$a->strings["Do you really want to delete this message?"] = "Você realmente deseja deletar essa mensagem?";
+$a->strings["Message deleted."] = "A mensagem foi excluída.";
+$a->strings["Conversation removed."] = "A conversa foi removida.";
+$a->strings["Please enter a link URL:"] = "Por favor, digite uma URL:";
+$a->strings["Send Private Message"] = "Enviar mensagem privada";
+$a->strings["To:"] = "Para:";
+$a->strings["Subject:"] = "Assunto:";
+$a->strings["Your message:"] = "Sua mensagem:";
+$a->strings["Upload photo"] = "Enviar foto";
+$a->strings["Insert web link"] = "Inserir link web";
+$a->strings["No messages."] = "Nenhuma mensagem.";
+$a->strings["Unknown sender - %s"] = "Remetente desconhecido - %s";
+$a->strings["You and %s"] = "Você e %s";
+$a->strings["%s and You"] = "%s e você";
+$a->strings["Delete conversation"] = "Excluir conversa";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d mensagem",
+       1 => "%d mensagens",
+);
+$a->strings["Message not available."] = "A mensagem não está disponível.";
+$a->strings["Delete message"] = "Excluir a mensagem";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente.";
+$a->strings["Send Reply"] = "Enviar resposta";
 $a->strings["Item not found"] = "O item não foi encontrado";
 $a->strings["Edit post"] = "Editar a publicação";
 $a->strings["upload photo"] = "upload de foto";
@@ -622,92 +439,173 @@ $a->strings["Public post"] = "Publicação pública";
 $a->strings["Set title"] = "Definir o título";
 $a->strings["Categories (comma-separated list)"] = "Categorias (lista separada por vírgulas)";
 $a->strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com";
+$a->strings["Profile not found."] = "O perfil não foi encontrado.";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado.";
+$a->strings["Response from remote site was not understood."] = "A resposta do site remoto não foi compreendida.";
+$a->strings["Unexpected response from remote site: "] = "Resposta inesperada do site remoto: ";
+$a->strings["Confirmation completed successfully."] = "A confirmação foi completada com sucesso.";
+$a->strings["Remote site reported: "] = "O site remoto relatou: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Falha temporária. Por favor, aguarde e tente novamente.";
+$a->strings["Introduction failed or was revoked."] = "Ocorreu uma falha na apresentação ou ela foi revogada.";
+$a->strings["Unable to set contact photo."] = "Não foi possível definir a foto do contato.";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s agora é amigo de %2\$s";
+$a->strings["No user record found for '%s' "] = "Não foi encontrado nenhum registro de usuário para '%s' ";
+$a->strings["Our site encryption key is apparently messed up."] = "A chave de criptografia do nosso site está, aparentemente, bagunçada.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Foi fornecida uma URL em branco ou não foi possível descriptografá-la.";
+$a->strings["Contact record was not found for you on our site."] = "O registro do contato não foi encontrado para você em seu site.";
+$a->strings["Site public key not available in contact record for URL %s."] = "A chave pública do site não está disponível no registro do contato para a URL %s";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo.";
+$a->strings["Unable to set your contact credentials on our system."] = "Não foi possível definir suas credenciais de contato no nosso sistema.";
+$a->strings["Unable to update your contact profile details on our system"] = "Não foi possível atualizar os detalhes do seu perfil em nosso sistema.";
+$a->strings["Connection accepted at %s"] = "Conexão aceita em %s";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s se associou a %2\$s";
+$a->strings["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Editar o evento";
+$a->strings["link to source"] = "exibir a origem";
+$a->strings["Events"] = "Eventos";
+$a->strings["Create New Event"] = "Criar um novo evento";
+$a->strings["Previous"] = "Anterior";
+$a->strings["Next"] = "Próximo";
+$a->strings["hour:minute"] = "hora:minuto";
+$a->strings["Event details"] = "Detalhes do evento";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "O formato é %s %s. O título e a data de início são obrigatórios.";
+$a->strings["Event Starts:"] = "Início do evento:";
+$a->strings["Required"] = "Obrigatório";
+$a->strings["Finish date/time is not known or not relevant"] = "A data/hora de término não é conhecida ou não é relevante";
+$a->strings["Event Finishes:"] = "Término do evento:";
+$a->strings["Adjust for viewer timezone"] = "Ajustar para o fuso horário do visualizador";
+$a->strings["Description:"] = "Descrição:";
+$a->strings["Location:"] = "Localização:";
+$a->strings["Title:"] = "Título:";
+$a->strings["Share this event"] = "Compartilhar este evento";
+$a->strings["Photos"] = "Fotos";
+$a->strings["Files"] = "Arquivos";
+$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s";
+$a->strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota.";
+$a->strings["Visible to:"] = "Visível para:";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem.";
+$a->strings["Unable to check your home location."] = "Não foi possível verificar a sua localização.";
+$a->strings["No recipient."] = "Nenhum destinatário.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos.";
+$a->strings["Visit %s's profile [%s]"] = "Visitar o perfil de %s [%s]";
+$a->strings["Edit contact"] = "Editar o contato";
+$a->strings["Contacts who are not members of a group"] = "Contatos que não são membros de um grupo";
+$a->strings["This is Friendica, version"] = "Este é o Friendica, versão";
+$a->strings["running at web location"] = "sendo executado no endereço web";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica.";
+$a->strings["Bug reports and issues: please visit"] = "Relatos e acompanhamentos de erros podem ser encontrados em";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com";
+$a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instaladas:";
+$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicativo instalado";
+$a->strings["Remove My Account"] = "Remover minha conta";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la.";
+$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:";
+$a->strings["Image exceeds size limit of %d"] = "A imagem excede o limite de tamanho de %d";
+$a->strings["Unable to process image."] = "Não foi possível processar a imagem.";
+$a->strings["Wall Photos"] = "Fotos do mural";
+$a->strings["Image upload failed."] = "Não foi possível enviar a imagem.";
+$a->strings["Authorize application connection"] = "Autorizar a conexão com a aplicação";
+$a->strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:";
+$a->strings["Please login to continue."] = "Por favor, autentique-se para continuar.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetou %3\$s de %2\$s com %4\$s";
+$a->strings["Photo Albums"] = "Álbuns de fotos";
+$a->strings["Contact Photos"] = "Fotos dos contatos";
+$a->strings["Upload New Photos"] = "Enviar novas fotos";
+$a->strings["everybody"] = "todos";
+$a->strings["Contact information unavailable"] = "A informação de contato não está disponível";
+$a->strings["Profile Photos"] = "Fotos do perfil";
+$a->strings["Album not found."] = "O álbum não foi encontrado.";
+$a->strings["Delete Album"] = "Excluir o álbum";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?";
+$a->strings["Delete Photo"] = "Excluir a foto";
+$a->strings["Do you really want to delete this photo?"] = "Você realmente deseja deletar essa foto?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s foi marcado em %2\$s por %3\$s";
+$a->strings["a photo"] = "uma foto";
+$a->strings["Image exceeds size limit of "] = "A imagem excede o tamanho máximo de ";
+$a->strings["Image file is empty."] = "O arquivo de imagem está vazio.";
+$a->strings["No photos selected"] = "Não foi selecionada nenhuma foto";
+$a->strings["Access to this item is restricted."] = "O acesso a este item é restrito.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos.";
+$a->strings["Upload Photos"] = "Enviar fotos";
+$a->strings["New album name: "] = "Nome do novo álbum: ";
+$a->strings["or existing album name: "] = "ou o nome de um álbum já existente: ";
+$a->strings["Do not show a status post for this upload"] = "Não exiba uma publicação de status para este envio";
+$a->strings["Permissions"] = "Permissões";
+$a->strings["Show to Groups"] = "Mostre para Grupos";
+$a->strings["Show to Contacts"] = "Mostre para Contatos";
+$a->strings["Private Photo"] = "Foto Privada";
+$a->strings["Public Photo"] = "Foto Pública";
+$a->strings["Edit Album"] = "Editar o álbum";
+$a->strings["Show Newest First"] = "Exibir as mais recentes primeiro";
+$a->strings["Show Oldest First"] = "Exibir as mais antigas primeiro";
+$a->strings["View Photo"] = "Ver a foto";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Permissão negada. O acesso a este item pode estar restrito.";
+$a->strings["Photo not available"] = "A foto não está disponível";
+$a->strings["View photo"] = "Ver a imagem";
+$a->strings["Edit photo"] = "Editar a foto";
+$a->strings["Use as profile photo"] = "Usar como uma foto de perfil";
+$a->strings["View Full Size"] = "Ver no tamanho real";
+$a->strings["Tags: "] = "Etiquetas: ";
+$a->strings["[Remove any tag]"] = "[Remover qualquer etiqueta]";
+$a->strings["Rotate CW (right)"] = "Rotacionar para direita";
+$a->strings["Rotate CCW (left)"] = "Rotacionar para esquerda";
+$a->strings["New album name"] = "Novo nome para o álbum";
+$a->strings["Caption"] = "Legenda";
+$a->strings["Add a Tag"] = "Adicionar uma etiqueta";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento";
+$a->strings["Private photo"] = "Foto privada";
+$a->strings["Public photo"] = "Foto pública";
+$a->strings["Share"] = "Compartilhar";
+$a->strings["View Album"] = "Ver álbum";
+$a->strings["Recent Photos"] = "Fotos recentes";
+$a->strings["No profile"] = "Nenhum perfil";
+$a->strings["Registration successful. Please check your email for further instructions."] = "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações.";
+$a->strings["Failed to send email message. Here is the message that failed."] = "Não foi possível enviar a mensagem de e-mail. Aqui está a mensagem que não foi.";
+$a->strings["Your registration can not be processed."] = "Não foi possível processar o seu registro.";
+$a->strings["Registration request at %s"] = "Solicitação de registro em %s";
+$a->strings["Your registration is pending approval by the site owner."] = "A aprovação do seu registro está pendente junto ao administrador do site.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens.";
+$a->strings["Your OpenID (optional): "] = "Seu OpenID (opcional): ";
+$a->strings["Include your profile in member directory?"] = "Incluir o seu perfil no diretório de membros?";
+$a->strings["Membership on this site is by invitation only."] = "A associação a este site só pode ser feita mediante convite.";
+$a->strings["Your invitation ID: "] = "A ID do seu convite: ";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Seu nome completo (ex: José da Silva): ";
+$a->strings["Your Email Address: "] = "Seu endereço de e-mail: ";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será '<strong>identificação@\$sitename</strong>'";
+$a->strings["Choose a nickname: "] = "Escolha uma identificação: ";
+$a->strings["Register"] = "Registrar";
+$a->strings["Import"] = "Importar";
+$a->strings["Import your profile to this friendica instance"] = "Importa seu perfil  desta instância do friendica";
+$a->strings["No valid account found."] = "Não foi encontrada nenhuma conta válida.";
+$a->strings["Password reset request issued. Check your email."] = "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail.";
+$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de reiniciação da senha em %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada.";
+$a->strings["Password Reset"] = "Reiniciar a senha";
+$a->strings["Your password has been reset as requested."] = "Sua senha foi reiniciada, conforme solicitado.";
+$a->strings["Your new password is"] = "Sua nova senha é";
+$a->strings["Save or copy your new password - and then"] = "Grave ou copie a sua nova senha e, então";
+$a->strings["click here to login"] = "clique aqui para entrar";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil.";
+$a->strings["Your password has been changed at %s"] = "Sua senha foi modifica às %s";
+$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções.";
+$a->strings["Nickname or Email: "] = "Identificação ou e-mail: ";
+$a->strings["Reset"] = "Reiniciar";
+$a->strings["System down for maintenance"] = "Sistema em manutenção";
 $a->strings["Item not available."] = "O item não está disponível.";
 $a->strings["Item was not found."] = "O item não foi encontrado.";
-$a->strings["Account approved."] = "A conta foi aprovada.";
-$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado";
-$a->strings["Please login."] = "Por favor, autentique-se.";
-$a->strings["Find on this site"] = "Pesquisar neste site";
-$a->strings["Finding: "] = "Pesquisando: ";
-$a->strings["Site Directory"] = "Diretório do site";
-$a->strings["Find"] = "Pesquisar";
-$a->strings["Age: "] = "Idade: ";
-$a->strings["Gender: "] = "Gênero: ";
-$a->strings["About:"] = "Sobre:";
-$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar ocultas).";
-$a->strings["Contact settings applied."] = "As configurações do contato foram aplicadas.";
-$a->strings["Contact update failed."] = "Não foi possível atualizar o contato.";
-$a->strings["Repair Contact Settings"] = "Corrigir configurações do contato";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo.";
-$a->strings["Return to contact editor"] = "Voltar ao editor de contatos";
-$a->strings["Account Nickname"] = "Identificação da conta";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - sobrescreve Nome/Identificação";
-$a->strings["Account URL"] = "URL da conta";
-$a->strings["Friend Request URL"] = "URL da requisição de amizade";
-$a->strings["Friend Confirm URL"] = "URL da confirmação de amizade";
-$a->strings["Notification Endpoint URL"] = "URL do ponto final da notificação";
-$a->strings["Poll/Feed URL"] = "URL do captador/fonte de notícias";
-$a->strings["New photo from this URL"] = "Nova imagem desta URL";
-$a->strings["Move account"] = "Mover conta";
-$a->strings["You can import an account from another Friendica server."] = "Você pode importar um conta de outro sevidor Friendica.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do Diaspora";
-$a->strings["Account file"] = "Arquivo de conta";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\"";
-$a->strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota.";
-$a->strings["Visible to:"] = "Visível para:";
-$a->strings["Save"] = "Salvar";
+$a->strings["Applications"] = "Aplicativos";
+$a->strings["No installed applications."] = "Nenhum aplicativo instalado";
 $a->strings["Help:"] = "Ajuda:";
 $a->strings["Help"] = "Ajuda";
-$a->strings["No profile"] = "Nenhum perfil";
-$a->strings["This introduction has already been accepted."] = "Esta apresentação já foi aceita.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "A localização do perfil não é válida ou não contém uma informação de perfil.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono.";
-$a->strings["Warning: profile location has no profile photo."] = "Aviso: a localização do perfil não possui nenhuma foto do perfil.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "O parâmetro requerido %d não foi encontrado na localização fornecida",
-       1 => "Os parâmetros requeridos %d não foram encontrados na localização fornecida",
+$a->strings["%d contact edited."] = array(
+       0 => "%d contato editado",
+       1 => "%d contatos editados",
 );
-$a->strings["Introduction complete."] = "A apresentação foi finalizada.";
-$a->strings["Unrecoverable protocol error."] = "Ocorreu um erro irrecuperável de protocolo.";
-$a->strings["Profile unavailable."] = "O perfil não está disponível.";
-$a->strings["%s has received too many connection requests today."] = "%s recebeu solicitações de conexão em excesso hoje.";
-$a->strings["Spam protection measures have been invoked."] = "As medidas de proteção contra spam foram ativadas.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Os amigos foram notificados para tentar novamente em 24 horas.";
-$a->strings["Invalid locator"] = "Localizador inválido";
-$a->strings["Invalid email address."] = "Endereço de e-mail inválido.";
-$a->strings["This account has not been configured for email. Request failed."] = "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação.";
-$a->strings["Unable to resolve your name at the provided location."] = "Não foi possível encontrar a sua identificação no endereço indicado.";
-$a->strings["You have already introduced yourself here."] = "Você já fez a sua apresentação aqui.";
-$a->strings["Apparently you are already friends with %s."] = "Aparentemente você já é amigo de %s.";
-$a->strings["Invalid profile URL."] = "URL de perfil inválida.";
-$a->strings["Disallowed profile URL."] = "URL de perfil não permitida.";
-$a->strings["Failed to update contact record."] = "Não foi possível atualizar o registro do contato.";
-$a->strings["Your introduction has been sent."] = "A sua apresentação foi enviada.";
-$a->strings["Please login to confirm introduction."] = "Por favor, autentique-se para confirmar a apresentação.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil.";
-$a->strings["Hide this contact"] = "Ocultar este contato";
-$a->strings["Welcome home %s."] = "Bem-vindo(a) à sua página pessoal %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirme sua solicitação de apresentação/conexão para %s.";
-$a->strings["Confirm"] = "Confirmar";
-$a->strings["[Name Withheld]"] = "[Nome não revelado]";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:";
-$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Conectar como um acompanhante por e-mail</strike> (Em breve)";
-$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Caso você ainda não seja membro da rede social livre, <a href=\"http://dir.friendica.com/siteinfo\">clique aqui para encontrar um site Friendica público e junte-se à nós</a>.";
-$a->strings["Friend/Connection Request"] = "Solicitação de amizade/conexão";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Por favor, entre com as informações solicitadas:";
-$a->strings["Does %s know you?"] = "%s conhece você?";
-$a->strings["Add a personal note:"] = "Adicione uma anotação pessoal:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora.";
-$a->strings["Your Identity Address:"] = "Seu endereço de identificação:";
-$a->strings["Submit Request"] = "Enviar solicitação";
-$a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]";
-$a->strings["View in context"] = "Ver no contexto";
 $a->strings["Could not access contact record."] = "Não foi possível acessar o registro do contato.";
 $a->strings["Could not locate selected profile."] = "Não foi possível localizar o perfil selecionado.";
 $a->strings["Contact updated."] = "O contato foi atualizado.";
@@ -734,7 +632,6 @@ $a->strings["%d contact in common"] = array(
 $a->strings["View all contacts"] = "Ver todos os contatos";
 $a->strings["Toggle Blocked status"] = "Alternar o status de bloqueio";
 $a->strings["Unignore"] = "Deixar de ignorar";
-$a->strings["Ignore"] = "Ignorar";
 $a->strings["Toggle Ignored status"] = "Alternar o status de ignorado";
 $a->strings["Unarchive"] = "Desarquivar";
 $a->strings["Archive"] = "Arquivar";
@@ -747,7 +644,6 @@ $a->strings["Profile Visibility"] = "Visibilidade do perfil";
 $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro.";
 $a->strings["Contact Information / Notes"] = "Informações sobre o contato / Anotações";
 $a->strings["Edit contact notes"] = "Editar as anotações do contato";
-$a->strings["Visit %s's profile [%s]"] = "Visitar o perfil de %s [%s]";
 $a->strings["Block/Unblock contact"] = "Bloquear/desbloquear o contato";
 $a->strings["Ignore contact"] = "Ignorar o contato";
 $a->strings["Repair URL settings"] = "Reparar as definições de URL";
@@ -758,8 +654,10 @@ $a->strings["Update public posts"] = "Atualizar publicações públicas";
 $a->strings["Currently blocked"] = "Atualmente bloqueado";
 $a->strings["Currently ignored"] = "Atualmente ignorado";
 $a->strings["Currently archived"] = "Atualmente arquivado";
-$a->strings["Hide this contact from others"] = "Ocultar este contato dos outros";
 $a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Respostas/gostadas associados às suas publicações <strong>ainda podem</strong> estar visíveis";
+$a->strings["Notification for new posts"] = "Notificações para novas publicações";
+$a->strings["Send a notification of every new post of this contact"] = "Envie uma notificação para todos as novas publicações deste contato";
+$a->strings["Fetch further information for feeds"] = "Pega mais informações para feeds";
 $a->strings["Suggestions"] = "Sugestões";
 $a->strings["Suggest potential friends"] = "Sugerir amigos em potencial";
 $a->strings["All Contacts"] = "Todos os contatos";
@@ -777,19 +675,98 @@ $a->strings["Only show hidden contacts"] = "Exibe somente contatos ocultos";
 $a->strings["Mutual Friendship"] = "Amizade mútua";
 $a->strings["is a fan of yours"] = "é um fã seu";
 $a->strings["you are a fan of"] = "você é um fã de";
-$a->strings["Edit contact"] = "Editar o contato";
+$a->strings["Contacts"] = "Contatos";
 $a->strings["Search your contacts"] = "Pesquisar seus contatos";
-$a->strings["everybody"] = "todos";
-$a->strings["Account settings"] = "Configurações da conta";
+$a->strings["Finding: "] = "Pesquisando: ";
+$a->strings["Find"] = "Pesquisar";
+$a->strings["Update"] = "Atualizar";
+$a->strings["No videos selected"] = "Nenhum vídeo selecionado";
+$a->strings["Recent Videos"] = "Vídeos Recentes";
+$a->strings["Upload New Videos"] = "Envie Novos Vídeos";
+$a->strings["Common Friends"] = "Amigos em Comum";
+$a->strings["No contacts in common."] = "Nenhum contato em comum.";
+$a->strings["Contact added"] = "O contato foi adicionado";
+$a->strings["Move account"] = "Mover conta";
+$a->strings["You can import an account from another Friendica server."] = "Você pode importar um conta de outro sevidor Friendica.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do Diaspora";
+$a->strings["Account file"] = "Arquivo de conta";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\"";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está seguindo %2\$s's %3\$s";
+$a->strings["Friends of %s"] = "Amigos de %s";
+$a->strings["No friends to display."] = "Nenhum amigo para exibir.";
+$a->strings["Tag removed"] = "A etiqueta foi removida";
+$a->strings["Remove Item Tag"] = "Remover a etiqueta do item";
+$a->strings["Select a tag to remove: "] = "Selecione uma etiqueta para remover: ";
+$a->strings["Remove"] = "Remover";
+$a->strings["Welcome to Friendica"] = "Bemvindo ao Friendica";
+$a->strings["New Member Checklist"] = "Dicas para os novos membros";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente.";
+$a->strings["Getting Started"] = "Do Início";
+$a->strings["Friendica Walk-Through"] = "Passo-a-passo da friendica";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar.";
+$a->strings["Go to Your Settings"] = "Ir para as suas configurações";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você.";
+$a->strings["Profile"] = "Perfil ";
+$a->strings["Upload Profile Photo"] = "Enviar foto do perfil";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem.";
+$a->strings["Edit Your Profile"] = "Editar seu perfil";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos.";
+$a->strings["Profile Keywords"] = "Palavras-chave do perfil";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades.";
+$a->strings["Connecting"] = "Conexões";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Se</em> esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre.";
+$a->strings["Importing Emails"] = "Importação de e-mails";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail";
+$a->strings["Go to Your Contacts Page"] = "Ir para a sua página de contatos";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>.";
+$a->strings["Go to Your Site's Directory"] = "Ir para o diretório do seu site";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado.";
+$a->strings["Finding New People"] = "Pesquisar por novas pessoas";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas.";
+$a->strings["Groups"] = "Grupos";
+$a->strings["Group Your Contacts"] = "Agrupe seus contatos";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede.";
+$a->strings["Why Aren't My Posts Public?"] = "Por que as minhas publicações não são públicas?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima.";
+$a->strings["Getting Help"] = "Obtendo ajuda";
+$a->strings["Go to the Help Section"] = "Ir para a seção de ajuda";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nossas páginas de <strong>ajuda</strong> podem ser consultadas para mais detalhes sobre características e recursos do programa.";
+$a->strings["Remove term"] = "Remover o termo";
+$a->strings["Saved Searches"] = "Pesquisas salvas";
+$a->strings["Search"] = "Pesquisar";
+$a->strings["No results."] = "Nenhum resultado.";
+$a->strings["Total invitation limit exceeded."] = "Limite de convites totais excedido.";
+$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido.";
+$a->strings["Please join us on Friendica"] = "Por favor, junte-se à nós na Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite de convites ultrapassado. Favor contactar o administrador do sítio.";
+$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem.";
+$a->strings["%d message sent."] = array(
+       0 => "%d mensagem enviada.",
+       1 => "%d mensagens enviadas.",
+);
+$a->strings["You have no more invitations available"] = "Você não possui mais convites disponíveis";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros.";
+$a->strings["Send invitations"] = "Enviar convites.";
+$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Você preciso informar este código de convite: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com.";
 $a->strings["Additional features"] = "Funcionalidades adicionais";
-$a->strings["Display settings"] = "Configurações de exibição";
-$a->strings["Connector settings"] = "Configurações do conector";
-$a->strings["Plugin settings"] = "Configurações dos plugins";
+$a->strings["Display"] = "Tela";
+$a->strings["Social Networks"] = "Redes Sociais";
+$a->strings["Delegations"] = "Delegações";
 $a->strings["Connected apps"] = "Aplicações conectadas";
 $a->strings["Export personal data"] = "Exportar dados pessoais";
 $a->strings["Remove account"] = "Remover a conta";
 $a->strings["Missing some important data!"] = "Está faltando algum dado importante!";
-$a->strings["Update"] = "Atualizar";
 $a->strings["Failed to connect with email account using the settings provided."] = "Não foi possível conectar à conta de e-mail com as configurações fornecidas.";
 $a->strings["Email settings updated."] = "As configurações de e-mail foram atualizadas.";
 $a->strings["Features updated"] = "Funcionalidades atualizadas";
@@ -827,7 +804,6 @@ $a->strings["enabled"] = "habilitado";
 $a->strings["disabled"] = "desabilitado";
 $a->strings["StatusNet"] = "StatusNet";
 $a->strings["Email access is disabled on this site."] = "O acesso ao e-mail está desabilitado neste site.";
-$a->strings["Connector Settings"] = "Configurações do conector";
 $a->strings["Email/Mailbox Setup"] = "Configurações do e-mail/caixa postal";
 $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal.";
 $a->strings["Last successful email check:"] = "Última checagem bem sucedida de e-mail:";
@@ -852,7 +828,10 @@ $a->strings["Number of items to display per page:"] = "Número de itens a serem
 $a->strings["Maximum of 100 items"] = "Máximo de 100 itens";
 $a->strings["Number of items to display per page when viewed from mobile device:"] = "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:";
 $a->strings["Don't show emoticons"] = "Não exibir emoticons";
+$a->strings["Don't show notices"] = "Não mostra avisos";
 $a->strings["Infinite scroll"] = "rolamento infinito";
+$a->strings["User Types"] = "Tipos de Usuários";
+$a->strings["Community Types"] = "Tipos de Comunidades";
 $a->strings["Normal Account Page"] = "Página de conta normal";
 $a->strings["This account is a normal personal profile"] = "Essa conta é um perfil pessoal normal";
 $a->strings["Soapbox Page"] = "Página de vitrine";
@@ -904,8 +883,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Número máximo de requisições
 $a->strings["(to prevent spam abuse)"] = "(para prevenir abuso de spammers)";
 $a->strings["Default Post Permissions"] = "Permissões padrão de publicação";
 $a->strings["(click to open/close)"] = "(clique para abrir/fechar)";
-$a->strings["Show to Groups"] = "Mostre para Grupos";
-$a->strings["Show to Contacts"] = "Mostre para Contatos";
 $a->strings["Default Private Post"] = "Publicação Privada Padrão";
 $a->strings["Default Public Post"] = "Publicação Pública Padrão";
 $a->strings["Default Permissions for New Posts"] = "Permissões Padrão para Publicações Novas";
@@ -929,6 +906,9 @@ $a->strings["Change the behaviour of this account for special situations"] = "Mo
 $a->strings["Relocate"] = "Relocação";
 $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão.";
 $a->strings["Resend relocate message to contacts"] = "Reenviar mensagem de relocação para os contatos";
+$a->strings["Item has been removed."] = "O item foi removido.";
+$a->strings["People Search"] = "Pesquisar pessoas";
+$a->strings["No matches"] = "Nenhuma correspondência";
 $a->strings["Profile deleted."] = "O perfil foi excluído.";
 $a->strings["Profile-"] = "Perfil-";
 $a->strings["New profile created."] = "O novo perfil foi criado.";
@@ -985,152 +965,99 @@ $a->strings["Likes:"] = "Gosta de:";
 $a->strings["Dislikes:"] = "Não gosta de:";
 $a->strings["Example: fishing photography software"] = "Exemplo: pesca fotografia software";
 $a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Usado na pesquisa de perfis, nunca é exibido para os outros)";
-$a->strings["Tell us about yourself..."] = "Fale um pouco sobre você...";
-$a->strings["Hobbies/Interests"] = "Passatempos/Interesses";
-$a->strings["Contact information and Social Networks"] = "Informações de contato e redes sociais";
-$a->strings["Musical interests"] = "Preferências musicais";
-$a->strings["Books, literature"] = "Livros, literatura";
-$a->strings["Television"] = "Televisão";
-$a->strings["Film/dance/culture/entertainment"] = "Filme/dança/cultura/entretenimento";
-$a->strings["Love/romance"] = "Amor/romance";
-$a->strings["Work/employment"] = "Trabalho/emprego";
-$a->strings["School/education"] = "Escola/educação";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet.";
-$a->strings["Edit/Manage Profiles"] = "Editar/Gerenciar perfis";
-$a->strings["Group created."] = "O grupo foi criado.";
-$a->strings["Could not create group."] = "Não foi possível criar o grupo.";
-$a->strings["Group not found."] = "O grupo não foi encontrado.";
-$a->strings["Group name changed."] = "O nome do grupo foi alterado.";
-$a->strings["Save Group"] = "Salvar o grupo";
-$a->strings["Create a group of contacts/friends."] = "Criar um grupo de contatos/amigos.";
-$a->strings["Group Name: "] = "Nome do grupo: ";
-$a->strings["Group removed."] = "O grupo foi removido.";
-$a->strings["Unable to remove group."] = "Não foi possível remover o grupo.";
-$a->strings["Group Editor"] = "Editor de grupo";
-$a->strings["Members"] = "Membros";
-$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover.";
-$a->strings["Source (bbcode) text:"] = "Texto fonte (bbcode):";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texto fonte (Diaspora) a converter para BBcode:";
-$a->strings["Source input: "] = "Entrada fonte:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (HTML puro):";
-$a->strings["bb2html: "] = "bb2html: ";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Fonte de entrada (formato Diaspora):";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Usado na pesquisa de perfis, nunca é exibido para os outros)";
+$a->strings["Tell us about yourself..."] = "Fale um pouco sobre você...";
+$a->strings["Hobbies/Interests"] = "Passatempos/Interesses";
+$a->strings["Contact information and Social Networks"] = "Informações de contato e redes sociais";
+$a->strings["Musical interests"] = "Preferências musicais";
+$a->strings["Books, literature"] = "Livros, literatura";
+$a->strings["Television"] = "Televisão";
+$a->strings["Film/dance/culture/entertainment"] = "Filme/dança/cultura/entretenimento";
+$a->strings["Love/romance"] = "Amor/romance";
+$a->strings["Work/employment"] = "Trabalho/emprego";
+$a->strings["School/education"] = "Escola/educação";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet.";
+$a->strings["Age: "] = "Idade: ";
+$a->strings["Edit/Manage Profiles"] = "Editar/Gerenciar perfis";
+$a->strings["Change profile photo"] = "Mudar a foto do perfil";
+$a->strings["Create New Profile"] = "Criar um novo perfil";
+$a->strings["Profile Image"] = "Imagem do perfil";
+$a->strings["visible to everybody"] = "visível para todos";
+$a->strings["Edit visibility"] = "Editar a visibilidade";
+$a->strings["link"] = "ligação";
+$a->strings["Export account"] = "Exportar conta";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor.";
+$a->strings["Export all"] = "Exportar tudo";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)";
+$a->strings["{0} wants to be your friend"] = "{0} deseja ser seu amigo";
+$a->strings["{0} sent you a message"] = "{0} lhe enviou uma mensagem";
+$a->strings["{0} requested registration"] = "{0} solicitou registro";
+$a->strings["{0} commented %s's post"] = "{0} comentou a publicação de %s";
+$a->strings["{0} liked %s's post"] = "{0} gostou da publicação de %s";
+$a->strings["{0} disliked %s's post"] = "{0} desgostou da publicação de %s";
+$a->strings["{0} is now friends with %s"] = "{0} agora é amigo de %s";
+$a->strings["{0} posted"] = "{0} publicou";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} etiquetou a publicação de %s com #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} mencionou você em uma publicação";
+$a->strings["Nothing new here"] = "Nada de novo aqui";
+$a->strings["Clear notifications"] = "Descartar notificações";
 $a->strings["Not available."] = "Não disponível.";
-$a->strings["Contact added"] = "O contato foi adicionado";
-$a->strings["No more system notifications."] = "Não fazer notificações de sistema.";
-$a->strings["System Notifications"] = "Notificações de sistema";
-$a->strings["New Message"] = "Nova mensagem";
-$a->strings["Unable to locate contact information."] = "Não foi possível localizar informação do contato.";
-$a->strings["Messages"] = "Mensagens";
-$a->strings["Do you really want to delete this message?"] = "Você realmente deseja deletar essa mensagem?";
-$a->strings["Message deleted."] = "A mensagem foi excluída.";
-$a->strings["Conversation removed."] = "A conversa foi removida.";
-$a->strings["No messages."] = "Nenhuma mensagem.";
-$a->strings["Unknown sender - %s"] = "Remetente desconhecido - %s";
-$a->strings["You and %s"] = "Você e %s";
-$a->strings["%s and You"] = "%s e você";
-$a->strings["Delete conversation"] = "Excluir conversa";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d mensagem",
-       1 => "%d mensagens",
-);
-$a->strings["Message not available."] = "A mensagem não está disponível.";
-$a->strings["Delete message"] = "Excluir a mensagem";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente.";
-$a->strings["Send Reply"] = "Enviar resposta";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s";
-$a->strings["Post successful."] = "Publicado com sucesso.";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ H:i";
-$a->strings["Time Conversion"] = "Conversão de tempo";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos.";
-$a->strings["UTC time: %s"] = "Hora UTC: %s";
-$a->strings["Current timezone: %s"] = "Fuso horário atual: %s";
-$a->strings["Converted localtime: %s"] = "Horário local convertido: %s";
-$a->strings["Please select your timezone:"] = "Por favor, selecione seu fuso horário:";
+$a->strings["Community"] = "Comunidade";
 $a->strings["Save to Folder:"] = "Salvar na pasta:";
 $a->strings["- select -"] = "-selecione-";
+$a->strings["Save"] = "Salvar";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem";
+$a->strings["Or - did you try to upload an empty file?"] = "Ou - você tentou enviar um arquivo vazio?";
+$a->strings["File exceeds size limit of %d"] = "O arquivo excedeu o tamanho limite de %d";
+$a->strings["File upload failed."] = "Não foi possível enviar o arquivo.";
 $a->strings["Invalid profile identifier."] = "Identificador de perfil inválido.";
 $a->strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil";
+$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover.";
 $a->strings["Visible To"] = "Visível para";
 $a->strings["All Contacts (with secure profile access)"] = "Todos os contatos (com acesso a perfil seguro)";
+$a->strings["Do you really want to delete this suggestion?"] = "Você realmente deseja deletar essa sugestão?";
+$a->strings["Friend Suggestions"] = "Sugestões de amigos";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas.";
+$a->strings["Connect"] = "Conectar";
+$a->strings["Ignore/Hide"] = "Ignorar/Ocultar";
+$a->strings["Access denied."] = "Acesso negado.";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s dá as boas vinda à %2\$s";
+$a->strings["Manage Identities and/or Pages"] = "Gerenciar identidades e/ou páginas";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\"";
+$a->strings["Select an identity to manage: "] = "Selecione uma identidade para gerenciar: ";
+$a->strings["No potential page delegates located."] = "Nenhuma página delegada potencial localizada.";
+$a->strings["Delegate Page Management"] = "Delegar Administração de Página";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente.";
+$a->strings["Existing Page Managers"] = "Administradores de Páginas Existentes";
+$a->strings["Existing Page Delegates"] = "Delegados de Páginas Existentes";
+$a->strings["Potential Delegates"] = "Delegados Potenciais";
+$a->strings["Add"] = "Adicionar";
+$a->strings["No entries."] = "Sem entradas.";
 $a->strings["No contacts."] = "Nenhum contato.";
 $a->strings["View Contacts"] = "Ver contatos";
-$a->strings["People Search"] = "Pesquisar pessoas";
-$a->strings["No matches"] = "Nenhuma correspondência";
-$a->strings["Upload New Photos"] = "Enviar novas fotos";
-$a->strings["Contact information unavailable"] = "A informação de contato não está disponível";
-$a->strings["Album not found."] = "O álbum não foi encontrado.";
-$a->strings["Delete Album"] = "Excluir o álbum";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?";
-$a->strings["Delete Photo"] = "Excluir a foto";
-$a->strings["Do you really want to delete this photo?"] = "Você realmente deseja deletar essa foto?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s foi marcado em %2\$s por %3\$s";
-$a->strings["a photo"] = "uma foto";
-$a->strings["Image exceeds size limit of "] = "A imagem excede o tamanho máximo de ";
-$a->strings["Image file is empty."] = "O arquivo de imagem está vazio.";
-$a->strings["Unable to process image."] = "Não foi possível processar a imagem.";
-$a->strings["Image upload failed."] = "Não foi possível enviar a imagem.";
-$a->strings["No photos selected"] = "Não foi selecionada nenhuma foto";
-$a->strings["Access to this item is restricted."] = "O acesso a este item é restrito.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos.";
-$a->strings["Upload Photos"] = "Enviar fotos";
-$a->strings["New album name: "] = "Nome do novo álbum: ";
-$a->strings["or existing album name: "] = "ou o nome de um álbum já existente: ";
-$a->strings["Do not show a status post for this upload"] = "Não exiba uma publicação de status para este envio";
-$a->strings["Permissions"] = "Permissões";
-$a->strings["Private Photo"] = "Foto Privada";
-$a->strings["Public Photo"] = "Foto Pública";
-$a->strings["Edit Album"] = "Editar o álbum";
-$a->strings["Show Newest First"] = "Exibir as mais recentes primeiro";
-$a->strings["Show Oldest First"] = "Exibir as mais antigas primeiro";
-$a->strings["View Photo"] = "Ver a foto";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Permissão negada. O acesso a este item pode estar restrito.";
-$a->strings["Photo not available"] = "A foto não está disponível";
-$a->strings["View photo"] = "Ver a imagem";
-$a->strings["Edit photo"] = "Editar a foto";
-$a->strings["Use as profile photo"] = "Usar como uma foto de perfil";
-$a->strings["View Full Size"] = "Ver no tamanho real";
-$a->strings["Tags: "] = "Etiquetas: ";
-$a->strings["[Remove any tag]"] = "[Remover qualquer etiqueta]";
-$a->strings["Rotate CW (right)"] = "Rotacionar para direita";
-$a->strings["Rotate CCW (left)"] = "Rotacionar para esquerda";
-$a->strings["New album name"] = "Novo nome para o álbum";
-$a->strings["Caption"] = "Legenda";
-$a->strings["Add a Tag"] = "Adicionar uma etiqueta";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento";
-$a->strings["Private photo"] = "Foto privada";
-$a->strings["Public photo"] = "Foto pública";
-$a->strings["Share"] = "Compartilhar";
-$a->strings["View Album"] = "Ver álbum";
-$a->strings["Recent Photos"] = "Fotos recentes";
-$a->strings["File exceeds size limit of %d"] = "O arquivo excedeu o tamanho limite de %d";
-$a->strings["File upload failed."] = "Não foi possível enviar o arquivo.";
-$a->strings["No videos selected"] = "Nenhum vídeo selecionado";
-$a->strings["View Video"] = "Ver Vídeo";
-$a->strings["Recent Videos"] = "Vídeos Recentes";
-$a->strings["Upload New Videos"] = "Envie Novos Vídeos";
+$a->strings["Personal Notes"] = "Notas pessoais";
 $a->strings["Poke/Prod"] = "Cutucar/Incitar";
 $a->strings["poke, prod or do other things to somebody"] = "Cutuca, incita ou faz outras coisas com alguém";
 $a->strings["Recipient"] = "Destinatário";
 $a->strings["Choose what you wish to do to recipient"] = "Selecione o que você deseja fazer com o destinatário";
 $a->strings["Make this post private"] = "Fazer com que essa publicação se torne privada";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está seguindo %2\$s's %3\$s";
-$a->strings["Export account"] = "Exportar conta";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor.";
-$a->strings["Export all"] = "Exportar tudo";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)";
-$a->strings["Common Friends"] = "Amigos em Comum";
-$a->strings["No contacts in common."] = "Nenhum contato em comum.";
-$a->strings["Image exceeds size limit of %d"] = "A imagem excede o limite de tamanho de %d";
-$a->strings["Wall Photos"] = "Fotos do mural";
+$a->strings["Global Directory"] = "Diretório global";
+$a->strings["Find on this site"] = "Pesquisar neste site";
+$a->strings["Site Directory"] = "Diretório do site";
+$a->strings["Gender: "] = "Gênero: ";
+$a->strings["Gender:"] = "Gênero:";
+$a->strings["Status:"] = "Situação:";
+$a->strings["Homepage:"] = "Página web:";
+$a->strings["About:"] = "Sobre:";
+$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar ocultas).";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ H:i";
+$a->strings["Time Conversion"] = "Conversão de tempo";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos.";
+$a->strings["UTC time: %s"] = "Hora UTC: %s";
+$a->strings["Current timezone: %s"] = "Fuso horário atual: %s";
+$a->strings["Converted localtime: %s"] = "Horário local convertido: %s";
+$a->strings["Please select your timezone:"] = "Por favor, selecione seu fuso horário:";
+$a->strings["Post successful."] = "Publicado com sucesso.";
 $a->strings["Image uploaded but image cropping failed."] = "A imagem foi enviada, mas não foi possível cortá-la.";
 $a->strings["Image size reduction [%s] failed."] = "Não foi possível reduzir o tamanho da imagem [%s].";
 $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente";
@@ -1144,51 +1071,89 @@ $a->strings["Crop Image"] = "Cortar a imagem";
 $a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajuste o corte da imagem para a melhor visualização.";
 $a->strings["Done Editing"] = "Encerrar a edição";
 $a->strings["Image uploaded successfully."] = "A imagem foi enviada com sucesso.";
-$a->strings["Applications"] = "Aplicativos";
-$a->strings["No installed applications."] = "Nenhum aplicativo instalado";
-$a->strings["Nothing new here"] = "Nada de novo aqui";
-$a->strings["Clear notifications"] = "Descartar notificações";
+$a->strings["Friendica Communications Server - Setup"] = "Servidor de Comunicações Friendica - Configuração";
+$a->strings["Could not connect to database."] = "Não foi possível conectar ao banco de dados.";
+$a->strings["Could not create table."] = "Não foi possível criar tabela.";
+$a->strings["Your Friendica site database has been installed."] = "O banco de dados do seu site Friendica foi instalado.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\".";
+$a->strings["System check"] = "Checagem do sistema";
+$a->strings["Check again"] = "Checar novamente";
+$a->strings["Database connection"] = "Conexão de banco de dados";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar.";
+$a->strings["Database Server Name"] = "Nome do servidor de banco de dados";
+$a->strings["Database Login Name"] = "Nome do usuário do banco de dados";
+$a->strings["Database Login Password"] = "Senha do usuário do banco de dados";
+$a->strings["Database Name"] = "Nome do banco de dados";
+$a->strings["Site administrator email address"] = "Endereço de email do administrador do site";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web.";
+$a->strings["Please select a default timezone for your website"] = "Por favor, selecione o fuso horário padrão para o seu site";
+$a->strings["Site settings"] = "Configurações do site";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
+$a->strings["PHP executable path"] = "Caminho para o executável do PhP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação.";
+$a->strings["Command line PHP"] = "PHP em linha de comando";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)";
+$a->strings["Found PHP version: "] = "Encontrado PHP versão:";
+$a->strings["PHP cli binary"] = "Binário cli do PHP";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema.";
+$a->strings["This is required for message delivery to work."] = "Isto é necessário para o funcionamento do envio de mensagens.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Gerar chaves de encriptação";
+$a->strings["libCurl PHP module"] = "Módulo PHP libCurl";
+$a->strings["GD graphics PHP module"] = "Módulo PHP GD graphics";
+$a->strings["OpenSSL PHP module"] = "Módulo PHP OpenSSL";
+$a->strings["mysqli PHP module"] = "Módulo PHP mysqli";
+$a->strings["mb_string PHP module"] = "Módulo PHP mb_string ";
+$a->strings["Apache mod_rewrite module"] = "Módulo mod_rewrite do Apache";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Erro: o módulo libCURL do PHP é necessário, mas não está instalado.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Erro: o módulo openssl do PHP é necessário, mas não está instalado.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Erro: o módulo mysqli do PHP é necessário, mas não está instalado.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Erro: o módulo mb_string PHP é necessário, mas não está instalado.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php tem permissão de escrita";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório.";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 tem escrita permitida";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor.";
+$a->strings["Url rewrite is working"] = "A reescrita de URLs está funcionando";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web.";
+$a->strings["Errors encountered creating database tables."] = "Foram encontrados erros durante a criação das tabelas do banco de dados.";
+$a->strings["<h1>What next</h1>"] = "<h1>A seguir</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador.";
+$a->strings["Group created."] = "O grupo foi criado.";
+$a->strings["Could not create group."] = "Não foi possível criar o grupo.";
+$a->strings["Group not found."] = "O grupo não foi encontrado.";
+$a->strings["Group name changed."] = "O nome do grupo foi alterado.";
+$a->strings["Save Group"] = "Salvar o grupo";
+$a->strings["Create a group of contacts/friends."] = "Criar um grupo de contatos/amigos.";
+$a->strings["Group Name: "] = "Nome do grupo: ";
+$a->strings["Group removed."] = "O grupo foi removido.";
+$a->strings["Unable to remove group."] = "Não foi possível remover o grupo.";
+$a->strings["Group Editor"] = "Editor de grupo";
+$a->strings["Members"] = "Membros";
+$a->strings["No such group"] = "Este grupo não existe";
+$a->strings["Group is empty"] = "O grupo está vazio";
+$a->strings["Group: "] = "Grupo: ";
+$a->strings["View in context"] = "Ver no contexto";
+$a->strings["Account approved."] = "A conta foi aprovada.";
+$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado";
+$a->strings["Please login."] = "Por favor, autentique-se.";
 $a->strings["Profile Match"] = "Correspondência de perfil";
 $a->strings["No keywords to match. Please add keywords to your default profile."] = "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão.";
 $a->strings["is interested in:"] = "se interessa por:";
-$a->strings["Tag removed"] = "A etiqueta foi removida";
-$a->strings["Remove Item Tag"] = "Remover a etiqueta do item";
-$a->strings["Select a tag to remove: "] = "Selecione uma etiqueta para remover: ";
-$a->strings["Remove"] = "Remover";
-$a->strings["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios.";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Editar o evento";
-$a->strings["link to source"] = "exibir a origem";
-$a->strings["Create New Event"] = "Criar um novo evento";
-$a->strings["Previous"] = "Anterior";
-$a->strings["hour:minute"] = "hora:minuto";
-$a->strings["Event details"] = "Detalhes do evento";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "O formato é %s %s. O título e a data de início são obrigatórios.";
-$a->strings["Event Starts:"] = "Início do evento:";
-$a->strings["Required"] = "Obrigatório";
-$a->strings["Finish date/time is not known or not relevant"] = "A data/hora de término não é conhecida ou não é relevante";
-$a->strings["Event Finishes:"] = "Término do evento:";
-$a->strings["Adjust for viewer timezone"] = "Ajustar para o fuso horário do visualizador";
-$a->strings["Description:"] = "Descrição:";
-$a->strings["Title:"] = "Título:";
-$a->strings["Share this event"] = "Compartilhar este evento";
-$a->strings["No potential page delegates located."] = "Nenhuma página delegada potencial localizada.";
-$a->strings["Delegate Page Management"] = "Delegar Administração de Página";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente.";
-$a->strings["Existing Page Managers"] = "Administradores de Páginas Existentes";
-$a->strings["Existing Page Delegates"] = "Delegados de Páginas Existentes";
-$a->strings["Potential Delegates"] = "Delegados Potenciais";
-$a->strings["Add"] = "Adicionar";
-$a->strings["No entries."] = "Sem entradas.";
-$a->strings["Contacts who are not members of a group"] = "Contatos que não são membros de um grupo";
-$a->strings["Files"] = "Arquivos";
-$a->strings["System down for maintenance"] = "Sistema em manutenção";
-$a->strings["Remove My Account"] = "Remover minha conta";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la.";
-$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:";
-$a->strings["Friend suggestion sent."] = "A sugestão de amigo foi enviada";
-$a->strings["Suggest Friends"] = "Sugerir amigos";
-$a->strings["Suggest a friend for %s"] = "Sugerir um amigo para %s";
 $a->strings["Unable to locate original post."] = "Não foi possível localizar a publicação original.";
 $a->strings["Empty post discarded."] = "A publicação em branco foi descartada.";
 $a->strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva.";
@@ -1196,168 +1161,187 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia
 $a->strings["You may visit them online at %s"] = "Você pode visitá-lo em %s";
 $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens.";
 $a->strings["%s posted an update."] = "%s publicou uma atualização.";
-$a->strings["{0} wants to be your friend"] = "{0} deseja ser seu amigo";
-$a->strings["{0} sent you a message"] = "{0} lhe enviou uma mensagem";
-$a->strings["{0} requested registration"] = "{0} solicitou registro";
-$a->strings["{0} commented %s's post"] = "{0} comentou a publicação de %s";
-$a->strings["{0} liked %s's post"] = "{0} gostou da publicação de %s";
-$a->strings["{0} disliked %s's post"] = "{0} desgostou da publicação de %s";
-$a->strings["{0} is now friends with %s"] = "{0} agora é amigo de %s";
-$a->strings["{0} posted"] = "{0} publicou";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} etiquetou a publicação de %s com #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} mencionou você em uma publicação";
-$a->strings["OpenID protocol error. No ID returned."] = "Erro no protocolo OpenID. Não foi retornada nenhuma ID.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "A conta não foi encontrada e não são permitidos registros via OpenID nesse site.";
-$a->strings["Login failed."] = "Não foi possível autenticar.";
-$a->strings["Invalid request identifier."] = "Identificador de solicitação inválido";
-$a->strings["Discard"] = "Descartar";
-$a->strings["System"] = "Sistema";
-$a->strings["Network"] = "Rede";
-$a->strings["Introductions"] = "Apresentações";
-$a->strings["Show Ignored Requests"] = "Exibir solicitações ignoradas";
-$a->strings["Hide Ignored Requests"] = "Ocultar solicitações ignoradas";
-$a->strings["Notification type: "] = "Tipo de notificação:";
-$a->strings["Friend Suggestion"] = "Sugestão de amigo";
-$a->strings["suggested by %s"] = "sugerido por %s";
-$a->strings["Post a new friend activity"] = "Publicar a adição de amigo";
-$a->strings["if applicable"] = "se aplicável";
-$a->strings["Claims to be known to you: "] = "Alega ser conhecido por você: ";
-$a->strings["yes"] = "sim";
-$a->strings["no"] = "não";
-$a->strings["Approve as: "] = "Aprovar como:";
-$a->strings["Friend"] = "Amigo";
-$a->strings["Sharer"] = "Compartilhador";
-$a->strings["Fan/Admirer"] = "Fã/Admirador";
-$a->strings["Friend/Connect Request"] = "Solicitação de amizade/conexão";
-$a->strings["New Follower"] = "Novo acompanhante";
-$a->strings["No introductions."] = "Sem apresentações.";
-$a->strings["Notifications"] = "Notificações";
-$a->strings["%s liked %s's post"] = "%s gostou da publicação de %s";
-$a->strings["%s disliked %s's post"] = "%s desgostou da publicação de %s";
-$a->strings["%s is now friends with %s"] = "%s agora é amigo de %s";
-$a->strings["%s created a new post"] = "%s criou uma nova publicação";
-$a->strings["%s commented on %s's post"] = "%s comentou uma publicação de %s";
-$a->strings["No more network notifications."] = "Nenhuma notificação de rede.";
-$a->strings["Network Notifications"] = "Notificações de rede";
-$a->strings["No more personal notifications."] = "Nenhuma notificação pessoal.";
-$a->strings["Personal Notifications"] = "Notificações pessoais";
-$a->strings["No more home notifications."] = "Não existe mais nenhuma notificação pessoal.";
-$a->strings["Home Notifications"] = "Notificações pessoais";
-$a->strings["Total invitation limit exceeded."] = "Limite de convites totais excedido.";
-$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido.";
-$a->strings["Please join us on Friendica"] = "Por favor, junte-se à nós na Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite de convites ultrapassado. Favor contactar o administrador do sítio.";
-$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem.";
-$a->strings["%d message sent."] = array(
-       0 => "%d mensagem enviada.",
-       1 => "%d mensagens enviadas.",
-);
-$a->strings["You have no more invitations available"] = "Você não possui mais convites disponíveis";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros.";
-$a->strings["Send invitations"] = "Enviar convites.";
-$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Você preciso informar este código de convite: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com.";
-$a->strings["Manage Identities and/or Pages"] = "Gerenciar identidades e/ou páginas";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\"";
-$a->strings["Select an identity to manage: "] = "Selecione uma identidade para gerenciar: ";
-$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s";
-$a->strings["Friends of %s"] = "Amigos de %s";
-$a->strings["No friends to display."] = "Nenhum amigo para exibir.";
-$a->strings["Add New Contact"] = "Adicionar Contato Novo";
-$a->strings["Enter address or web location"] = "Forneça endereço ou localização web";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria";
-$a->strings["%d invitation available"] = array(
-       0 => "%d convite disponível",
-       1 => "%d convites disponíveis",
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s atualmente está %2\$s";
+$a->strings["Mood"] = "Humor";
+$a->strings["Set your current mood and tell your friends"] = "Defina o seu humor e conte aos seus amigos";
+$a->strings["Search Results For:"] = "Resultados de Busca Por:";
+$a->strings["add"] = "adicionar";
+$a->strings["Commented Order"] = "Ordem dos comentários";
+$a->strings["Sort by Comment Date"] = "Ordenar pela data do comentário";
+$a->strings["Posted Order"] = "Ordem das publicações";
+$a->strings["Sort by Post Date"] = "Ordenar pela data de publicação";
+$a->strings["Posts that mention or involve you"] = "Publicações que mencionem ou envolvam você";
+$a->strings["New"] = "Nova";
+$a->strings["Activity Stream - by date"] = "Fluxo de atividades - por data";
+$a->strings["Shared Links"] = "Links compartilhados";
+$a->strings["Interesting Links"] = "Links interessantes";
+$a->strings["Starred"] = "Destacada";
+$a->strings["Favourite Posts"] = "Publicações favoritas";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Aviso: Este grupo contém %s membro de uma rede insegura.",
+       1 => "Aviso: Este grupo contém %s membros de uma rede insegura.",
 );
-$a->strings["Find People"] = "Pesquisar por pessoas";
-$a->strings["Enter name or interest"] = "Fornecer nome ou interesse";
-$a->strings["Connect/Follow"] = "Conectar-se/acompanhar";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examplos: Robert Morgenstein, Fishing";
-$a->strings["Random Profile"] = "Perfil Randômico";
-$a->strings["Networks"] = "Redes";
-$a->strings["All Networks"] = "Todas as redes";
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública.";
+$a->strings["Contact: "] = "Contato: ";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública.";
+$a->strings["Invalid contact."] = "Contato inválido.";
+$a->strings["Contact settings applied."] = "As configurações do contato foram aplicadas.";
+$a->strings["Contact update failed."] = "Não foi possível atualizar o contato.";
+$a->strings["Repair Contact Settings"] = "Corrigir configurações do contato";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo.";
+$a->strings["Return to contact editor"] = "Voltar ao editor de contatos";
+$a->strings["Account Nickname"] = "Identificação da conta";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - sobrescreve Nome/Identificação";
+$a->strings["Account URL"] = "URL da conta";
+$a->strings["Friend Request URL"] = "URL da requisição de amizade";
+$a->strings["Friend Confirm URL"] = "URL da confirmação de amizade";
+$a->strings["Notification Endpoint URL"] = "URL do ponto final da notificação";
+$a->strings["Poll/Feed URL"] = "URL do captador/fonte de notícias";
+$a->strings["New photo from this URL"] = "Nova imagem desta URL";
+$a->strings["Remote Self"] = "Auto remoto";
+$a->strings["Mirror postings from this contact"] = "Espelhar publicações deste contato";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcar este contato como auto remoto fará com que o friendica republique novas entradas deste usuário.";
+$a->strings["Your posts and conversations"] = "Suas publicações e conversas";
+$a->strings["Your profile page"] = "Sua página de perfil";
+$a->strings["Your contacts"] = "Seus contatos";
+$a->strings["Your photos"] = "Suas fotos";
+$a->strings["Your events"] = "Seus eventos";
+$a->strings["Personal notes"] = "Suas anotações pessoais";
+$a->strings["Your personal photos"] = "Suas fotos pessoais";
+$a->strings["Community Pages"] = "Páginas da Comunidade";
+$a->strings["Community Profiles"] = "Profiles Comunitários";
+$a->strings["Last users"] = "Últimos usuários";
+$a->strings["Last likes"] = "Últimas gostadas";
+$a->strings["event"] = "evento";
+$a->strings["Last photos"] = "Últimas fotos";
+$a->strings["Find Friends"] = "Encontrar amigos";
+$a->strings["Local Directory"] = "Diretório Local";
+$a->strings["Similar Interests"] = "Interesses Parecidos";
+$a->strings["Invite Friends"] = "Convidar amigos";
+$a->strings["Earth Layers"] = "Camadas da Terra";
+$a->strings["Set zoomfactor for Earth Layers"] = "Configure o zoom para Camadas da Terra";
+$a->strings["Set longitude (X) for Earth Layers"] = "Configure longitude (X) para Camadas da Terra";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Configure latitude (Y) para Camadas da Terra";
+$a->strings["Help or @NewHere ?"] = "Ajuda ou @NewHere ?";
+$a->strings["Connect Services"] = "Conectar serviços";
+$a->strings["don't show"] = "não exibir";
+$a->strings["show"] = "exibir";
+$a->strings["Show/hide boxes at right-hand column:"] = "Mostre/esconda caixas na coluna à direita:";
+$a->strings["Theme settings"] = "Configurações do tema";
+$a->strings["Set font-size for posts and comments"] = "Escolha o tamanho da fonte para publicações e comentários";
+$a->strings["Set line-height for posts and comments"] = "Escolha comprimento da linha para publicações e comentários";
+$a->strings["Set resolution for middle column"] = "Escolha a resolução para a coluna do meio";
+$a->strings["Set color scheme"] = "Configure o esquema de cores";
+$a->strings["Set zoomfactor for Earth Layer"] = "Configure o zoom para Camadas da Terra";
+$a->strings["Set style"] = "escolha estilo";
+$a->strings["Set colour scheme"] = "Configure o esquema de cores";
+$a->strings["Alignment"] = "Alinhamento";
+$a->strings["Left"] = "Esquerda";
+$a->strings["Center"] = "Centro";
+$a->strings["Color scheme"] = "Esquema de cores";
+$a->strings["Posts font size"] = "Tamanho da fonte para publicações";
+$a->strings["Textareas font size"] = "Tamanho da fonte para campos texto";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)";
+$a->strings["Set theme width"] = "Configure a largura do tema";
+$a->strings["Delete this item?"] = "Excluir este item?";
+$a->strings["show fewer"] = "exibir menos";
+$a->strings["Update %s failed. See error logs."] = "Atualização %s falhou. Vide registro de erros (log).";
+$a->strings["Update Error at %s"] = "Erro de Atualização em %s";
+$a->strings["Create a New Account"] = "Criar uma nova conta";
+$a->strings["Logout"] = "Sair";
+$a->strings["Login"] = "Entrar";
+$a->strings["Nickname or Email address: "] = "Identificação ou endereço de e-mail: ";
+$a->strings["Password: "] = "Senha: ";
+$a->strings["Remember me"] = "Lembre-se de mim";
+$a->strings["Or login using OpenID: "] = "Ou login usando OpendID:";
+$a->strings["Forgot your password?"] = "Esqueceu a sua senha?";
+$a->strings["Website Terms of Service"] = "Termos de Serviço do Website";
+$a->strings["terms of service"] = "termos de serviço";
+$a->strings["Website Privacy Policy"] = "Política de Privacidade do Website";
+$a->strings["privacy policy"] = "política de privacidade";
+$a->strings["Requested account is not available."] = "Conta solicitada não disponível";
+$a->strings["Edit profile"] = "Editar perfil";
+$a->strings["Message"] = "Mensagem";
+$a->strings["Profiles"] = "Perfis";
+$a->strings["Manage/edit profiles"] = "Gerenciar/editar perfis";
+$a->strings["g A l F d"] = "G l d F";
+$a->strings["F d"] = "F d";
+$a->strings["[today]"] = "[hoje]";
+$a->strings["Birthday Reminders"] = "Lembretes de aniversário";
+$a->strings["Birthdays this week:"] = "Aniversários nesta semana:";
+$a->strings["[No description]"] = "[Sem descrição]";
+$a->strings["Event Reminders"] = "Lembretes de eventos";
+$a->strings["Events this week:"] = "Eventos esta semana:";
+$a->strings["Status"] = "Status";
+$a->strings["Status Messages and Posts"] = "Mensagem de Estado (status) e Publicações";
+$a->strings["Profile Details"] = "Detalhe do Perfil";
+$a->strings["Videos"] = "Vídeos";
+$a->strings["Events and Calendar"] = "Eventos e Agenda";
+$a->strings["Only You Can See This"] = "Somente Você Pode Ver Isso";
+$a->strings["General Features"] = "Funcionalidades Gerais";
+$a->strings["Multiple Profiles"] = "Perfís Múltiplos";
+$a->strings["Ability to create multiple profiles"] = "Capacidade de criar perfis múltiplos";
+$a->strings["Post Composition Features"] = "Funcionalidades de Composição de Publicações";
+$a->strings["Richtext Editor"] = "Editor Richtext";
+$a->strings["Enable richtext editor"] = "Habilite editor richtext";
+$a->strings["Post Preview"] = "Pré-visualização da Publicação";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Permite pré-visualizar publicações e comentários antes de publicá-los";
+$a->strings["Auto-mention Forums"] = "Auto-menção Fóruns";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL";
+$a->strings["Network Sidebar Widgets"] = "Widgets da Barra Lateral da Rede";
+$a->strings["Search by Date"] = "Buscar por Data";
+$a->strings["Ability to select posts by date ranges"] = "Capacidade de selecionar publicações por intervalos de data";
+$a->strings["Group Filter"] = "Filtrar Grupo";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Habilita widget para mostrar publicações da Rede somente de grupos selecionados";
+$a->strings["Network Filter"] = "Filtrar Rede";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Habilita widget para mostrar publicações da Rede de redes selecionadas";
+$a->strings["Save search terms for re-use"] = "Guarde as palavras-chaves para reuso";
+$a->strings["Network Tabs"] = "Abas da Rede";
+$a->strings["Network Personal Tab"] = "Aba Pessoal da Rede";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido";
+$a->strings["Network New Tab"] = "Aba Nova da Rede";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)";
+$a->strings["Network Shared Links Tab"] = "Aba de Links Compartilhados da Rede";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Habilite aba para mostrar somente publicações da Rede que contenham links";
+$a->strings["Post/Comment Tools"] = "Ferramentas de Publicação/Comentário";
+$a->strings["Multiple Deletion"] = "Deleção Multipla";
+$a->strings["Select and delete multiple posts/comments at once"] = "Selecione e delete múltiplas publicações/comentário imediatamente";
+$a->strings["Edit Sent Posts"] = "Editar Publicações Enviadas";
+$a->strings["Edit and correct posts and comments after sending"] = "Editar e corrigir publicações e comentários após envio";
+$a->strings["Tagging"] = "Etiquetagem";
+$a->strings["Ability to tag existing posts"] = "Capacidade de colocar etiquetas em publicações existentes";
+$a->strings["Post Categories"] = "Categorias de Publicações";
+$a->strings["Add categories to your posts"] = "Adicione Categorias ás Publicações";
 $a->strings["Saved Folders"] = "Pastas salvas";
-$a->strings["Everything"] = "Tudo";
-$a->strings["Categories"] = "Categorias";
-$a->strings["Click here to upgrade."] = "Clique aqui para atualização (upgrade).";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Essa ação excede o limite definido para o seu plano de assinatura.";
-$a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível em seu plano de assinatura.";
-$a->strings["view full size"] = "ver na tela inteira";
-$a->strings["Starts:"] = "Início:";
-$a->strings["Finishes:"] = "Término:";
-$a->strings["(no subject)"] = "(sem assunto)";
-$a->strings["noreply"] = "naoresponda";
-$a->strings["An invitation is required."] = "É necessário um convite.";
-$a->strings["Invitation could not be verified."] = "Não foi possível verificar o convite.";
-$a->strings["Invalid OpenID url"] = "A URL do OpenID é inválida";
+$a->strings["Ability to file posts under folders"] = "Capacidade de arquivar publicações em pastas";
+$a->strings["Dislike Posts"] = "Desgostar de publicações";
+$a->strings["Ability to dislike posts/comments"] = "Capacidade de desgostar de publicações/comentários";
+$a->strings["Star Posts"] = "Destacar publicações";
+$a->strings["Ability to mark special posts with a star indicator"] = "Capacidade de marcar publicações especiais com uma estrela indicadora";
+$a->strings["Logged out."] = "Saiu.";
 $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente.";
 $a->strings["The error message was:"] = "A mensagem de erro foi:";
-$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada.";
-$a->strings["Please use a shorter name."] = "Por favor, use um nome mais curto.";
-$a->strings["Name too short."] = "O nome é muito curto.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Isso não parece ser o seu nome completo (Nome Sobrenome).";
-$a->strings["Your email domain is not among those allowed on this site."] = "O domínio do seu e-mail não está entre os permitidos neste site.";
-$a->strings["Not a valid email address."] = "Não é um endereço de e-mail válido.";
-$a->strings["Cannot use that email."] = "Não é possível usar esse e-mail.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra.";
-$a->strings["Nickname is already registered. Please choose another."] = "Esta identificação já foi registrada. Por favor, escolha outra.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRO GRAVE: Não foi possível gerar as chaves de segurança.";
-$a->strings["An error occurred during registration. Please try again."] = "Ocorreu um erro durante o registro. Por favor, tente novamente.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente.";
-$a->strings["Friends"] = "Amigos";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s cutucou %2\$s";
-$a->strings["poked"] = "cutucado";
-$a->strings["post/item"] = "postagem/item";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s marcou %3\$s de %2\$s como favorito";
-$a->strings["remove"] = "remover";
-$a->strings["Delete Selected Items"] = "Excluir os itens selecionados";
-$a->strings["Follow Thread"] = "Seguir o Thread";
-$a->strings["View Status"] = "Ver Status";
-$a->strings["View Profile"] = "Ver Perfil";
-$a->strings["View Photos"] = "Ver Fotos";
-$a->strings["Network Posts"] = "Publicações da Rede";
-$a->strings["Edit Contact"] = "Editar Contato";
-$a->strings["Send PM"] = "Enviar MP";
-$a->strings["Poke"] = "Cutucar";
-$a->strings["%s likes this."] = "%s gostou disso.";
-$a->strings["%s doesn't like this."] = "%s não gostou disso.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d pessoas</span> gostaram disso";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d pessoas</span> não gostaram disso";
-$a->strings["and"] = "e";
-$a->strings[", and %d other people"] = ", e mais %d outras pessoas";
-$a->strings["%s like this."] = "%s gostaram disso.";
-$a->strings["%s don't like this."] = "%s não gostaram disso.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Visível para <strong>todos</strong>";
-$a->strings["Please enter a video link/URL:"] = "Favor fornecer um link/URL de vídeo";
-$a->strings["Please enter an audio link/URL:"] = "Favor fornecer um link/URL de áudio";
-$a->strings["Tag term:"] = "Etiqueta:";
-$a->strings["Where are you right now?"] = "Onde você está agora?";
-$a->strings["Delete item(s)?"] = "Deletar item(s)?";
-$a->strings["Post to Email"] = "Enviar por e-mail";
-$a->strings["permissions"] = "permissões";
-$a->strings["Post to Groups"] = "Postar em Grupos";
-$a->strings["Post to Contacts"] = "Publique para Contatos";
-$a->strings["Private post"] = "Publicação privada";
-$a->strings["Logged out."] = "Saiu.";
-$a->strings["Error decoding account file"] = "Erro ao decodificar arquivo de conta";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?";
-$a->strings["Error! Cannot check nickname"] = "Erro! Não consigo conferir o apelido (nickname)";
-$a->strings["User '%s' already exists on this server!"] = "User '%s' já existe nesse servidor!";
-$a->strings["User creation error"] = "Erro na criação do usuário";
-$a->strings["User profile creation error"] = "Erro na criação do perfil do Usuário";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d contato não foi importado",
-       1 => "%d contatos não foram importados",
-);
-$a->strings["Done. You can now login with your username and password"] = "Feito. Você agora pode entrar com seu nome de usuário e senha";
+$a->strings["Starts:"] = "Início:";
+$a->strings["Finishes:"] = "Término:";
+$a->strings["j F, Y"] = "j de F, Y";
+$a->strings["j F"] = "j de F";
+$a->strings["Birthday:"] = "Aniversário:";
+$a->strings["Age:"] = "Idade:";
+$a->strings["for %1\$d %2\$s"] = "para %1\$d %2\$s";
+$a->strings["Tags:"] = "Etiquetas:";
+$a->strings["Religion:"] = "Religião:";
+$a->strings["Hobbies/Interests:"] = "Passatempos/Interesses:";
+$a->strings["Contact information and Social Networks:"] = "Informações de contato e redes sociais:";
+$a->strings["Musical interests:"] = "Preferências musicais:";
+$a->strings["Books, literature:"] = "Livros, literatura:";
+$a->strings["Television:"] = "Televisão:";
+$a->strings["Film/dance/culture/entertainment:"] = "Filmes/dança/cultura/entretenimento:";
+$a->strings["Love/Romance:"] = "Amor/romance:";
+$a->strings["Work/employment:"] = "Trabalho/emprego:";
+$a->strings["School/education:"] = "Escola/educação:";
+$a->strings["[no subject]"] = "[sem assunto]";
+$a->strings[" on Last.fm"] = "na Last.fm";
 $a->strings["newer"] = "mais recente";
 $a->strings["older"] = "antigo";
 $a->strings["prev"] = "anterior";
@@ -1370,6 +1354,7 @@ $a->strings["%d Contact"] = array(
        1 => "%d contatos",
 );
 $a->strings["poke"] = "cutucar";
+$a->strings["poked"] = "cutucado";
 $a->strings["ping"] = "ping";
 $a->strings["pinged"] = "pingado";
 $a->strings["prod"] = "incentivar";
@@ -1421,200 +1406,37 @@ $a->strings["November"] = "Novembro";
 $a->strings["December"] = "Dezembro";
 $a->strings["bytes"] = "bytes";
 $a->strings["Click to open/close"] = "Clique para abrir/fechar";
+$a->strings["default"] = "padrão";
 $a->strings["Select an alternate language"] = "Selecione um idioma alternativo";
 $a->strings["activity"] = "atividade";
-$a->strings["post"] = "publicação";
-$a->strings["Item filed"] = "O item foi arquivado";
-$a->strings["Friendica Notification"] = "Notificação Friendica";
-$a->strings["Thank You,"] = "Obrigado,";
-$a->strings["%s Administrator"] = "%s Administrador";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nova mensagem recebida em %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lhe enviou uma mensagem privativa em %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s lhe enviou %2\$s.";
-$a->strings["a private message"] = "uma mensagem privada";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Favor visitar %s para ver e/ou responder às suas mensagens privadas.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentou uma [url=%2\$s] %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentou na %4\$s de [url=%2\$s]%3\$s [/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentou [url=%2\$s]sua %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Comentário na conversa #%1\$d por %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s comentou um item/conversa que você está seguindo.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Favor visitar %s para ver e/ou responder à conversa.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s publicou no mural do seu perfil";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicou no mural do seu perfil em %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicou para [url=%2\$s]seu mural[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s etiquetou você";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s etiquetou você em %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]etiquetou você[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s cutucou você";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s cutucou você em %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]cutucou você[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s etiquetou sua publicação";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s etiquetou sua publicação em %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s etiquetou [url=%2\$s]sua publicação[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Você recebeu uma apresentação";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Você recebeu uma apresentação de '%1\$s' em %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Você recebeu [url=%1\$s]uma apresentação[/url] de %2\$s.";
-$a->strings["You may visit their profile at %s"] = "Você pode visitar o perfil deles em %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Favor visitar %s para aprovar ou rejeitar a apresentação.";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Você recebeu uma sugestão de amigo";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Você recebeu uma sugestão de amigo de '%1\$s' em %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Você recebeu [url=%1\$s]uma sugestão de amigo[/url] de %2\$s em %3\$s";
-$a->strings["Name:"] = "Nome:";
-$a->strings["Photo:"] = "Foto:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Favor visitar %s para aprovar ou rejeitar a sugestão.";
-$a->strings[" on Last.fm"] = "na Last.fm";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente.";
-$a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos";
-$a->strings["Everybody"] = "Todos";
-$a->strings["edit"] = "editar";
-$a->strings["Edit group"] = "Editar grupo";
-$a->strings["Create a new group"] = "Criar um novo grupo";
-$a->strings["Contacts not in any group"] = "Contatos não estão dentro de nenhum grupo";
-$a->strings["Connect URL missing."] = "URL de conexão faltando.";
-$a->strings["This site is not configured to allow communications with other networks."] = "Este site não está configurado para permitir comunicações com outras redes.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível.";
-$a->strings["The profile address specified does not provide adequate information."] = "O endereço de perfil especificado não fornece informação adequada.";
-$a->strings["An author or name was not found."] = "Não foi encontrado nenhum autor ou nome.";
-$a->strings["No browser URL could be matched to this address."] = "Não foi possível encontrar nenhuma URL de navegação neste endereço.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Não foi possível  casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email.";
-$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: antes do endereço para forçar a checagem de email.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você.";
-$a->strings["Unable to retrieve contact information."] = "Não foi possível recuperar a informação do contato.";
-$a->strings["following"] = "acompanhando";
-$a->strings["[no subject]"] = "[sem assunto]";
-$a->strings["End this session"] = "Terminar esta sessão";
-$a->strings["Sign in"] = "Entrar";
-$a->strings["Home Page"] = "Página pessoal";
-$a->strings["Create an account"] = "Criar uma conta";
-$a->strings["Help and documentation"] = "Ajuda e documentação";
-$a->strings["Apps"] = "Aplicativos";
-$a->strings["Addon applications, utilities, games"] = "Complementos, utilitários, jogos";
-$a->strings["Search site content"] = "Pesquisar conteúdo no site";
-$a->strings["Conversations on this site"] = "Conversas neste site";
-$a->strings["Directory"] = "Diretório";
-$a->strings["People directory"] = "Diretório de pessoas";
-$a->strings["Conversations from your friends"] = "Conversas dos seus amigos";
-$a->strings["Network Reset"] = "Reiniciar Rede";
-$a->strings["Load Network page with no filters"] = "Carregar página Rede sem filtros";
-$a->strings["Friend Requests"] = "Requisições de Amizade";
-$a->strings["See all notifications"] = "Ver todas notificações";
-$a->strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas";
-$a->strings["Private mail"] = "Mensagem privada";
-$a->strings["Inbox"] = "Recebidas";
-$a->strings["Outbox"] = "Enviadas";
-$a->strings["Manage"] = "Gerenciar";
-$a->strings["Manage other pages"] = "Gerenciar outras páginas";
-$a->strings["Delegations"] = "Delegações";
-$a->strings["Manage/Edit Profiles"] = "Administrar/Editar Perfis";
-$a->strings["Manage/edit friends and contacts"] = "Gerenciar/editar amigos e contatos";
-$a->strings["Site setup and configuration"] = "Configurações do site";
-$a->strings["Navigation"] = "Navegação";
-$a->strings["Site map"] = "Mapa do Site";
-$a->strings["j F, Y"] = "j de F, Y";
-$a->strings["j F"] = "j de F";
-$a->strings["Birthday:"] = "Aniversário:";
-$a->strings["Age:"] = "Idade:";
-$a->strings["for %1\$d %2\$s"] = "para %1\$d %2\$s";
-$a->strings["Tags:"] = "Etiquetas:";
-$a->strings["Religion:"] = "Religião:";
-$a->strings["Hobbies/Interests:"] = "Passatempos/Interesses:";
-$a->strings["Contact information and Social Networks:"] = "Informações de contato e redes sociais:";
-$a->strings["Musical interests:"] = "Preferências musicais:";
-$a->strings["Books, literature:"] = "Livros, literatura:";
-$a->strings["Television:"] = "Televisão:";
-$a->strings["Film/dance/culture/entertainment:"] = "Filmes/dança/cultura/entretenimento:";
-$a->strings["Love/Romance:"] = "Amor/romance:";
-$a->strings["Work/employment:"] = "Trabalho/emprego:";
-$a->strings["School/education:"] = "Escola/educação:";
-$a->strings["Image/photo"] = "Imagem/foto";
-$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a>escreveu o seguinte<a href=\"%s\" target=\"external-link\">publicação</a>";
-$a->strings["$1 wrote:"] = "$1 escreveu:";
-$a->strings["Encrypted content"] = "Conteúdo criptografado";
-$a->strings["Unknown | Not categorised"] = "Desconhecido | Não categorizado";
-$a->strings["Block immediately"] = "Bloquear imediatamente";
-$a->strings["Shady, spammer, self-marketer"] = "Dissimulado, spammer, propagandista";
-$a->strings["Known to me, but no opinion"] = "Eu conheço, mas não possuo nenhuma opinião acerca";
-$a->strings["OK, probably harmless"] = "Ok, provavelmente inofensivo";
-$a->strings["Reputable, has my trust"] = "Boa reputação, tem minha confiança";
-$a->strings["Weekly"] = "Semanalmente";
-$a->strings["Monthly"] = "Mensalmente";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Miscellaneous"] = "Miscelânea";
-$a->strings["year"] = "ano";
-$a->strings["month"] = "mês";
-$a->strings["day"] = "dia";
-$a->strings["never"] = "nunca";
-$a->strings["less than a second ago"] = "menos de um segundo atrás";
-$a->strings["years"] = "anos";
-$a->strings["months"] = "meses";
-$a->strings["week"] = "semana";
-$a->strings["weeks"] = "semanas";
-$a->strings["days"] = "dias";
-$a->strings["hour"] = "hora";
-$a->strings["hours"] = "horas";
-$a->strings["minute"] = "minuto";
-$a->strings["minutes"] = "minutos";
-$a->strings["second"] = "segundo";
-$a->strings["seconds"] = "segundos";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s atrás";
+$a->strings["post"] = "publicação";
+$a->strings["Item filed"] = "O item foi arquivado";
+$a->strings["User not found."] = "Usuário não encontrado.";
+$a->strings["There is no status with this id."] = "Não existe status com esse id.";
+$a->strings["There is no conversation with this id."] = "Não existe conversas com esse id.";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'";
 $a->strings["%s's birthday"] = "aniversários de %s's";
 $a->strings["Happy Birthday %s"] = "Feliz Aniversário %s";
-$a->strings["General Features"] = "Funcionalidades Gerais";
-$a->strings["Multiple Profiles"] = "Perfís Múltiplos";
-$a->strings["Ability to create multiple profiles"] = "Capacidade de criar perfis múltiplos";
-$a->strings["Post Composition Features"] = "Funcionalidades de Composição de Publicações";
-$a->strings["Richtext Editor"] = "Editor Richtext";
-$a->strings["Enable richtext editor"] = "Habilite editor richtext";
-$a->strings["Post Preview"] = "Pré-visualização da Publicação";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Permite pré-visualizar publicações e comentários antes de publicá-los";
-$a->strings["Network Sidebar Widgets"] = "Widgets da Barra Lateral da Rede";
-$a->strings["Search by Date"] = "Buscar por Data";
-$a->strings["Ability to select posts by date ranges"] = "Capacidade de selecionar publicações por intervalos de data";
-$a->strings["Group Filter"] = "Filtrar Grupo";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Habilita widget para mostrar publicações da Rede somente de grupos selecionados";
-$a->strings["Network Filter"] = "Filtrar Rede";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Habilita widget para mostrar publicações da Rede de redes selecionadas";
-$a->strings["Save search terms for re-use"] = "Guarde as palavras-chaves para reuso";
-$a->strings["Network Tabs"] = "Abas da Rede";
-$a->strings["Network Personal Tab"] = "Aba Pessoal da Rede";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido";
-$a->strings["Network New Tab"] = "Aba Nova da Rede";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)";
-$a->strings["Network Shared Links Tab"] = "Aba de Links Compartilhados da Rede";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Habilite aba para mostrar somente publicações da Rede que contenham links";
-$a->strings["Post/Comment Tools"] = "Ferramentas de Publicação/Comentário";
-$a->strings["Multiple Deletion"] = "Deleção Multipla";
-$a->strings["Select and delete multiple posts/comments at once"] = "Selecione e delete múltiplas publicações/comentário imediatamente";
-$a->strings["Edit Sent Posts"] = "Editar Publicações Enviadas";
-$a->strings["Edit and correct posts and comments after sending"] = "Editar e corrigir publicações e comentários após envio";
-$a->strings["Tagging"] = "Etiquetagem";
-$a->strings["Ability to tag existing posts"] = "Capacidade de colocar etiquetas em publicações existentes";
-$a->strings["Post Categories"] = "Categorias de Publicações";
-$a->strings["Add categories to your posts"] = "Adicione Categorias ás Publicações";
-$a->strings["Ability to file posts under folders"] = "Capacidade de arquivar publicações em pastas";
-$a->strings["Dislike Posts"] = "Desgostar de publicações";
-$a->strings["Ability to dislike posts/comments"] = "Capacidade de desgostar de publicações/comentários";
-$a->strings["Star Posts"] = "Destacar publicações";
-$a->strings["Ability to mark special posts with a star indicator"] = "Capacidade de marcar publicações especiais com uma estrela indicadora";
-$a->strings["Sharing notification from Diaspora network"] = "Notificação de compartilhamento da rede Diaspora";
-$a->strings["Attachments:"] = "Anexos:";
-$a->strings["Visible to everybody"] = "Visível para todos";
 $a->strings["A new person is sharing with you at "] = "Uma nova pessoa está compartilhando com você em ";
 $a->strings["You have a new follower at "] = "Você tem um novo acompanhante em ";
 $a->strings["Do you really want to delete this item?"] = "Você realmente deseja deletar esse item?";
 $a->strings["Archives"] = "Arquivos";
-$a->strings["Embedded content"] = "Conteúdo incorporado";
-$a->strings["Embedding disabled"] = "A incorporação está desabilitada";
+$a->strings["(no subject)"] = "(sem assunto)";
+$a->strings["noreply"] = "naoresponda";
+$a->strings["Sharing notification from Diaspora network"] = "Notificação de compartilhamento da rede Diaspora";
+$a->strings["Attachments:"] = "Anexos:";
+$a->strings["Connect URL missing."] = "URL de conexão faltando.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Este site não está configurado para permitir comunicações com outras redes.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível.";
+$a->strings["The profile address specified does not provide adequate information."] = "O endereço de perfil especificado não fornece informação adequada.";
+$a->strings["An author or name was not found."] = "Não foi encontrado nenhum autor ou nome.";
+$a->strings["No browser URL could be matched to this address."] = "Não foi possível encontrar nenhuma URL de navegação neste endereço.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Não foi possível  casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email.";
+$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: antes do endereço para forçar a checagem de email.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você.";
+$a->strings["Unable to retrieve contact information."] = "Não foi possível recuperar a informação do contato.";
+$a->strings["following"] = "acompanhando";
 $a->strings["Welcome "] = "Bem-vindo(a) ";
 $a->strings["Please upload a profile photo."] = "Por favor, envie uma foto para o perfil.";
 $a->strings["Welcome back "] = "Bem-vindo(a) de volta ";
@@ -1655,6 +1477,7 @@ $a->strings["Infatuated"] = "Apaixonado";
 $a->strings["Dating"] = "Saindo com alguém";
 $a->strings["Unfaithful"] = "Infiel";
 $a->strings["Sex Addict"] = "Viciado(a) em sexo";
+$a->strings["Friends"] = "Amigos";
 $a->strings["Friends/Benefits"] = "Amigos/Benefícios";
 $a->strings["Casual"] = "Casual";
 $a->strings["Engaged"] = "Envolvido(a)";
@@ -1676,6 +1499,208 @@ $a->strings["Uncertain"] = "Incerto(a)";
 $a->strings["It's complicated"] = "É complicado";
 $a->strings["Don't care"] = "Não importa";
 $a->strings["Ask me"] = "Pergunte-me";
+$a->strings["Error decoding account file"] = "Erro ao decodificar arquivo de conta";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?";
+$a->strings["Error! Cannot check nickname"] = "Erro! Não consigo conferir o apelido (nickname)";
+$a->strings["User '%s' already exists on this server!"] = "User '%s' já existe nesse servidor!";
+$a->strings["User creation error"] = "Erro na criação do usuário";
+$a->strings["User profile creation error"] = "Erro na criação do perfil do Usuário";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d contato não foi importado",
+       1 => "%d contatos não foram importados",
+);
+$a->strings["Done. You can now login with your username and password"] = "Feito. Você agora pode entrar com seu nome de usuário e senha";
+$a->strings["Click here to upgrade."] = "Clique aqui para atualização (upgrade).";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Essa ação excede o limite definido para o seu plano de assinatura.";
+$a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível em seu plano de assinatura.";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s cutucou %2\$s";
+$a->strings["post/item"] = "postagem/item";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s marcou %3\$s de %2\$s como favorito";
+$a->strings["remove"] = "remover";
+$a->strings["Delete Selected Items"] = "Excluir os itens selecionados";
+$a->strings["Follow Thread"] = "Seguir o Thread";
+$a->strings["View Status"] = "Ver Status";
+$a->strings["View Profile"] = "Ver Perfil";
+$a->strings["View Photos"] = "Ver Fotos";
+$a->strings["Network Posts"] = "Publicações da Rede";
+$a->strings["Edit Contact"] = "Editar Contato";
+$a->strings["Send PM"] = "Enviar MP";
+$a->strings["Poke"] = "Cutucar";
+$a->strings["%s likes this."] = "%s gostou disso.";
+$a->strings["%s doesn't like this."] = "%s não gostou disso.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d pessoas</span> gostaram disso";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d pessoas</span> não gostaram disso";
+$a->strings["and"] = "e";
+$a->strings[", and %d other people"] = ", e mais %d outras pessoas";
+$a->strings["%s like this."] = "%s gostaram disso.";
+$a->strings["%s don't like this."] = "%s não gostaram disso.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Visível para <strong>todos</strong>";
+$a->strings["Please enter a video link/URL:"] = "Favor fornecer um link/URL de vídeo";
+$a->strings["Please enter an audio link/URL:"] = "Favor fornecer um link/URL de áudio";
+$a->strings["Tag term:"] = "Etiqueta:";
+$a->strings["Where are you right now?"] = "Onde você está agora?";
+$a->strings["Delete item(s)?"] = "Deletar item(s)?";
+$a->strings["Post to Email"] = "Enviar por e-mail";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectores desabilitados, desde \"%s\" está habilitado.";
+$a->strings["permissions"] = "permissões";
+$a->strings["Post to Groups"] = "Postar em Grupos";
+$a->strings["Post to Contacts"] = "Publique para Contatos";
+$a->strings["Private post"] = "Publicação privada";
+$a->strings["Add New Contact"] = "Adicionar Contato Novo";
+$a->strings["Enter address or web location"] = "Forneça endereço ou localização web";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria";
+$a->strings["%d invitation available"] = array(
+       0 => "%d convite disponível",
+       1 => "%d convites disponíveis",
+);
+$a->strings["Find People"] = "Pesquisar por pessoas";
+$a->strings["Enter name or interest"] = "Fornecer nome ou interesse";
+$a->strings["Connect/Follow"] = "Conectar-se/acompanhar";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examplos: Robert Morgenstein, Fishing";
+$a->strings["Random Profile"] = "Perfil Randômico";
+$a->strings["Networks"] = "Redes";
+$a->strings["All Networks"] = "Todas as redes";
+$a->strings["Everything"] = "Tudo";
+$a->strings["Categories"] = "Categorias";
+$a->strings["End this session"] = "Terminar esta sessão";
+$a->strings["Sign in"] = "Entrar";
+$a->strings["Home Page"] = "Página pessoal";
+$a->strings["Create an account"] = "Criar uma conta";
+$a->strings["Help and documentation"] = "Ajuda e documentação";
+$a->strings["Apps"] = "Aplicativos";
+$a->strings["Addon applications, utilities, games"] = "Complementos, utilitários, jogos";
+$a->strings["Search site content"] = "Pesquisar conteúdo no site";
+$a->strings["Conversations on this site"] = "Conversas neste site";
+$a->strings["Directory"] = "Diretório";
+$a->strings["People directory"] = "Diretório de pessoas";
+$a->strings["Information"] = "Informação";
+$a->strings["Information about this friendica instance"] = "Informação sobre esta instância do friendica";
+$a->strings["Conversations from your friends"] = "Conversas dos seus amigos";
+$a->strings["Network Reset"] = "Reiniciar Rede";
+$a->strings["Load Network page with no filters"] = "Carregar página Rede sem filtros";
+$a->strings["Friend Requests"] = "Requisições de Amizade";
+$a->strings["See all notifications"] = "Ver todas notificações";
+$a->strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas";
+$a->strings["Private mail"] = "Mensagem privada";
+$a->strings["Inbox"] = "Recebidas";
+$a->strings["Outbox"] = "Enviadas";
+$a->strings["Manage"] = "Gerenciar";
+$a->strings["Manage other pages"] = "Gerenciar outras páginas";
+$a->strings["Account settings"] = "Configurações da conta";
+$a->strings["Manage/Edit Profiles"] = "Administrar/Editar Perfis";
+$a->strings["Manage/edit friends and contacts"] = "Gerenciar/editar amigos e contatos";
+$a->strings["Site setup and configuration"] = "Configurações do site";
+$a->strings["Navigation"] = "Navegação";
+$a->strings["Site map"] = "Mapa do Site";
+$a->strings["Unknown | Not categorised"] = "Desconhecido | Não categorizado";
+$a->strings["Block immediately"] = "Bloquear imediatamente";
+$a->strings["Shady, spammer, self-marketer"] = "Dissimulado, spammer, propagandista";
+$a->strings["Known to me, but no opinion"] = "Eu conheço, mas não possuo nenhuma opinião acerca";
+$a->strings["OK, probably harmless"] = "Ok, provavelmente inofensivo";
+$a->strings["Reputable, has my trust"] = "Boa reputação, tem minha confiança";
+$a->strings["Weekly"] = "Semanalmente";
+$a->strings["Monthly"] = "Mensalmente";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Conector do Diáspora";
+$a->strings["Statusnet"] = "Statusnet";
+$a->strings["Friendica Notification"] = "Notificação Friendica";
+$a->strings["Thank You,"] = "Obrigado,";
+$a->strings["%s Administrator"] = "%s Administrador";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nova mensagem recebida em %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lhe enviou uma mensagem privativa em %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s lhe enviou %2\$s.";
+$a->strings["a private message"] = "uma mensagem privada";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Favor visitar %s para ver e/ou responder às suas mensagens privadas.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentou uma [url=%2\$s] %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentou na %4\$s de [url=%2\$s]%3\$s [/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentou [url=%2\$s]sua %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Comentário na conversa #%1\$d por %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s comentou um item/conversa que você está seguindo.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Favor visitar %s para ver e/ou responder à conversa.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s publicou no mural do seu perfil";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicou no mural do seu perfil em %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicou para [url=%2\$s]seu mural[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s etiquetou você";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s etiquetou você em %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]etiquetou você[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s compartilhado uma nova publicação";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s compartilhou uma nova publicação em %2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]compartilhou uma publicação[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s cutucou você";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s cutucou você em %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]cutucou você[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s etiquetou sua publicação";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s etiquetou sua publicação em %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s etiquetou [url=%2\$s]sua publicação[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Você recebeu uma apresentação";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Você recebeu uma apresentação de '%1\$s' em %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Você recebeu [url=%1\$s]uma apresentação[/url] de %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Você pode visitar o perfil deles em %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Favor visitar %s para aprovar ou rejeitar a apresentação.";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Você recebeu uma sugestão de amigo";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Você recebeu uma sugestão de amigo de '%1\$s' em %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Você recebeu [url=%1\$s]uma sugestão de amigo[/url] de %2\$s em %3\$s";
+$a->strings["Name:"] = "Nome:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Favor visitar %s para aprovar ou rejeitar a sugestão.";
+$a->strings["An invitation is required."] = "É necessário um convite.";
+$a->strings["Invitation could not be verified."] = "Não foi possível verificar o convite.";
+$a->strings["Invalid OpenID url"] = "A URL do OpenID é inválida";
+$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada.";
+$a->strings["Please use a shorter name."] = "Por favor, use um nome mais curto.";
+$a->strings["Name too short."] = "O nome é muito curto.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Isso não parece ser o seu nome completo (Nome Sobrenome).";
+$a->strings["Your email domain is not among those allowed on this site."] = "O domínio do seu e-mail não está entre os permitidos neste site.";
+$a->strings["Not a valid email address."] = "Não é um endereço de e-mail válido.";
+$a->strings["Cannot use that email."] = "Não é possível usar esse e-mail.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra.";
+$a->strings["Nickname is already registered. Please choose another."] = "Esta identificação já foi registrada. Por favor, escolha outra.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRO GRAVE: Não foi possível gerar as chaves de segurança.";
+$a->strings["An error occurred during registration. Please try again."] = "Ocorreu um erro durante o registro. Por favor, tente novamente.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente.";
+$a->strings["Visible to everybody"] = "Visível para todos";
+$a->strings["Image/photo"] = "Imagem/foto";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> escreveu a seguinte <a href=\"%s\" target=\"_blank\">publicação</a>";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
+$a->strings["$1 wrote:"] = "$1 escreveu:";
+$a->strings["Encrypted content"] = "Conteúdo criptografado";
+$a->strings["Embedded content"] = "Conteúdo incorporado";
+$a->strings["Embedding disabled"] = "A incorporação está desabilitada";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente.";
+$a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos";
+$a->strings["Everybody"] = "Todos";
+$a->strings["edit"] = "editar";
+$a->strings["Edit group"] = "Editar grupo";
+$a->strings["Create a new group"] = "Criar um novo grupo";
+$a->strings["Contacts not in any group"] = "Contatos não estão dentro de nenhum grupo";
 $a->strings["stopped following"] = "parou de acompanhar";
 $a->strings["Drop Contact"] = "Excluir o contato";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'";
+$a->strings["Miscellaneous"] = "Miscelânea";
+$a->strings["year"] = "ano";
+$a->strings["month"] = "mês";
+$a->strings["day"] = "dia";
+$a->strings["never"] = "nunca";
+$a->strings["less than a second ago"] = "menos de um segundo atrás";
+$a->strings["years"] = "anos";
+$a->strings["months"] = "meses";
+$a->strings["week"] = "semana";
+$a->strings["weeks"] = "semanas";
+$a->strings["days"] = "dias";
+$a->strings["hour"] = "hora";
+$a->strings["hours"] = "horas";
+$a->strings["minute"] = "minuto";
+$a->strings["minutes"] = "minutos";
+$a->strings["second"] = "segundo";
+$a->strings["seconds"] = "segundos";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s atrás";
+$a->strings["view full size"] = "ver na tela inteira";
diff --git a/view/ro/messages.po b/view/ro/messages.po
new file mode 100644 (file)
index 0000000..d00b9e8
--- /dev/null
@@ -0,0 +1,7362 @@
+# FRIENDICA Distributed Social Network
+# Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project
+# This file is distributed under the same license as the Friendica package.
+# 
+# Translators:
+# ddeacon <dumitrudeaconu@yahoo.com>, 2013
+# ddeacon <dumitrudeaconu@yahoo.com>, 2013
+msgid ""
+msgstr ""
+"Project-Id-Version: friendica\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2014-05-16 11:05+0200\n"
+"PO-Revision-Date: 2014-05-28 13:49+0000\n"
+"Last-Translator: ArianServ <arianserv@gmail.com>\n"
+"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/friendica/language/ro_RO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: ro_RO\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
+
+#: ../../object/Item.php:92
+msgid "This entry was edited"
+msgstr "Această intrare a fost editată"
+
+#: ../../object/Item.php:113 ../../mod/photos.php:1355
+#: ../../mod/content.php:619
+msgid "Private Message"
+msgstr " Mesaj Privat"
+
+#: ../../object/Item.php:117 ../../mod/editpost.php:109
+#: ../../mod/settings.php:671 ../../mod/content.php:727
+msgid "Edit"
+msgstr "Edit"
+
+#: ../../object/Item.php:126 ../../mod/photos.php:1649
+#: ../../mod/content.php:437 ../../mod/content.php:739
+#: ../../include/conversation.php:612
+msgid "Select"
+msgstr "Select"
+
+#: ../../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 "Şterge"
+
+#: ../../object/Item.php:130 ../../mod/content.php:762
+msgid "save to folder"
+msgstr "salvează în directorul"
+
+#: ../../object/Item.php:192 ../../mod/content.php:752
+msgid "add star"
+msgstr "add stea"
+
+#: ../../object/Item.php:193 ../../mod/content.php:753
+msgid "remove star"
+msgstr "înlătură stea"
+
+#: ../../object/Item.php:194 ../../mod/content.php:754
+msgid "toggle star status"
+msgstr "comută status steluță"
+
+#: ../../object/Item.php:197 ../../mod/content.php:757
+msgid "starred"
+msgstr "cu steluță"
+
+#: ../../object/Item.php:202 ../../mod/content.php:758
+msgid "add tag"
+msgstr "add tag"
+
+#: ../../object/Item.php:213 ../../mod/photos.php:1538
+#: ../../mod/content.php:683
+msgid "I like this (toggle)"
+msgstr "I like asta (toggle)"
+
+#: ../../object/Item.php:213 ../../mod/content.php:683
+msgid "like"
+msgstr "like"
+
+#: ../../object/Item.php:214 ../../mod/photos.php:1539
+#: ../../mod/content.php:684
+msgid "I don't like this (toggle)"
+msgstr "nu îmi place aceasta (comutare)"
+
+#: ../../object/Item.php:214 ../../mod/content.php:684
+msgid "dislike"
+msgstr "dislike"
+
+#: ../../object/Item.php:216 ../../mod/content.php:686
+msgid "Share this"
+msgstr "Partajează"
+
+#: ../../object/Item.php:216 ../../mod/content.php:686
+msgid "share"
+msgstr "partajează"
+
+#: ../../object/Item.php:298 ../../include/conversation.php:665
+msgid "Categories:"
+msgstr "Categorii:"
+
+#: ../../object/Item.php:299 ../../include/conversation.php:666
+msgid "Filed under:"
+msgstr "Înscris în:"
+
+#: ../../object/Item.php:307 ../../object/Item.php:308
+#: ../../mod/content.php:471 ../../mod/content.php:851
+#: ../../mod/content.php:852 ../../include/conversation.php:653
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Vizualizaţi profilul %s @ %s"
+
+#: ../../object/Item.php:309 ../../mod/content.php:853
+msgid "to"
+msgstr "către"
+
+#: ../../object/Item.php:310
+msgid "via"
+msgstr "via"
+
+#: ../../object/Item.php:311 ../../mod/content.php:854
+msgid "Wall-to-Wall"
+msgstr "Perete-prin-Perete"
+
+#: ../../object/Item.php:312 ../../mod/content.php:855
+msgid "via Wall-To-Wall:"
+msgstr "via Perete-Prin-Perete"
+
+#: ../../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 la %s"
+
+#: ../../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 "Comentariu"
+
+#: ../../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 "Aşteptaţi vă rog"
+
+#: ../../object/Item.php:367 ../../mod/content.php:602
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d comentariu"
+msgstr[1] "%d comentarii"
+msgstr[2] "%d comentarii"
+
+#: ../../object/Item.php:369 ../../object/Item.php:382
+#: ../../mod/content.php:604 ../../include/text.php:1959
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "comentariu"
+msgstr[1] "comentarii"
+msgstr[2] "comentarii"
+
+#: ../../object/Item.php:370 ../../mod/content.php:605 ../../boot.php:694
+#: ../../include/contact_widgets.php:204
+msgid "show more"
+msgstr "mai mult"
+
+#: ../../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 "Acesta eşti tu"
+
+#: ../../object/Item.php:658 ../../mod/fsuggest.php:107
+#: ../../mod/message.php:335 ../../mod/message.php:564
+#: ../../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 "Trimite"
+
+#: ../../object/Item.php:659 ../../mod/content.php:710
+msgid "Bold"
+msgstr "Bold"
+
+#: ../../object/Item.php:660 ../../mod/content.php:711
+msgid "Italic"
+msgstr "Italic"
+
+#: ../../object/Item.php:661 ../../mod/content.php:712
+msgid "Underline"
+msgstr "Subliniat"
+
+#: ../../object/Item.php:662 ../../mod/content.php:713
+msgid "Quote"
+msgstr "Citat"
+
+#: ../../object/Item.php:663 ../../mod/content.php:714
+msgid "Code"
+msgstr "Code"
+
+#: ../../object/Item.php:664 ../../mod/content.php:715
+msgid "Image"
+msgstr "Imagine"
+
+#: ../../object/Item.php:665 ../../mod/content.php:716
+msgid "Link"
+msgstr "Link"
+
+#: ../../object/Item.php:666 ../../mod/content.php:717
+msgid "Video"
+msgstr "Video"
+
+#: ../../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 "Previzualizare"
+
+#: ../../index.php:203 ../../mod/apps.php:7
+msgid "You must be logged in to use addons. "
+msgstr "Tu trebuie să vă autentificați pentru a folosi suplimentele."
+
+#: ../../index.php:247 ../../mod/help.php:90
+msgid "Not Found"
+msgstr "Negăsit"
+
+#: ../../index.php:250 ../../mod/help.php:93
+msgid "Page not found."
+msgstr "Pagină negăsită."
+
+#: ../../index.php:359 ../../mod/profperm.php:19 ../../mod/group.php:72
+msgid "Permission denied"
+msgstr "Permisiune refuzată"
+
+#: ../../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/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 "Permisiune refuzată."
+
+#: ../../index.php:419
+msgid "toggle mobile"
+msgstr "comutare mobil"
+
+#: ../../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 "[Conţinut încastrat - reîncărcaţi pagina pentru a vizualiza]"
+
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131
+msgid "Contact not found."
+msgstr "Contact negăsit."
+
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Sugestia de prietenie a fost trimisă."
+
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Sugeraţi Prieteni"
+
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Sugeraţi un prieten pentru %s"
+
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "Această introducere a fost deja acceptată"
+
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Locaţia profilului nu este validă sau nu conţine informaţii de profil."
+
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Atenţie: locaţia profilului nu are un nume de deţinător identificabil."
+
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
+msgstr "Atenţie: locaţia profilului nu are fotografie de profil."
+
+#: ../../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 parametru necesar nu a fost găsit în locaţia specificată"
+msgstr[1] "%d parametrii necesari nu au fost găsiţi în locaţia specificată"
+msgstr[2] "%d de parametrii necesari nu au fost găsiţi în locaţia specificată"
+
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "Prezentare completă."
+
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "Eroare de protocol nerecuperabilă."
+
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "Profil nedisponibil."
+
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s a primit, pentru azi, prea multe solicitări de conectare."
+
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "Au fost invocate măsuri de protecţie anti-spam."
+
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Prietenii sunt rugaţi să reîncerce peste 24 de ore."
+
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "Invalid locator"
+
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr "Adresă mail invalidă."
+
+#: ../../mod/dfrn_request.php:362
+msgid "This account has not been configured for email. Request failed."
+msgstr "Acest cont nu a fost configurat pentru email. Cererea a eşuat."
+
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
+msgstr "Imposibil să vă soluţionăm numele pentru locaţia sugerată."
+
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr "Aţi fost deja prezentat aici"
+
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Se pare că sunteţi deja prieten cu %s."
+
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr "Profil URL invalid."
+
+#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "Profil URL invalid."
+
+#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180
+msgid "Failed to update contact record."
+msgstr "Actualizarea datelor de contact a eşuat."
+
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr "Prezentarea dumneavoastră a fost trimisă."
+
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr "Vă rugăm să vă autentificați pentru a confirma prezentarea."
+
+#: ../../mod/dfrn_request.php:659
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Autentificat curent cu identitate eronată. Vă rugăm să vă autentificați pentru <strong>acest</strong> profil."
+
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
+msgstr "Ascunde acest contact"
+
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
+msgstr "Bine ai venit %s."
+
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Vă rugăm să vă confirmaţi solicitarea de introducere/conectare la %s."
+
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr "Confirm"
+
+#: ../../mod/dfrn_request.php:716 ../../include/items.php:3703
+msgid "[Name Withheld]"
+msgstr "[Nume Reţinut]"
+
+#: ../../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 "Acces public refuzat."
+
+#: ../../mod/dfrn_request.php:811
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Vă rugăm să vă introduceţi \"Adresa  de Identitate\" din una din următoarele reţele de socializare acceptate:"
+
+#: ../../mod/dfrn_request.php:827
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+msgstr "<Strike>Conectare ca și un fan prin email< /strike> (În Curând)"
+
+#: ../../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 "Dacă nu sunteţi încă un membru al reţelei online de socializare gratuite, <a href= \"http://dir.friendica.com/siteinfo\">urmați acest link pentru a găsi un site public Friendica şi alăturați-vă nouă, chiar astăzi</a>."
+
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "Solicitare Prietenie/Conectare"
+
+#: ../../mod/dfrn_request.php:833
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Exemple: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr "Vă rugăm să răspundeţi la următoarele:"
+
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
+msgstr "%s vă cunoaşte?"
+
+#: ../../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 "Da"
+
+#: ../../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 "NU"
+
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "Adaugă o notă personală:"
+
+#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
+
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Reţea Socială Web Centralizată"
+
+#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:731
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
+
+#: ../../mod/dfrn_request.php:843
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr "- vă rugăm să nu folosiţi acest formular. În schimb, introduceţi %s în bara dvs. de căutare Diaspora."
+
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr "Adresa dvs. Identitate "
+
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "Trimiteţi Solicitarea"
+
+#: ../../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 "Anulează"
+
+#: ../../mod/files.php:156 ../../mod/videos.php:301
+#: ../../include/text.php:1400
+msgid "View Video"
+msgstr "Vizualizați Clipul Video"
+
+#: ../../mod/profile.php:21 ../../boot.php:1353
+msgid "Requested profile is not available."
+msgstr "Profilul solicitat nu este disponibil."
+
+#: ../../mod/profile.php:155 ../../mod/display.php:99
+msgid "Access to this profile has been restricted."
+msgstr "Accesul la acest profil a fost restricţionat."
+
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Sfaturi pentru Membrii Noi"
+
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Datele de identificare solicitate, sunt invalide."
+
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Renunțați"
+
+#: ../../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 "Ignoră"
+
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "System"
+
+#: ../../mod/notifications.php:83 ../../include/nav.php:142
+msgid "Network"
+msgstr "Reţea"
+
+#: ../../mod/notifications.php:88 ../../mod/network.php:365
+msgid "Personal"
+msgstr "Personal"
+
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123
+#: ../../include/nav.php:104 ../../include/nav.php:145
+msgid "Home"
+msgstr "Home"
+
+#: ../../mod/notifications.php:98 ../../include/nav.php:151
+msgid "Introductions"
+msgstr "Introduceri"
+
+#: ../../mod/notifications.php:103 ../../mod/message.php:182
+#: ../../include/nav.php:158
+msgid "Messages"
+msgstr "Mesage"
+
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Afişare Solicitări Ignorate"
+
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Ascundere Solicitări Ignorate"
+
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Tip Notificări:"
+
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Sugestie Prietenie"
+
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "sugerat de către %s"
+
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
+#: ../../mod/contacts.php:497
+msgid "Hide this contact from others"
+msgstr "Ascunde acest contact pentru alţii"
+
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Publicaţi prietenului o nouă activitate"
+
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "dacă i posibil"
+
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
+#: ../../mod/admin.php:908
+msgid "Approve"
+msgstr "Aprobă"
+
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Pretinde că vă cunoaște:"
+
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "da"
+
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "nu"
+
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Aprobă ca:"
+
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Prieten"
+
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Distribuitor"
+
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fan/Admirator"
+
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Prieten/Solicitare de Conectare"
+
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Susţinător Nou"
+
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Fără prezentări."
+
+#: ../../mod/notifications.php:220 ../../include/nav.php:152
+msgid "Notifications"
+msgstr "Notificări"
+
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:469
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s a apreciat ceea a publicat %s"
+
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s a nu a apreciat ceea a publicat %s"
+
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:492
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s este acum prieten cu %s"
+
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#, php-format
+msgid "%s created a new post"
+msgstr "%s a creat o nouă postare"
+
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:501
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s a comentat la articolul postat de %s"
+
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
+msgstr "Nu mai există notificări de reţea."
+
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
+msgstr "Notificări de Reţea"
+
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
+msgid "No more system notifications."
+msgstr "Nu mai există notificări de sistem."
+
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr "Notificări de Sistem"
+
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
+msgstr "Nici o notificare personală"
+
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
+msgstr "Notificări personale"
+
+#: ../../mod/notifications.php:508
+msgid "No more home notifications."
+msgstr "Nu mai există notificări de origine."
+
+#: ../../mod/notifications.php:512
+msgid "Home Notifications"
+msgstr "Notificări de Origine"
+
+#: ../../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 "photo"
+
+#: ../../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"
+
+#: ../../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 apreciază %3$s lui %2$s"
+
+#: ../../mod/like.php:169 ../../include/conversation.php:140
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s nu apreciază %3$s lui %2$s"
+
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Eroare de protocol OpenID. Nici-un ID returnat."
+
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Contul nu a fost găsit iar înregistrările OpenID nu sunt permise pe acest site."
+
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
+msgstr "Eşec la conectare"
+
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Text (bbcode) sursă:"
+
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Text (Diaspora) sursă pentru a-l converti în BBcode:"
+
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Intrare Sursă:"
+
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (raw HTML): "
+
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
+
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
+
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
+
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
+
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
+
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
+
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Intrare Sursă (Format Diaspora):"
+
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
+
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr "Configurările temei au fost actualizate."
+
+#: ../../mod/admin.php:102 ../../mod/admin.php:573
+msgid "Site"
+msgstr "Site"
+
+#: ../../mod/admin.php:103 ../../mod/admin.php:901 ../../mod/admin.php:916
+msgid "Users"
+msgstr "Utilizatori"
+
+#: ../../mod/admin.php:104 ../../mod/admin.php:1005 ../../mod/admin.php:1058
+#: ../../mod/settings.php:57
+msgid "Plugins"
+msgstr "Pluginuri"
+
+#: ../../mod/admin.php:105 ../../mod/admin.php:1224 ../../mod/admin.php:1258
+msgid "Themes"
+msgstr "Teme"
+
+#: ../../mod/admin.php:106
+msgid "DB updates"
+msgstr "Actualizări Bază de Date"
+
+#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1345
+msgid "Logs"
+msgstr "Jurnale"
+
+#: ../../mod/admin.php:126 ../../include/nav.php:180
+msgid "Admin"
+msgstr "Admin"
+
+#: ../../mod/admin.php:127
+msgid "Plugin Features"
+msgstr "Caracteristici Modul"
+
+#: ../../mod/admin.php:129
+msgid "User registrations waiting for confirmation"
+msgstr "Înregistrări de utilizatori, aşteaptă confirmarea"
+
+#: ../../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 "Element negăsit."
+
+#: ../../mod/admin.php:188 ../../mod/admin.php:855
+msgid "Normal Account"
+msgstr "Cont normal"
+
+#: ../../mod/admin.php:189 ../../mod/admin.php:856
+msgid "Soapbox Account"
+msgstr "Cont Soapbox"
+
+#: ../../mod/admin.php:190 ../../mod/admin.php:857
+msgid "Community/Celebrity Account"
+msgstr "Cont Comunitate/Celebritate"
+
+#: ../../mod/admin.php:191 ../../mod/admin.php:858
+msgid "Automatic Friend Account"
+msgstr "Cont Prieten Automat"
+
+#: ../../mod/admin.php:192
+msgid "Blog Account"
+msgstr "Cont Blog"
+
+#: ../../mod/admin.php:193
+msgid "Private Forum"
+msgstr "Forum Privat"
+
+#: ../../mod/admin.php:212
+msgid "Message queues"
+msgstr "Șiruri de mesaje"
+
+#: ../../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 "Administrare"
+
+#: ../../mod/admin.php:218
+msgid "Summary"
+msgstr "Sumar"
+
+#: ../../mod/admin.php:220
+msgid "Registered users"
+msgstr "Utilizatori înregistraţi"
+
+#: ../../mod/admin.php:222
+msgid "Pending registrations"
+msgstr "Administrare"
+
+#: ../../mod/admin.php:223
+msgid "Version"
+msgstr "Versiune"
+
+#: ../../mod/admin.php:225
+msgid "Active plugins"
+msgstr "Module active"
+
+#: ../../mod/admin.php:248
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Nu se poate analiza URL-ul de bază. Trebuie să aibă minim <scheme>://<domain>"
+
+#: ../../mod/admin.php:485
+msgid "Site settings updated."
+msgstr "Configurările site-ului au fost actualizate."
+
+#: ../../mod/admin.php:514 ../../mod/settings.php:823
+msgid "No special theme for mobile devices"
+msgstr "Nici-o temă specială pentru dispozitive mobile"
+
+#: ../../mod/admin.php:531 ../../mod/contacts.php:408
+msgid "Never"
+msgstr "Niciodată"
+
+#: ../../mod/admin.php:532
+msgid "At post arrival"
+msgstr "La sosirea publicaţiei"
+
+#: ../../mod/admin.php:533 ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "Frecvent"
+
+#: ../../mod/admin.php:534 ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "Din oră în oră"
+
+#: ../../mod/admin.php:535 ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "De două ori pe zi"
+
+#: ../../mod/admin.php:536 ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "Zilnic"
+
+#: ../../mod/admin.php:541
+msgid "Multi user instance"
+msgstr "Instanţă utilizatori multipli"
+
+#: ../../mod/admin.php:559
+msgid "Closed"
+msgstr "Inchis"
+
+#: ../../mod/admin.php:560
+msgid "Requires approval"
+msgstr "Necesită aprobarea"
+
+#: ../../mod/admin.php:561
+msgid "Open"
+msgstr "Deschide"
+
+#: ../../mod/admin.php:565
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Nici-o politică SSL, legăturile vor  urmări starea paginii SSL"
+
+#: ../../mod/admin.php:566
+msgid "Force all links to use SSL"
+msgstr "Forţează toate legăturile să utilizeze SSL"
+
+#: ../../mod/admin.php:567
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Certificat auto/semnat, folosește SSL numai pentru legăturile locate (nerecomandat)"
+
+#: ../../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 "Salvare Configurări"
+
+#: ../../mod/admin.php:575 ../../mod/register.php:265
+msgid "Registration"
+msgstr "Registratură"
+
+#: ../../mod/admin.php:576
+msgid "File upload"
+msgstr "Fişier incărcat"
+
+#: ../../mod/admin.php:577
+msgid "Policies"
+msgstr "Politici"
+
+#: ../../mod/admin.php:578
+msgid "Advanced"
+msgstr "Avansat"
+
+#: ../../mod/admin.php:579
+msgid "Performance"
+msgstr "Performanţă"
+
+#: ../../mod/admin.php:580
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Reaşezaţi - AVERTIZARE: funcţie avansată. Ar putea face acest server inaccesibil."
+
+#: ../../mod/admin.php:583
+msgid "Site name"
+msgstr "Nume site"
+
+#: ../../mod/admin.php:584
+msgid "Banner/Logo"
+msgstr "Baner/Logo"
+
+#: ../../mod/admin.php:585
+msgid "Additional Info"
+msgstr "Informaţii suplimentare"
+
+#: ../../mod/admin.php:585
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
+msgstr "Pentru serverele publice: puteţi să adăugaţi aici informaţiile suplimentare ce vor fi afişate pe dir.friendica.com/siteinfo."
+
+#: ../../mod/admin.php:586
+msgid "System language"
+msgstr "Limbă System l"
+
+#: ../../mod/admin.php:587
+msgid "System theme"
+msgstr "Temă System "
+
+#: ../../mod/admin.php:587
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Tema implicită a sistemului - se poate supraregla prin profilele de utilizator - <a href='#' id='cnftheme'>modificați configurările temei</a>"
+
+#: ../../mod/admin.php:588
+msgid "Mobile system theme"
+msgstr "Temă sisteme mobile"
+
+#: ../../mod/admin.php:588
+msgid "Theme for mobile devices"
+msgstr "Temă pentru dispozitivele mobile"
+
+#: ../../mod/admin.php:589
+msgid "SSL link policy"
+msgstr "Politivi link  SSL "
+
+#: ../../mod/admin.php:589
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Determină dacă legăturile generate ar trebui forţate să utilizeze SSL"
+
+#: ../../mod/admin.php:590
+msgid "Old style 'Share'"
+msgstr "Stilul vechi de 'Distribuiţi'"
+
+#: ../../mod/admin.php:590
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Dezactivează elementul bbcode 'distribuiţi' pentru elementele repetitive."
+
+#: ../../mod/admin.php:591
+msgid "Hide help entry from navigation menu"
+msgstr "Ascunde elementele de ajutor, din meniul de navigare"
+
+#: ../../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 "Ascunde intrările de meniu pentru paginile de Ajutor, din meniul de navigare. Îl puteţi accesa în continuare direct, apelând /ajutor."
+
+#: ../../mod/admin.php:592
+msgid "Single user instance"
+msgstr "Instanţă cu un singur utilizator"
+
+#: ../../mod/admin.php:592
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Stabiliți această instanţă ca utilizator-multipli sau utilizator/unic, pentru utilizatorul respectiv"
+
+#: ../../mod/admin.php:593
+msgid "Maximum image size"
+msgstr "Maxim mărime imagine"
+
+#: ../../mod/admin.php:593
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Dimensiunea maximă în octeţi, a imaginii încărcate. Implicit este 0, ceea ce înseamnă fără limite."
+
+#: ../../mod/admin.php:594
+msgid "Maximum image length"
+msgstr "Dimensiunea maximă a imaginii"
+
+#: ../../mod/admin.php:594
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Dimensiunea maximă în pixeli a celei mai lungi laturi a imaginii încărcate. Implicit este -1, ceea ce înseamnă fără limite."
+
+#: ../../mod/admin.php:595
+msgid "JPEG image quality"
+msgstr "Calitate imagine JPEG "
+
+#: ../../mod/admin.php:595
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Imaginile JPEG încărcate vor fi salvate cu această calitate stabilită [0-100]. Implicit este 100, ceea ce înseamnă calitate completă."
+
+#: ../../mod/admin.php:597
+msgid "Register policy"
+msgstr "Politici inregistrare "
+
+#: ../../mod/admin.php:598
+msgid "Maximum Daily Registrations"
+msgstr "Înregistrări Zilnice Maxime"
+
+#: ../../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 "Dacă înregistrarea este permisă de mai sus, aceasta stabileşte numărul maxim de utilizatori noi înregistraţi, acceptaţi pe zi. Dacă înregistrarea este stabilită ca închisă, această setare nu are efect."
+
+#: ../../mod/admin.php:599
+msgid "Register text"
+msgstr "Text înregistrare"
+
+#: ../../mod/admin.php:599
+msgid "Will be displayed prominently on the registration page."
+msgstr "Va fi afişat vizibil pe pagina de înregistrare."
+
+#: ../../mod/admin.php:600
+msgid "Accounts abandoned after x days"
+msgstr "Conturi abandonate după x zile"
+
+#: ../../mod/admin.php:600
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Nu va risipi resurse de sistem interogând site-uri externe pentru conturi abandonate. Introduceţi 0 pentru nici-o limită de timp."
+
+#: ../../mod/admin.php:601
+msgid "Allowed friend domains"
+msgstr "Domenii prietene permise"
+
+#: ../../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 "Lista cu separator prin virgulă a domeniilor ce sunt permise pentru a stabili relaţii de prietenie cu acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu"
+
+#: ../../mod/admin.php:602
+msgid "Allowed email domains"
+msgstr "Domenii de email, permise"
+
+#: ../../mod/admin.php:602
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Lista cu separator prin virgulă a domeniilor ce sunt permise în adresele de email pentru înregistrările pe acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu"
+
+#: ../../mod/admin.php:603
+msgid "Block public"
+msgstr "Blocare acces public"
+
+#: ../../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 "Bifați pentru a bloca accesul public, pe acest site, către toate paginile publice cu caracter personal, doar dacă nu sunteţi deja autentificat."
+
+#: ../../mod/admin.php:604
+msgid "Force publish"
+msgstr "Forțează publicarea"
+
+#: ../../mod/admin.php:604
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Bifați pentru a forţa, ca toate profilurile de pe acest site să fie enumerate în directorul site-ului."
+
+#: ../../mod/admin.php:605
+msgid "Global directory update URL"
+msgstr "URL actualizare director global"
+
+#: ../../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 pentru a actualiza directorul global. Dacă aceasta nu se stabilește, director global este complet indisponibil pentru aplicație."
+
+#: ../../mod/admin.php:606
+msgid "Allow threaded items"
+msgstr "Permite elemente înșiruite"
+
+#: ../../mod/admin.php:606
+msgid "Allow infinite level threading for items on this site."
+msgstr "Permite pe acest site, un număr infinit de nivele de înșiruire."
+
+#: ../../mod/admin.php:607
+msgid "Private posts by default for new users"
+msgstr "Postările private, ca implicit pentru utilizatori noi"
+
+#: ../../mod/admin.php:607
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Stabilește permisiunile de postare implicite, pentru toți membrii noi, la grupul de confidențialitate implicit, mai degrabă decât cel public."
+
+#: ../../mod/admin.php:608
+msgid "Don't include post content in email notifications"
+msgstr "Nu include conţinutul postării în notificările prin email"
+
+#: ../../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 "Nu include conținutul unui post/comentariu/mesaj privat/etc. în notificările prin email, ce sunt trimise de pe acest site, ca și masură de confidenţialitate."
+
+#: ../../mod/admin.php:609
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Nu permiteţi accesul public la suplimentele enumerate în meniul de aplicaţii."
+
+#: ../../mod/admin.php:609
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Bifând această casetă va restricționa, suplimentele enumerate în meniul de aplicaţii, exclusiv la accesul membrilor."
+
+#: ../../mod/admin.php:610
+msgid "Don't embed private images in posts"
+msgstr "Nu încorpora imagini private în postări"
+
+#: ../../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 "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "Nu înlocui fotografiile private, locale, din postări cu o copie încorporată imaginii. Aceasta înseamnă că, contactele care primesc postări ce conțin fotografii private vor trebui să se autentifice şi să încarce fiecare imagine, ceea ce poate dura ceva timp."
+
+#: ../../mod/admin.php:611
+msgid "Allow Users to set remote_self"
+msgstr "Permite utilizatorilor să-și stabilească remote_self"
+
+#: ../../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 "Bifând aceasta, fiecărui utilizator îi este permis să marcheze fiecare contact, ca și propriu_la-distanță în dialogul de remediere contact. Stabilind acest marcaj unui un contact, va determina oglindirea fiecărei postări a respectivului contact, în fluxul utilizatorilor."
+
+#: ../../mod/admin.php:612
+msgid "Block multiple registrations"
+msgstr "Blocare înregistrări multiple"
+
+#: ../../mod/admin.php:612
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Interzice utilizatorilor să-și înregistreze conturi adiționale pentru a le folosi ca pagini."
+
+#: ../../mod/admin.php:613
+msgid "OpenID support"
+msgstr "OpenID support"
+
+#: ../../mod/admin.php:613
+msgid "OpenID support for registration and logins."
+msgstr "Suport OpenID pentru înregistrare şi autentificări."
+
+#: ../../mod/admin.php:614
+msgid "Fullname check"
+msgstr "Verificare Nume complet"
+
+#: ../../mod/admin.php:614
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Forțează utilizatorii să se înregistreze cu un spaţiu între prenume şi nume, în câmpul pentru Nume complet, ca și măsură antispam"
+
+#: ../../mod/admin.php:615
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 Regular expresii"
+
+#: ../../mod/admin.php:615
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Utilizaţi  PHP UTF-8 Regular expresii"
+
+#: ../../mod/admin.php:616
+msgid "Show Community Page"
+msgstr "Arată Pagina Communitz"
+
+#: ../../mod/admin.php:616
+msgid ""
+"Display a Community page showing all recent public postings on this site."
+msgstr "Afişează o Pagina de Comunitate, arătând toate postările publice recente  pe acest site."
+
+#: ../../mod/admin.php:617
+msgid "Enable OStatus support"
+msgstr "Activează Suport OStatus"
+
+#: ../../mod/admin.php:617
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Oferă compatibilitate de integrare OStatus (StatusNet, GNU Sociale etc.). Toate comunicațiile din OStatus sunt publice, astfel încât avertismentele de confidenţialitate  vor fi ocazional afişate."
+
+#: ../../mod/admin.php:618
+msgid "OStatus conversation completion interval"
+msgstr "Intervalul OStatus  de finalizare a conversaţiei"
+
+#: ../../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 "Cât de des ar trebui, operatorul de sondaje, să verifice existența intrărilor noi din conversațiile OStatus? Aceasta poate fi o resursă de sarcini utile."
+
+#: ../../mod/admin.php:619
+msgid "Enable Diaspora support"
+msgstr "Activează Suport Diaspora"
+
+#: ../../mod/admin.php:619
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Oferă o compatibilitate de reţea Diaspora, întegrată."
+
+#: ../../mod/admin.php:620
+msgid "Only allow Friendica contacts"
+msgstr "Se permit doar contactele Friendica"
+
+#: ../../mod/admin.php:620
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Toate contactele trebuie să utilizeze protocoalele Friendica. Toate celelalte protocoale, integrate, de comunicaţii sunt dezactivate."
+
+#: ../../mod/admin.php:621
+msgid "Verify SSL"
+msgstr "Verifică SSL"
+
+#: ../../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 "Dacă doriţi, puteţi porni verificarea cu strictețe a certificatului. Aceasta va însemna că nu vă puteţi conecta (deloc) la site-uri SSL auto-semnate."
+
+#: ../../mod/admin.php:622
+msgid "Proxy user"
+msgstr "Proxy user"
+
+#: ../../mod/admin.php:623
+msgid "Proxy URL"
+msgstr "Proxy URL"
+
+#: ../../mod/admin.php:624
+msgid "Network timeout"
+msgstr "Timp de expirare rețea"
+
+#: ../../mod/admin.php:624
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valoare exprimată în secunde. Stabiliți la 0 pentru nelimitat (nu este recomandat)."
+
+#: ../../mod/admin.php:625
+msgid "Delivery interval"
+msgstr "Interval de livrare"
+
+#: ../../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 "Întârzierea proceselor de livrare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. Recomandat: 4-5 pentru gazde comune, 2-3 pentru servere virtuale private, 0-1 pentru servere dedicate mari."
+
+#: ../../mod/admin.php:626
+msgid "Poll interval"
+msgstr "Interval de Sondare"
+
+#: ../../mod/admin.php:626
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Întârzierea proceselor de sondare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. dacă este 0, utilizează intervalul de livrare."
+
+#: ../../mod/admin.php:627
+msgid "Maximum Load Average"
+msgstr "Media Maximă de Încărcare"
+
+#: ../../mod/admin.php:627
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Încărcarea maximă a sistemului înainte ca livrarea şi procesele de sondare să fie amânate - implicit 50."
+
+#: ../../mod/admin.php:629
+msgid "Use MySQL full text engine"
+msgstr "Utilizare motor text-complet MySQL"
+
+#: ../../mod/admin.php:629
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Activează motorul pentru text complet. Grăbeşte căutare - dar poate căuta, numai pentru minim 4 caractere."
+
+#: ../../mod/admin.php:630
+msgid "Suppress Language"
+msgstr "Suprimă Limba"
+
+#: ../../mod/admin.php:630
+msgid "Suppress language information in meta information about a posting."
+msgstr "Suprimă informaţiile despre limba din informaţiile meta ale unei postări."
+
+#: ../../mod/admin.php:631
+msgid "Path to item cache"
+msgstr "Calea pentru elementul cache"
+
+#: ../../mod/admin.php:632
+msgid "Cache duration in seconds"
+msgstr "Durata Cache în secunde"
+
+#: ../../mod/admin.php:632
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day)."
+msgstr "Cât timp trebuie să fie reţinute fişierele cache? Valoarea implicită este de 86400 secunde (O zi)."
+
+#: ../../mod/admin.php:633
+msgid "Path for lock file"
+msgstr "Cale pentru blocare fișiere"
+
+#: ../../mod/admin.php:634
+msgid "Temp path"
+msgstr "Calea Temp"
+
+#: ../../mod/admin.php:635
+msgid "Base path to installation"
+msgstr "Calea de bază pentru instalare"
+
+#: ../../mod/admin.php:637
+msgid "New base url"
+msgstr "URL de bază nou"
+
+#: ../../mod/admin.php:655
+msgid "Update has been marked successful"
+msgstr "Actualizarea a fost marcată cu succes"
+
+#: ../../mod/admin.php:665
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "Executarea %s a eșuat. Verificaţi jurnalele de sistem."
+
+#: ../../mod/admin.php:668
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Actualizarea %s a fost aplicată cu succes."
+
+#: ../../mod/admin.php:672
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Actualizare %s nu a returnat nici-un status. Nu se știe dacă a reuşit."
+
+#: ../../mod/admin.php:675
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "Funcția de actualizare %s nu s-a putut găsi."
+
+#: ../../mod/admin.php:690
+msgid "No failed updates."
+msgstr "Nici-o actualizare eșuată."
+
+#: ../../mod/admin.php:694
+msgid "Failed Updates"
+msgstr "Actualizări Eșuate"
+
+#: ../../mod/admin.php:695
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Aceasta nu include actualizările dinainte de 1139, care nu a returnat nici-un status."
+
+#: ../../mod/admin.php:696
+msgid "Mark success (if update was manually applied)"
+msgstr "Marcaţi ca și realizat (dacă actualizarea a fost aplicată manual)"
+
+#: ../../mod/admin.php:697
+msgid "Attempt to execute this update step automatically"
+msgstr "Se încearcă executarea automată a acestei etape de actualizare"
+
+#: ../../mod/admin.php:737 ../../mod/register.php:92 ../../mod/regmod.php:54
+#, php-format
+msgid "Registration details for %s"
+msgstr "Detaliile de înregistrare pentru %s"
+
+#: ../../mod/admin.php:743
+msgid "Registration successful. Email send to user"
+msgstr "Înregistrarea s-a efectuat cu succes. Un email a fost trimis utilizatorului"
+
+#: ../../mod/admin.php:753
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s utilizator blocat/deblocat"
+msgstr[1] "%s utilizatori blocați/deblocați"
+msgstr[2] "%s de utilizatori blocați/deblocați"
+
+#: ../../mod/admin.php:760
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s utilizator şters"
+msgstr[1] "%s utilizatori şterşi"
+msgstr[2] "%s utilizatori şterşi"
+
+#: ../../mod/admin.php:799
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Utilizator %s şters"
+
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Utilizator %s deblocat"
+
+#: ../../mod/admin.php:807
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Utilizator %s blocat"
+
+#: ../../mod/admin.php:902
+msgid "Add User"
+msgstr "Adăugaţi Utilizator"
+
+#: ../../mod/admin.php:903
+msgid "select all"
+msgstr "selectează tot"
+
+#: ../../mod/admin.php:904
+msgid "User registrations waiting for confirm"
+msgstr "Înregistrarea utilizatorului, aşteaptă confirmarea"
+
+#: ../../mod/admin.php:905
+msgid "User waiting for permanent deletion"
+msgstr "Utilizatorul așteaptă să fie șters definitiv"
+
+#: ../../mod/admin.php:906
+msgid "Request date"
+msgstr "Data cererii"
+
+#: ../../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 "Nume"
+
+#: ../../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 "Email"
+
+#: ../../mod/admin.php:907
+msgid "No registrations."
+msgstr "Nici-o înregistrare."
+
+#: ../../mod/admin.php:909
+msgid "Deny"
+msgstr "Respinge"
+
+#: ../../mod/admin.php:911 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Block"
+msgstr "Blochează"
+
+#: ../../mod/admin.php:912 ../../mod/contacts.php:431
+#: ../../mod/contacts.php:490 ../../mod/contacts.php:700
+msgid "Unblock"
+msgstr "Deblochează"
+
+#: ../../mod/admin.php:913
+msgid "Site admin"
+msgstr "Site admin"
+
+#: ../../mod/admin.php:914
+msgid "Account expired"
+msgstr "Cont expirat"
+
+#: ../../mod/admin.php:917
+msgid "New User"
+msgstr "Utilizator Nou"
+
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Register date"
+msgstr "Data înregistrare"
+
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last login"
+msgstr "Ultimul login"
+
+#: ../../mod/admin.php:918 ../../mod/admin.php:919
+msgid "Last item"
+msgstr "Ultimul element"
+
+#: ../../mod/admin.php:918
+msgid "Deleted since"
+msgstr "Șters din"
+
+#: ../../mod/admin.php:919 ../../mod/settings.php:36
+msgid "Account"
+msgstr "Cont"
+
+#: ../../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 "Utilizatorii selectați vor fi ştersi!\\n\\nTot ce au postat acești utilizatori pe acest site, va fi şters permanent!\\n\\nConfirmați?"
+
+#: ../../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 "Utilizatorul {0}  va fi şters!\\n\\nTot ce a postat acest utilizator pe acest site, va fi şters permanent!\\n\\nConfirmați?"
+
+#: ../../mod/admin.php:932
+msgid "Name of the new user."
+msgstr "Numele noului utilizator."
+
+#: ../../mod/admin.php:933
+msgid "Nickname"
+msgstr "Pseudonim"
+
+#: ../../mod/admin.php:933
+msgid "Nickname of the new user."
+msgstr "Pseudonimul noului utilizator."
+
+#: ../../mod/admin.php:934
+msgid "Email address of the new user."
+msgstr "Adresa de e-mail a utilizatorului nou."
+
+#: ../../mod/admin.php:967
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Modulul %s a fost dezactivat."
+
+#: ../../mod/admin.php:971
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Modulul %s a fost activat."
+
+#: ../../mod/admin.php:981 ../../mod/admin.php:1195
+msgid "Disable"
+msgstr "Dezactivează"
+
+#: ../../mod/admin.php:983 ../../mod/admin.php:1197
+msgid "Enable"
+msgstr "Activează"
+
+#: ../../mod/admin.php:1006 ../../mod/admin.php:1225
+msgid "Toggle"
+msgstr "Comutare"
+
+#: ../../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 "Setări"
+
+#: ../../mod/admin.php:1014 ../../mod/admin.php:1235
+msgid "Author: "
+msgstr "Autor: "
+
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1236
+msgid "Maintainer: "
+msgstr "Responsabil:"
+
+#: ../../mod/admin.php:1155
+msgid "No themes found."
+msgstr "Nici-o temă găsită."
+
+#: ../../mod/admin.php:1217
+msgid "Screenshot"
+msgstr "Screenshot"
+
+#: ../../mod/admin.php:1263
+msgid "[Experimental]"
+msgstr "[Experimental]"
+
+#: ../../mod/admin.php:1264
+msgid "[Unsupported]"
+msgstr "[Unsupported]"
+
+#: ../../mod/admin.php:1291
+msgid "Log settings updated."
+msgstr "Jurnalul de configurări fost actualizat."
+
+#: ../../mod/admin.php:1347
+msgid "Clear"
+msgstr "Curăţă"
+
+#: ../../mod/admin.php:1353
+msgid "Enable Debugging"
+msgstr "Activează Depanarea"
+
+#: ../../mod/admin.php:1354
+msgid "Log file"
+msgstr "Fişier Log "
+
+#: ../../mod/admin.php:1354
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Trebuie să fie inscriptibil pentru serverul web. Relativ la directoul dvs. superior Friendica."
+
+#: ../../mod/admin.php:1355
+msgid "Log level"
+msgstr "Nivel log"
+
+#: ../../mod/admin.php:1404 ../../mod/contacts.php:487
+msgid "Update now"
+msgstr "Actualizează acum"
+
+#: ../../mod/admin.php:1405
+msgid "Close"
+msgstr "Închide"
+
+#: ../../mod/admin.php:1411
+msgid "FTP Host"
+msgstr "FTP Host"
+
+#: ../../mod/admin.php:1412
+msgid "FTP Path"
+msgstr "FTP Path"
+
+#: ../../mod/admin.php:1413
+msgid "FTP User"
+msgstr "FTP User"
+
+#: ../../mod/admin.php:1414
+msgid "FTP Password"
+msgstr "FTP Parolă"
+
+#: ../../mod/message.php:9 ../../include/nav.php:161
+msgid "New Message"
+msgstr "Mesaj nou"
+
+#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
+msgid "No recipient selected."
+msgstr "Nici-o adresă selectată."
+
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Nu se pot localiza informaţiile de contact."
+
+#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr "Mesajul nu a putut fi trimis."
+
+#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
+msgid "Message collection failure."
+msgstr "Eșec de colectare mesaj."
+
+#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
+msgid "Message sent."
+msgstr "Mesaj trimis."
+
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Chiar doriţi să ştergeţi acest mesaj ?"
+
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Mesaj şters"
+
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Conversaşie inlăturată."
+
+#: ../../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 "Introduceţi un link URL:"
+
+#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
+msgid "Send Private Message"
+msgstr "Trimite mesaj privat"
+
+#: ../../mod/message.php:320 ../../mod/message.php:553
+#: ../../mod/wallmessage.php:144
+msgid "To:"
+msgstr "Către: "
+
+#: ../../mod/message.php:325 ../../mod/message.php:555
+#: ../../mod/wallmessage.php:145
+msgid "Subject:"
+msgstr "Subiect:"
+
+#: ../../mod/message.php:329 ../../mod/message.php:558
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+msgid "Your message:"
+msgstr "Mesajul dvs :"
+
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
+#: ../../include/conversation.php:1089
+msgid "Upload photo"
+msgstr "Încarcă foto"
+
+#: ../../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 "Inserează link web"
+
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Nici-un mesaj."
+
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Expeditor necunoscut - %s"
+
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Tu şi  %s"
+
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s şi dvs"
+
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Ștergeți conversaţia"
+
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
+
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d mesaj"
+msgstr[1] "%d mesaje"
+msgstr[2] "%d mesaje"
+
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Mesaj nedisponibil"
+
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Şterge mesaj"
+
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Nici-o comunicaţie securizată disponibilă. <strong>Veți putea</strong> răspunde din pagina de profil a expeditorului."
+
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Răspunde"
+
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Element negăsit"
+
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Editează post"
+
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1090
+msgid "upload photo"
+msgstr "încărcare fotografie"
+
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1091
+msgid "Attach file"
+msgstr "Ataşează fişier"
+
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1092
+msgid "attach file"
+msgstr "ataşează fişier"
+
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1094
+msgid "web link"
+msgstr "web link"
+
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1095
+msgid "Insert video link"
+msgstr "Inserează video link"
+
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1096
+msgid "video link"
+msgstr "video link"
+
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1097
+msgid "Insert audio link"
+msgstr "Inserare link audio"
+
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1098
+msgid "audio link"
+msgstr "audio link"
+
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1099
+msgid "Set your location"
+msgstr "Setează locaţia dvs"
+
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1100
+msgid "set location"
+msgstr "set locaţie"
+
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1101
+msgid "Clear browser location"
+msgstr "Curățare locație browser"
+
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1102
+msgid "clear location"
+msgstr "şterge locaţia"
+
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1108
+msgid "Permission settings"
+msgstr "Setări permisiuni"
+
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1117
+msgid "CC: email addresses"
+msgstr "CC:  adresă email"
+
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1118
+msgid "Public post"
+msgstr "Public post"
+
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1104
+msgid "Set title"
+msgstr "Setează titlu"
+
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1106
+msgid "Categories (comma-separated list)"
+msgstr "Categorii (listă cu separator prin virgulă)"
+
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1120
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Exemplu: bob@exemplu.com, mary@exemplu.com"
+
+#: ../../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 negăsit."
+
+#: ../../mod/dfrn_confirm.php:119
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Aceasta se poate întâmpla ocazional dacă contactul a fost solicitat de către ambele persoane şi acesta a fost deja aprobat."
+
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "Răspunsul de la adresa de la distanţă, nu a fost înțeles."
+
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "Răspuns neaşteptat de la site-ul de la distanţă:"
+
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "Confirmare încheiată cu succes."
+
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "Site-ul de la distanţă a raportat:"
+
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "Eroare Temporară. Vă rugăm să aşteptaţi şi încercaţi din nou."
+
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "Introducerea a eşuat sau a fost revocată."
+
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Imposibil de stabilit fotografia de contact."
+
+#: ../../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 este acum prieten cu %2$s"
+
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Nici-o înregistrare de utilizator găsită pentru '%s'"
+
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "Se pare că, cheia de criptare a site-ului nostru s-a încurcat."
+
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "A fost furnizată o adresă URL goală, sau adresa URL nu poate fi decriptată de noi."
+
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "Registrul contactului nu a fost găsit pe site-ul nostru."
+
+#: ../../mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Cheia publică a site-ului nu este disponibilă în registrul contactului pentru URL-ul %s."
+
+#: ../../mod/dfrn_confirm.php:638
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "ID-ul furnizat de către sistemul dumneavoastră este un duplicat pe sistemul nostru. Ar trebui să funcţioneze dacă încercaţi din nou."
+
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Imposibil de configurat datele dvs. de autentificare, pe sistemul nostru."
+
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr "Imposibil de actualizat detaliile de profil ale contactului dvs., pe sistemul nostru."
+
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Conexiune acceptată la %s"
+
+#: ../../mod/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s s-a alăturat lui %2$s"
+
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Titlul evenimentului şi timpul de pornire sunt necesare."
+
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
+
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Editează eveniment"
+
+#: ../../mod/events.php:335 ../../include/text.php:1633
+#: ../../include/text.php:1644
+msgid "link to source"
+msgstr "link către sursă"
+
+#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127
+#: ../../boot.php:2003 ../../include/nav.php:79
+msgid "Events"
+msgstr "Evenimente"
+
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Crează eveniment nou"
+
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Precedent"
+
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Next"
+
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "ore:minute"
+
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Detalii eveniment"
+
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Formatul este %s %s.Data de începere și Titlul sunt necesare."
+
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Evenimentul Începe:"
+
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Cerut"
+
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Data/ora de finalizare nu este cunoscută sau nu este relevantă"
+
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Evenimentul se Finalizează:"
+
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Reglați pentru fusul orar al vizitatorului"
+
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Descriere:"
+
+#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1513
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:155
+msgid "Location:"
+msgstr "Locaţie:"
+
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Titlu:"
+
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Partajează acest eveniment"
+
+#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126
+#: ../../boot.php:1986 ../../include/nav.php:78
+msgid "Photos"
+msgstr "Poze"
+
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Fişiere"
+
+#: ../../mod/home.php:34
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bine aţi venit la %s"
+
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Informaţiile la distanţă despre confidenţialitate, nu sunt disponibile."
+
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Visibil către:"
+
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Numărul de mesaje, zilnice de perete, pentru %s a fost depăşit. Mesajul a eşuat."
+
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Imposibil de verificat locaţia dvs. de reşedinţă."
+
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Nici-un destinatar."
+
+#: ../../mod/wallmessage.php:143
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Dacă doriţi ca %s să vă răspundă, vă rugăm să verificaţi dacă configurările de confidenţialitate de pe site-ul dumneavoastră, permite mail-uri private de la expeditori necunoscuți."
+
+#: ../../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 "Vizitați profilul %s [%s]"
+
+#: ../../mod/nogroup.php:41 ../../mod/contacts.php:666
+msgid "Edit contact"
+msgstr "Editează contact"
+
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Contactele care nu sunt membre ale unui grup"
+
+#: ../../mod/friendica.php:58
+msgid "This is Friendica, version"
+msgstr "Friendica, versiunea"
+
+#: ../../mod/friendica.php:59
+msgid "running at web location"
+msgstr "rulează la locaţia web"
+
+#: ../../mod/friendica.php:61
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Vă rugăm să vizitaţi <a href=\"http://friendica.com\">Friendica.com</a> pentru a afla mai multe despre proiectul Friendica."
+
+#: ../../mod/friendica.php:63
+msgid "Bug reports and issues: please visit"
+msgstr "Rapoarte de erori şi probleme: vă rugăm să vizitaţi"
+
+#: ../../mod/friendica.php:64
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Sugestii, laude, donatii, etc. - vă rugăm să trimiteți un email  pe \"Info\" at Friendica - dot com"
+
+#: ../../mod/friendica.php:78
+msgid "Installed plugins/addons/apps:"
+msgstr "Module/suplimente/aplicații instalate:"
+
+#: ../../mod/friendica.php:91
+msgid "No installed plugins/addons/apps"
+msgstr "Module/suplimente/aplicații neinstalate"
+
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Șterge Contul Meu"
+
+#: ../../mod/removeme.php:47
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Aceasta va elimina complet contul dvs. Odată ce a fostă, această acțiune este nerecuperabilă."
+
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Vă rugăm să introduceţi parola dvs. pentru verificare:"
+
+#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "Dimensiunea imaginii depăşeşte limita de %d"
+
+#: ../../mod/wall_upload.php:112 ../../mod/photos.php:805
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Nu s-a putut procesa imaginea."
+
+#: ../../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 "Fotografii de Perete"
+
+#: ../../mod/wall_upload.php:138 ../../mod/photos.php:832
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Încărcarea imaginii a eşuat."
+
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autorizare conectare aplicaţie"
+
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Reveniți la aplicația dvs. şi introduceţi acest Cod de Securitate:"
+
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Vă rugăm să vă autentificați pentru a continua."
+
+#: ../../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 "Doriţi să autorizați această aplicaţie pentru a vă accesa postările şi contactele, şi/sau crea noi postări pentru dvs.?"
+
+#: ../../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 a etichetat %3$s de la %2$s cu %4$s"
+
+#: ../../mod/photos.php:52 ../../boot.php:1989
+msgid "Photo Albums"
+msgstr "Albume Photo "
+
+#: ../../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 "Photo Contact"
+
+#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815
+msgid "Upload New Photos"
+msgstr "Încărcaţi Fotografii Noi"
+
+#: ../../mod/photos.php:80 ../../mod/settings.php:29
+msgid "everybody"
+msgstr "oricine"
+
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
+msgstr "Informaţii contact nedisponibile"
+
+#: ../../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 "Poze profil"
+
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "Album negăsit"
+
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Şterge Album"
+
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Doriţi într-adevăr să ştergeţi acest album foto și toate fotografiile sale?"
+
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511
+msgid "Delete Photo"
+msgstr "Şterge  Poza"
+
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Sigur doriți să ștergeți această fotografie?"
+
+#: ../../mod/photos.php:660
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s a fost etichetat în %2$s de către %3$s"
+
+#: ../../mod/photos.php:660
+msgid "a photo"
+msgstr "o poză"
+
+#: ../../mod/photos.php:765
+msgid "Image exceeds size limit of "
+msgstr "Dimensiunea imaginii depăşeşte limita de"
+
+#: ../../mod/photos.php:773
+msgid "Image file is empty."
+msgstr "Fișierul imagine este gol."
+
+#: ../../mod/photos.php:928
+msgid "No photos selected"
+msgstr "Nici-o fotografie selectată"
+
+#: ../../mod/photos.php:1029 ../../mod/videos.php:226
+msgid "Access to this item is restricted."
+msgstr "Accesul la acest element este restricționat."
+
+#: ../../mod/photos.php:1092
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Aţi folosit %1$.2f Mb din %2$.2f Mb de stocare foto."
+
+#: ../../mod/photos.php:1127
+msgid "Upload Photos"
+msgstr "Încărcare Fotografii"
+
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Nume album nou:"
+
+#: ../../mod/photos.php:1132
+msgid "or existing album name: "
+msgstr "sau numele unui album existent:"
+
+#: ../../mod/photos.php:1133
+msgid "Do not show a status post for this upload"
+msgstr "Nu afișa un status pentru această încărcare"
+
+#: ../../mod/photos.php:1135 ../../mod/photos.php:1506
+msgid "Permissions"
+msgstr "Permisiuni"
+
+#: ../../mod/photos.php:1144 ../../mod/photos.php:1515
+#: ../../mod/settings.php:1139
+msgid "Show to Groups"
+msgstr "Afișare pentru Grupuri"
+
+#: ../../mod/photos.php:1145 ../../mod/photos.php:1516
+#: ../../mod/settings.php:1140
+msgid "Show to Contacts"
+msgstr "Afişează la Contacte"
+
+#: ../../mod/photos.php:1146
+msgid "Private Photo"
+msgstr "Poze private"
+
+#: ../../mod/photos.php:1147
+msgid "Public Photo"
+msgstr "Poze Publice"
+
+#: ../../mod/photos.php:1214
+msgid "Edit Album"
+msgstr "Editează Album"
+
+#: ../../mod/photos.php:1220
+msgid "Show Newest First"
+msgstr "Afișează Întâi cele Noi"
+
+#: ../../mod/photos.php:1222
+msgid "Show Oldest First"
+msgstr "Afișează Întâi cele Vechi"
+
+#: ../../mod/photos.php:1255 ../../mod/photos.php:1798
+msgid "View Photo"
+msgstr "Vizualizare Fotografie"
+
+#: ../../mod/photos.php:1290
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permisiune refuzată. Accesul la acest element poate fi restricționat."
+
+#: ../../mod/photos.php:1292
+msgid "Photo not available"
+msgstr "Fotografia nu este disponibilă"
+
+#: ../../mod/photos.php:1348
+msgid "View photo"
+msgstr "Vezi foto"
+
+#: ../../mod/photos.php:1348
+msgid "Edit photo"
+msgstr "Editează  poza"
+
+#: ../../mod/photos.php:1349
+msgid "Use as profile photo"
+msgstr "Utilizați ca și fotografie de profil"
+
+#: ../../mod/photos.php:1374
+msgid "View Full Size"
+msgstr "Vizualizați la Dimensiunea Completă"
+
+#: ../../mod/photos.php:1453
+msgid "Tags: "
+msgstr "Etichete:"
+
+#: ../../mod/photos.php:1456
+msgid "[Remove any tag]"
+msgstr "[Elimină orice etichetă]"
+
+#: ../../mod/photos.php:1496
+msgid "Rotate CW (right)"
+msgstr "Rotire spre dreapta"
+
+#: ../../mod/photos.php:1497
+msgid "Rotate CCW (left)"
+msgstr "Rotire spre stânga"
+
+#: ../../mod/photos.php:1499
+msgid "New album name"
+msgstr "Nume Nou Album"
+
+#: ../../mod/photos.php:1502
+msgid "Caption"
+msgstr "Titlu"
+
+#: ../../mod/photos.php:1504
+msgid "Add a Tag"
+msgstr "Adaugă un Tag"
+
+#: ../../mod/photos.php:1508
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Exemplu: @Bob, @Barbara_Jensen, @jim@exemplu.com , #California, #camping"
+
+#: ../../mod/photos.php:1517
+msgid "Private photo"
+msgstr "Poze private"
+
+#: ../../mod/photos.php:1518
+msgid "Public photo"
+msgstr "Poze Publice"
+
+#: ../../mod/photos.php:1540 ../../include/conversation.php:1088
+msgid "Share"
+msgstr "Partajează"
+
+#: ../../mod/photos.php:1804 ../../mod/videos.php:308
+msgid "View Album"
+msgstr "Vezi Album"
+
+#: ../../mod/photos.php:1813
+msgid "Recent Photos"
+msgstr "Poze Recente"
+
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Niciun profil"
+
+#: ../../mod/register.php:100
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Înregistrarea s-a efectuat cu succes. Vă rugăm să vă verificaţi e-mailul pentru instrucţiuni suplimentare."
+
+#: ../../mod/register.php:104
+msgid "Failed to send email message. Here is the message that failed."
+msgstr "Eșec la trimiterea mesajului de email. Acesta este mesajul care a eşuat."
+
+#: ../../mod/register.php:109
+msgid "Your registration can not be processed."
+msgstr "Înregistrarea dvs. nu poate fi procesată."
+
+#: ../../mod/register.php:149
+#, php-format
+msgid "Registration request at %s"
+msgstr "Solicitare de înregistrare la %s"
+
+#: ../../mod/register.php:158
+msgid "Your registration is pending approval by the site owner."
+msgstr "Înregistrarea dvs. este în aşteptarea aprobării de către deținătorul site-ului."
+
+#: ../../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 "Acest site a depăşit numărul zilnic permis al înregistrărilor de conturi. Vă rugăm să reîncercați mâine."
+
+#: ../../mod/register.php:224
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Puteți (opțional) să completaţi acest formular prin intermediul OpenID, introducând contul dvs. OpenID și apăsând pe 'Înregistrare'."
+
+#: ../../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 "Dacă nu sunteţi familiarizați cu OpenID, vă rugăm să lăsaţi acest câmp gol iar apoi să completaţi restul elementelor."
+
+#: ../../mod/register.php:226
+msgid "Your OpenID (optional): "
+msgstr "Contul dvs. OpenID (opţional):"
+
+#: ../../mod/register.php:240
+msgid "Include your profile in member directory?"
+msgstr "Includeți profilul dvs în directorul de membru?"
+
+#: ../../mod/register.php:261
+msgid "Membership on this site is by invitation only."
+msgstr "Aderare pe acest site, este posibilă doar pe bază de invitație."
+
+#: ../../mod/register.php:262
+msgid "Your invitation ID: "
+msgstr "ID invitaţiei dvs:"
+
+#: ../../mod/register.php:273
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Numele Complet (de ex. Joe Smith):"
+
+#: ../../mod/register.php:274
+msgid "Your Email Address: "
+msgstr "Adresa dvs de mail:"
+
+#: ../../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 "Alegeţi un pseudonim de profil. Aceasta trebuie să înceapă cu un caracter text. Adresa profilului dvs. de pe acest site va fi de forma '<strong>pseudonim@$sitename</strong>'."
+
+#: ../../mod/register.php:276
+msgid "Choose a nickname: "
+msgstr "Alegeţi un pseudonim:"
+
+#: ../../mod/register.php:279 ../../boot.php:1136 ../../include/nav.php:108
+msgid "Register"
+msgstr "Înregistrare"
+
+#: ../../mod/register.php:285 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Import"
+
+#: ../../mod/register.php:286
+msgid "Import your profile to this friendica instance"
+msgstr "Importați profilul dvs. în această instanță friendica"
+
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
+msgstr "Nici-un cont valid găsit."
+
+#: ../../mod/lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "Solicitarea de Resetare Parolă a fost emisă. Verificați-vă emailul."
+
+#: ../../mod/lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Solicitarea de resetare a parolei a fost făcută la %s"
+
+#: ../../mod/lostpass.php:66
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Solicitarea nu se poate verifica. (Este posibil să fi solicitat-o anterior.) Resetarea parolei a eșuat."
+
+#: ../../mod/lostpass.php:84 ../../boot.php:1175
+msgid "Password Reset"
+msgstr "Resetare Parolă"
+
+#: ../../mod/lostpass.php:85
+msgid "Your password has been reset as requested."
+msgstr "Parola a fost resetată conform solicitării."
+
+#: ../../mod/lostpass.php:86
+msgid "Your new password is"
+msgstr "Noua dvs. parolă este"
+
+#: ../../mod/lostpass.php:87
+msgid "Save or copy your new password - and then"
+msgstr "Salvați sau copiați noua dvs. parolă - şi apoi"
+
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
+msgstr "click aici pentru logare"
+
+#: ../../mod/lostpass.php:89
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Parola poate fi schimbată din pagina de <em>Configurări</em> după autentificarea cu succes."
+
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Parola dumneavoastră a fost schimbată la %s"
+
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Ați uitat Parola?"
+
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Introduceţi adresa dumneavoastră de email şi trimiteți-o pentru a vă reseta parola. Apoi verificaţi-vă emailul pentru instrucţiuni suplimentare."
+
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
+msgstr "Pseudonim sau Email:"
+
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Reset"
+
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Sistemul este suspendat pentru întreținere"
+
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Elementul nu este disponibil."
+
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Element negăsit."
+
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Aplicații"
+
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Nu există aplicații instalate."
+
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Ajutor:"
+
+#: ../../mod/help.php:84 ../../include/nav.php:113
+msgid "Help"
+msgstr "Ajutor"
+
+#: ../../mod/contacts.php:104
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d contact editat."
+msgstr[1] "%d contacte editate."
+msgstr[2] "%d de contacte editate."
+
+#: ../../mod/contacts.php:135 ../../mod/contacts.php:264
+msgid "Could not access contact record."
+msgstr "Nu se poate accesa registrul contactului."
+
+#: ../../mod/contacts.php:149
+msgid "Could not locate selected profile."
+msgstr "Nu se poate localiza profilul selectat."
+
+#: ../../mod/contacts.php:178
+msgid "Contact updated."
+msgstr "Contact actualizat."
+
+#: ../../mod/contacts.php:278
+msgid "Contact has been blocked"
+msgstr "Contactul a fost blocat"
+
+#: ../../mod/contacts.php:278
+msgid "Contact has been unblocked"
+msgstr "Contactul a fost deblocat"
+
+#: ../../mod/contacts.php:288
+msgid "Contact has been ignored"
+msgstr "Contactul a fost ignorat"
+
+#: ../../mod/contacts.php:288
+msgid "Contact has been unignored"
+msgstr "Contactul a fost neignorat"
+
+#: ../../mod/contacts.php:299
+msgid "Contact has been archived"
+msgstr "Contactul a fost arhivat"
+
+#: ../../mod/contacts.php:299
+msgid "Contact has been unarchived"
+msgstr "Contactul a fost dezarhivat"
+
+#: ../../mod/contacts.php:324 ../../mod/contacts.php:697
+msgid "Do you really want to delete this contact?"
+msgstr "Sigur doriți să ștergeți acest contact?"
+
+#: ../../mod/contacts.php:341
+msgid "Contact has been removed."
+msgstr "Contactul a fost înlăturat."
+
+#: ../../mod/contacts.php:379
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Sunteţi prieten comun cu %s"
+
+#: ../../mod/contacts.php:383
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Împărtășiți cu %s"
+
+#: ../../mod/contacts.php:388
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s împărtăşeşte cu dvs."
+
+#: ../../mod/contacts.php:405
+msgid "Private communications are not available for this contact."
+msgstr "Comunicaţiile private nu sunt disponibile pentru acest contact."
+
+#: ../../mod/contacts.php:412
+msgid "(Update was successful)"
+msgstr "(Actualizare a reuşit)"
+
+#: ../../mod/contacts.php:412
+msgid "(Update was not successful)"
+msgstr "(Actualizare nu a reuşit)"
+
+#: ../../mod/contacts.php:414
+msgid "Suggest friends"
+msgstr "Sugeraţi prieteni"
+
+#: ../../mod/contacts.php:418
+#, php-format
+msgid "Network type: %s"
+msgstr "Tipul rețelei: %s"
+
+#: ../../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 în comun"
+msgstr[1] "%d contacte în comun"
+msgstr[2] "%d de contacte în comun"
+
+#: ../../mod/contacts.php:426
+msgid "View all contacts"
+msgstr "Vezi toate contactele"
+
+#: ../../mod/contacts.php:434
+msgid "Toggle Blocked status"
+msgstr "Comutare status Blocat"
+
+#: ../../mod/contacts.php:437 ../../mod/contacts.php:491
+#: ../../mod/contacts.php:701
+msgid "Unignore"
+msgstr "Anulare ignorare"
+
+#: ../../mod/contacts.php:440
+msgid "Toggle Ignored status"
+msgstr "Comutaţi status Ignorat"
+
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
+msgid "Unarchive"
+msgstr "Dezarhivează"
+
+#: ../../mod/contacts.php:444 ../../mod/contacts.php:702
+msgid "Archive"
+msgstr "Arhivează"
+
+#: ../../mod/contacts.php:447
+msgid "Toggle Archive status"
+msgstr "Comutaţi status Arhivat"
+
+#: ../../mod/contacts.php:450
+msgid "Repair"
+msgstr "Repară"
+
+#: ../../mod/contacts.php:453
+msgid "Advanced Contact Settings"
+msgstr "Configurări Avansate Contacte"
+
+#: ../../mod/contacts.php:459
+msgid "Communications lost with this contact!"
+msgstr "S-a pierdut conexiunea cu acest contact!"
+
+#: ../../mod/contacts.php:462
+msgid "Contact Editor"
+msgstr "Editor Contact"
+
+#: ../../mod/contacts.php:465
+msgid "Profile Visibility"
+msgstr "Vizibilitate Profil"
+
+#: ../../mod/contacts.php:466
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Vă rugăm să alegeţi profilul pe care doriţi să îl afişaţi pentru %s când acesta vă vizitează profuilul în mod securizat."
+
+#: ../../mod/contacts.php:467
+msgid "Contact Information / Notes"
+msgstr "Informaţii de Contact / Note"
+
+#: ../../mod/contacts.php:468
+msgid "Edit contact notes"
+msgstr "Editare note de contact"
+
+#: ../../mod/contacts.php:474
+msgid "Block/Unblock contact"
+msgstr "Blocare/Deblocare contact"
+
+#: ../../mod/contacts.php:475
+msgid "Ignore contact"
+msgstr "Ignorare contact"
+
+#: ../../mod/contacts.php:476
+msgid "Repair URL settings"
+msgstr "Remediere configurări URL"
+
+#: ../../mod/contacts.php:477
+msgid "View conversations"
+msgstr "Vizualizaţi conversaţii"
+
+#: ../../mod/contacts.php:479
+msgid "Delete contact"
+msgstr "Şterge contact"
+
+#: ../../mod/contacts.php:483
+msgid "Last update:"
+msgstr "Ultima actualizare:"
+
+#: ../../mod/contacts.php:485
+msgid "Update public posts"
+msgstr "Actualizare postări publice"
+
+#: ../../mod/contacts.php:494
+msgid "Currently blocked"
+msgstr "Blocat în prezent"
+
+#: ../../mod/contacts.php:495
+msgid "Currently ignored"
+msgstr "Ignorat în prezent"
+
+#: ../../mod/contacts.php:496
+msgid "Currently archived"
+msgstr "Arhivat în prezent"
+
+#: ../../mod/contacts.php:497
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Răspunsurile/aprecierile pentru postările dvs. publice <strong>ar putea</strong> fi încă vizibile"
+
+#: ../../mod/contacts.php:498
+msgid "Notification for new posts"
+msgstr "Notificare de postări noi"
+
+#: ../../mod/contacts.php:498
+msgid "Send a notification of every new post of this contact"
+msgstr "Trimiteți o notificare despre fiecare postare nouă a acestui contact"
+
+#: ../../mod/contacts.php:499
+msgid "Fetch further information for feeds"
+msgstr "Preluare informaţii suplimentare pentru fluxuri"
+
+#: ../../mod/contacts.php:550
+msgid "Suggestions"
+msgstr "Sugestii"
+
+#: ../../mod/contacts.php:553
+msgid "Suggest potential friends"
+msgstr "Sugeraţi prieteni potențiali"
+
+#: ../../mod/contacts.php:556 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Toate Contactele"
+
+#: ../../mod/contacts.php:559
+msgid "Show all contacts"
+msgstr "Afişează toate contactele"
+
+#: ../../mod/contacts.php:562
+msgid "Unblocked"
+msgstr "Deblocat"
+
+#: ../../mod/contacts.php:565
+msgid "Only show unblocked contacts"
+msgstr "Se afişează numai contactele deblocate"
+
+#: ../../mod/contacts.php:569
+msgid "Blocked"
+msgstr "Blocat"
+
+#: ../../mod/contacts.php:572
+msgid "Only show blocked contacts"
+msgstr "Se afişează numai contactele blocate"
+
+#: ../../mod/contacts.php:576
+msgid "Ignored"
+msgstr "Ignorat"
+
+#: ../../mod/contacts.php:579
+msgid "Only show ignored contacts"
+msgstr "Se afişează numai contactele ignorate"
+
+#: ../../mod/contacts.php:583
+msgid "Archived"
+msgstr "Arhivat"
+
+#: ../../mod/contacts.php:586
+msgid "Only show archived contacts"
+msgstr "Se afişează numai contactele arhivate"
+
+#: ../../mod/contacts.php:590
+msgid "Hidden"
+msgstr "Ascuns"
+
+#: ../../mod/contacts.php:593
+msgid "Only show hidden contacts"
+msgstr "Se afişează numai contactele ascunse"
+
+#: ../../mod/contacts.php:641
+msgid "Mutual Friendship"
+msgstr "Prietenie Reciprocă"
+
+#: ../../mod/contacts.php:645
+msgid "is a fan of yours"
+msgstr "este fanul  dvs."
+
+#: ../../mod/contacts.php:649
+msgid "you are a fan of"
+msgstr "sunteţi un fan al"
+
+#: ../../mod/contacts.php:688 ../../view/theme/diabook/theme.php:125
+#: ../../include/nav.php:173
+msgid "Contacts"
+msgstr "Contacte"
+
+#: ../../mod/contacts.php:692
+msgid "Search your contacts"
+msgstr "Căutare contacte"
+
+#: ../../mod/contacts.php:693 ../../mod/directory.php:59
+msgid "Finding: "
+msgstr "Găsire:"
+
+#: ../../mod/contacts.php:694 ../../mod/directory.php:61
+#: ../../include/contact_widgets.php:33
+msgid "Find"
+msgstr "Căutare"
+
+#: ../../mod/contacts.php:699 ../../mod/settings.php:132
+#: ../../mod/settings.php:635
+msgid "Update"
+msgstr "Actualizare"
+
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Nici-un clip video selectat"
+
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Clipuri video recente"
+
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Încărcaţi Clipuri Video Noi"
+
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Prieteni Comuni"
+
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Nici-un contact în comun"
+
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Contact addăugat"
+
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Mutaţi contul"
+
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr "Puteţi importa un cont dintr-un alt server Friendica."
+
+#: ../../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 "Trebuie să vă exportați contul din vechiul server şi să-l încărcaţi aici. Vă vom recrea vechiul cont, aici cu toate contactele sale. Vom încerca de altfel să vă informăm prietenii că v-ați mutat aici."
+
+#: ../../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 "Această caracteristică este experimentală. Nu putem importa contactele din reţeaua OStatus (statusnet/identi.ca) sau din Diaspora"
+
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "Fişier Cont"
+
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "Pentru a vă exporta contul, deplasaţi-vă la  \"Configurări- >Export date personale \" şi selectaţi  \"Exportare cont \""
+
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s urmărește %3$s postată %2$s"
+
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Prieteni cu %s"
+
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Nici-un prieten de afișat."
+
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Etichetă eliminată"
+
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Eliminați Eticheta Elementului"
+
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Selectați o etichetă de eliminat:"
+
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133
+msgid "Remove"
+msgstr "Eliminare"
+
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Bun Venit la Friendica"
+
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Lista de Verificare Membrii Noi"
+
+#: ../../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 "Dorim să vă oferim câteva sfaturi şi legături pentru a vă ajuta să aveți o experienţă cât mai plăcută. Apăsați pe orice element pentru a vizita pagina relevantă. O legătură către această pagină va fi vizibilă de pe pagina principală, pentru două săptămâni după înregistrarea dvs. iniţială, iar apoi va dispare în tăcere."
+
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Noțiuni de Bază"
+
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Ghidul de Prezentare Friendica"
+
+#: ../../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 "Pe pagina dvs. de <em>Pornire Rapidă</em>  - veți găsi o scurtă introducere pentru profilul dvs. şi pentru filele de reţea, veți face câteva conexiuni noi, şi veți găsi câteva grupuri la care să vă alăturați."
+
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Mergeți la Configurări"
+
+#: ../../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 "Din pagina dvs. de <em>Configurări</em> - schimbaţi-vă parola iniţială. De asemenea creați o notă pentru Adresa dvs. de Identificare. Aceasta arată exact ca o adresă de email - şi va fi utilă la stabilirea de prietenii pe rețeaua socială web gratuită."
+
+#: ../../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 "Revizuiți celelalte configurări, în special configurările de confidenţialitate. O listă de directoare nepublicate este ca și cum ați avea un număr de telefon necatalogat. În general, ar trebui probabil să vă publicați lista - cu excepţia cazului în care toți prietenii şi potenţialii prieteni, știu exact cum să vă găsească."
+
+#: ../../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 "Încărcare Fotografie Profil"
+
+#: ../../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 "Încărcaţi o fotografie de profil, dacă nu aţi făcut-o deja.Studiile au arătat că, pentru persoanele cu fotografiile lor reale, există de zece ori mai multe şanse să-și facă prieteni, decât cei care nu folosesc fotografii reale."
+
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Editare 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 "Editaţi-vă profilul <strong>Implicit</strong> după bunul plac. Revizuiți configurările pentru a ascunde lista dvs. de prieteni și pentru ascunderea profilului dvs., de vizitatorii necunoscuți."
+
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Cuvinte-Cheie Profil"
+
+#: ../../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 "Stabiliți câteva cuvinte-cheie publice pentru profilul dvs. implicit, cuvinte ce descriu cel mai bine interesele dvs. Vom putea astfel găsi alte persoane cu interese similare și vă vom sugera prietenia lor."
+
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Conectare"
+
+#: ../../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 "Autorizați Conectorul Facebook dacă dețineți în prezent un cont pe Facebook, şi vom importa (opțional) toți prietenii și toate conversațiile de pe Facebook."
+
+#: ../../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>Dacă</em> aceasta este propriul dvs. server, instalarea suplimentului Facebook, vă poate uşura tranziţia la reţeaua socială web gratuită."
+
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importare Email-uri"
+
+#: ../../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 "Introduceţi informațiile dvs. de acces la email adresa de email, în pagina dvs. de Configurări Conector, dacă doriți să importați și să interacționați cu prietenii sau cu listele de email din  Căsuța dvs. de Mesaje Primite."
+
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Dute la pagina ta Contacte "
+
+#: ../../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 "Pagina dvs. de Contact este poarta dvs. de acces către administrarea prieteniilor şi pentru conectarea cu prietenii din alte rețele. În general, introduceți adresa lor sau URL-ul către site, folosind dialogul <em>Adăugare Contact Nou</em>."
+
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Mergeţi la Directorul Site-ului"
+
+#: ../../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 "Pagina Directorului vă permite să găsiţi alte persoane în această reţea sau în alte site-uri asociate. Căutaţi o legătură de <em>Conectare</em> sau <em>Urmărire</em> pe pagina lor de profil. Oferiți propria dvs. Adresă de Identitate dacă se solicită."
+
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Găsire Persoane Noi"
+
+#: ../../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 "Pe panoul lateral al paginii Contacte sunt câteva unelte utile pentru a găsi noi prieteni. Putem asocia persoanele după interese, căuta persoane după nume sau interes, şi vă putem oferi sugestii bazate pe relaţiile din reţea. Pe un site nou-nouț, sugestiile de prietenie vor începe în mod normal să fie populate în termen de 24 de ore."
+
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Groupuri"
+
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Grupați-vă Contactele"
+
+#: ../../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 "Odată ce v-aţi făcut unele prietenii, organizaţi-le în grupuri de conversaţii private din bara laterală a paginii dvs. de Contact  şi apoi puteţi interacționa, privat cu fiecare grup pe pagina dumneavoastră de Reţea."
+
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "De ce nu sunt Postările Mele Publice?"
+
+#: ../../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 vă respectă confidenţialitatea. Implicit, postările dvs. vor fi afişate numai persoanelor pe care le-ați adăugat ca și prieteni. Pentru mai multe informaţii, consultaţi secţiunea de asistenţă din legătura de mai sus."
+
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Obţinerea de Ajutor"
+
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Navigați la Secțiunea Ajutor"
+
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Paginile noastre de <strong>ajutor</strong> pot fi consultate pentru detalii, prin alte funcții şi resurse de program."
+
+#: ../../mod/search.php:21 ../../mod/network.php:179
+msgid "Remove term"
+msgstr "Eliminare termen"
+
+#: ../../mod/search.php:30 ../../mod/network.php:188
+#: ../../include/features.php:42
+msgid "Saved Searches"
+msgstr "Căutări Salvate"
+
+#: ../../mod/search.php:99 ../../include/text.php:951
+#: ../../include/text.php:952 ../../include/nav.php:118
+msgid "Search"
+msgstr "Căutare"
+
+#: ../../mod/search.php:170 ../../mod/search.php:196
+#: ../../mod/community.php:62 ../../mod/community.php:89
+msgid "No results."
+msgstr "Nici-un rezultat."
+
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Limita totală a invitațiilor a fost depăşită."
+
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Nu este o adresă vaildă de email."
+
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Vă rugăm să veniți alături de noi pe Friendica"
+
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limita invitațiilor a fost depăşită. Vă rugăm să vă contactați administratorul de sistem."
+
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Livrarea mesajului a eşuat."
+
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d mesaj trimis."
+msgstr[1] "%d mesaje trimise."
+msgstr[2] "%d de mesaje trimise."
+
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Nu mai aveți invitaţii disponibile"
+
+#: ../../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 "Vizitaţi %s pentru o lista de site-uri publice la care puteţi alătura. Membrii Friendica de pe alte site-uri se pot conecta cu toții între ei, precum şi cu membri ai multor alte reţele sociale."
+
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Pentru a accepta această invitaţie, vă rugăm să vizitaţi şi să vă înregistraţi pe %s sau orice alt site public Friendica."
+
+#: ../../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 "Toate site-urile Friendica sunt interconectate pentru a crea o imensă rețea socială cu o confidențialitate sporită, ce este deținută și controlată de către membrii săi. Aceștia se pot conecta, de asemenea, cu multe rețele sociale tradiționale. Vizitaţi %s pentru o lista de site-uri alternative Friendica în care vă puteţi alătura."
+
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Ne cerem scuze. Acest sistem nu este configurat în prezent pentru conectarea cu alte site-uri publice sau pentru a invita membrii."
+
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Trimiteți invitaţii"
+
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Introduceţi adresele de email, una pe linie:"
+
+#: ../../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 "Vă invit cordial să vă alăturați mie, si altor prieteni apropiați, pe Friendica - şi să ne ajutați să creăm o rețea socială mai bună."
+
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Va fi nevoie să furnizați acest cod de invitaţie:  $invite_code"
+
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Odată ce v-aţi înregistrat, vă rog să vă conectaţi cu mine prin pagina mea de profil de la:"
+
+#: ../../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 "Pentru mai multe informaţii despre proiectul Friendica, şi de ce credem că este important, vă rugăm să vizitaţi http://friendica.com"
+
+#: ../../mod/settings.php:41
+msgid "Additional features"
+msgstr "Caracteristici suplimentare"
+
+#: ../../mod/settings.php:46
+msgid "Display"
+msgstr "Afișare"
+
+#: ../../mod/settings.php:52 ../../mod/settings.php:775
+msgid "Social Networks"
+msgstr "Rețele Sociale"
+
+#: ../../mod/settings.php:62 ../../include/nav.php:167
+msgid "Delegations"
+msgstr "Delegații"
+
+#: ../../mod/settings.php:67
+msgid "Connected apps"
+msgstr "Aplicații Conectate"
+
+#: ../../mod/settings.php:72 ../../mod/uexport.php:85
+msgid "Export personal data"
+msgstr "Exportare date personale"
+
+#: ../../mod/settings.php:77
+msgid "Remove account"
+msgstr "Ștergere cont"
+
+#: ../../mod/settings.php:129
+msgid "Missing some important data!"
+msgstr "Lipsesc unele date importante!"
+
+#: ../../mod/settings.php:238
+msgid "Failed to connect with email account using the settings provided."
+msgstr "A eşuat conectarea cu, contul de email, folosind configurările furnizate."
+
+#: ../../mod/settings.php:243
+msgid "Email settings updated."
+msgstr "Configurările de email au fost actualizate."
+
+#: ../../mod/settings.php:258
+msgid "Features updated"
+msgstr "Caracteristici actualizate"
+
+#: ../../mod/settings.php:319
+msgid "Relocate message has been send to your contacts"
+msgstr "Mesajul despre mutare, a fost trimis către contactele dvs."
+
+#: ../../mod/settings.php:333
+msgid "Passwords do not match. Password unchanged."
+msgstr "Parolele nu coincid. Parolă neschimbată."
+
+#: ../../mod/settings.php:338
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Parolele necompletate nu sunt permise. Parolă neschimbată."
+
+#: ../../mod/settings.php:346
+msgid "Wrong password."
+msgstr "Parolă greșită."
+
+#: ../../mod/settings.php:357
+msgid "Password changed."
+msgstr "Parola a fost schimbată."
+
+#: ../../mod/settings.php:359
+msgid "Password update failed. Please try again."
+msgstr "Actualizarea parolei a eșuat. Vă rugăm să reîncercați."
+
+#: ../../mod/settings.php:424
+msgid " Please use a shorter name."
+msgstr "Vă rugăm să utilizaţi un nume mai scurt."
+
+#: ../../mod/settings.php:426
+msgid " Name too short."
+msgstr "Numele este prea scurt."
+
+#: ../../mod/settings.php:435
+msgid "Wrong Password"
+msgstr "Parolă Greșită"
+
+#: ../../mod/settings.php:440
+msgid " Not valid email."
+msgstr "Nu este un email valid."
+
+#: ../../mod/settings.php:446
+msgid " Cannot change to that email."
+msgstr "Nu poate schimba cu acest email."
+
+#: ../../mod/settings.php:501
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr "Forumul privat nu are permisiuni de confidenţialitate. Se folosește confidențialitatea implicită de grup."
+
+#: ../../mod/settings.php:505
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr "Forumul Privat nu are permisiuni de confidenţialitate şi nici o confidențialitate implicită de grup."
+
+#: ../../mod/settings.php:535
+msgid "Settings updated."
+msgstr "Configurări actualizate."
+
+#: ../../mod/settings.php:608 ../../mod/settings.php:634
+#: ../../mod/settings.php:670
+msgid "Add application"
+msgstr "Adăugare aplicaţie"
+
+#: ../../mod/settings.php:612 ../../mod/settings.php:638
+msgid "Consumer Key"
+msgstr "Cheia Utilizatorului"
+
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
+msgid "Consumer Secret"
+msgstr "Cheia Secretă a Utilizatorului"
+
+#: ../../mod/settings.php:614 ../../mod/settings.php:640
+msgid "Redirect"
+msgstr "Redirecţionare"
+
+#: ../../mod/settings.php:615 ../../mod/settings.php:641
+msgid "Icon url"
+msgstr "URL pictogramă"
+
+#: ../../mod/settings.php:626
+msgid "You can't edit this application."
+msgstr "Nu puteți edita această aplicaţie."
+
+#: ../../mod/settings.php:669
+msgid "Connected Apps"
+msgstr "Aplicații Conectate"
+
+#: ../../mod/settings.php:673
+msgid "Client key starts with"
+msgstr "Cheia clientului începe cu"
+
+#: ../../mod/settings.php:674
+msgid "No name"
+msgstr "Fără nume"
+
+#: ../../mod/settings.php:675
+msgid "Remove authorization"
+msgstr "Eliminare autorizare"
+
+#: ../../mod/settings.php:687
+msgid "No Plugin settings configured"
+msgstr "Nici-o configurare stabilită pentru modul"
+
+#: ../../mod/settings.php:695
+msgid "Plugin Settings"
+msgstr "Configurări Modul"
+
+#: ../../mod/settings.php:709
+msgid "Off"
+msgstr "Off"
+
+#: ../../mod/settings.php:709
+msgid "On"
+msgstr "On"
+
+#: ../../mod/settings.php:717
+msgid "Additional Features"
+msgstr "Caracteristici Suplimentare"
+
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Suportul încorporat pentru conectivitatea %s este %s"
+
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
+msgid "enabled"
+msgstr "activat"
+
+#: ../../mod/settings.php:731 ../../mod/settings.php:732
+msgid "disabled"
+msgstr "dezactivat"
+
+#: ../../mod/settings.php:732
+msgid "StatusNet"
+msgstr "StatusNet"
+
+#: ../../mod/settings.php:768
+msgid "Email access is disabled on this site."
+msgstr "Accesul de email este dezactivat pe acest site."
+
+#: ../../mod/settings.php:780
+msgid "Email/Mailbox Setup"
+msgstr "Configurare E-Mail/Căsuță poştală"
+
+#: ../../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 "Dacă doriţi să comunicaţi cu contactele de email folosind acest serviciu (opţional), vă rugăm să precizaţi cum doriți să vă conectaţi la căsuța dvs. poştală."
+
+#: ../../mod/settings.php:782
+msgid "Last successful email check:"
+msgstr "Ultima verificare, cu succes, a email-ului:"
+
+#: ../../mod/settings.php:784
+msgid "IMAP server name:"
+msgstr "Nume server IMAP:"
+
+#: ../../mod/settings.php:785
+msgid "IMAP port:"
+msgstr "IMAP port:"
+
+#: ../../mod/settings.php:786
+msgid "Security:"
+msgstr "Securitate:"
+
+#: ../../mod/settings.php:786 ../../mod/settings.php:791
+msgid "None"
+msgstr "Nimic"
+
+#: ../../mod/settings.php:787
+msgid "Email login name:"
+msgstr "Nume email autentificare:"
+
+#: ../../mod/settings.php:788
+msgid "Email password:"
+msgstr "Parolă de e-mail:"
+
+#: ../../mod/settings.php:789
+msgid "Reply-to address:"
+msgstr "Adresă pentru răspuns:"
+
+#: ../../mod/settings.php:790
+msgid "Send public posts to all email contacts:"
+msgstr "Trimiteți postările publice la toate contactele de email:"
+
+#: ../../mod/settings.php:791
+msgid "Action after import:"
+msgstr "Acţiune după importare:"
+
+#: ../../mod/settings.php:791
+msgid "Mark as seen"
+msgstr "Marcați ca și vizualizat"
+
+#: ../../mod/settings.php:791
+msgid "Move to folder"
+msgstr "Mutare în dosar"
+
+#: ../../mod/settings.php:792
+msgid "Move to folder:"
+msgstr "Mutare în dosarul:"
+
+#: ../../mod/settings.php:870
+msgid "Display Settings"
+msgstr "Preferințe Ecran"
+
+#: ../../mod/settings.php:876 ../../mod/settings.php:890
+msgid "Display Theme:"
+msgstr "Temă Afişaj:"
+
+#: ../../mod/settings.php:877
+msgid "Mobile Theme:"
+msgstr "Temă pentru Mobile:"
+
+#: ../../mod/settings.php:878
+msgid "Update browser every xx seconds"
+msgstr "Actualizare browser la fiecare fiecare xx secunde"
+
+#: ../../mod/settings.php:878
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minim 10 secunde, fără un maxim"
+
+#: ../../mod/settings.php:879
+msgid "Number of items to display per page:"
+msgstr "Numărul de elemente de afişat pe pagină:"
+
+#: ../../mod/settings.php:879 ../../mod/settings.php:880
+msgid "Maximum of 100 items"
+msgstr "Maxim 100 de elemente"
+
+#: ../../mod/settings.php:880
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr "Numărul de elemente de afişat pe pagină atunci când se vizualizează de pe dispozitivul mobil:"
+
+#: ../../mod/settings.php:881
+msgid "Don't show emoticons"
+msgstr "Nu afișa emoticoane"
+
+#: ../../mod/settings.php:882
+msgid "Don't show notices"
+msgstr "Nu afișa notificări"
+
+#: ../../mod/settings.php:883
+msgid "Infinite scroll"
+msgstr "Derulare infinită"
+
+#: ../../mod/settings.php:960
+msgid "User Types"
+msgstr "Tipuri de Utilizator"
+
+#: ../../mod/settings.php:961
+msgid "Community Types"
+msgstr "Tipuri de Comunitare"
+
+#: ../../mod/settings.php:962
+msgid "Normal Account Page"
+msgstr "Pagină de Cont Simplu"
+
+#: ../../mod/settings.php:963
+msgid "This account is a normal personal profile"
+msgstr "Acest cont este un profil personal normal"
+
+#: ../../mod/settings.php:966
+msgid "Soapbox Page"
+msgstr "Pagină Soapbox"
+
+#: ../../mod/settings.php:967
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Aprobă automat toate conexiunile/solicitările de prietenie ca și fani cu drepturi doar pentru vizualizare"
+
+#: ../../mod/settings.php:970
+msgid "Community Forum/Celebrity Account"
+msgstr "Cont Comunitate Forum/Celebritate"
+
+#: ../../mod/settings.php:971
+msgid ""
+"Automatically approve all connection/friend requests as read-write fans"
+msgstr "Aprobă automat toate conexiunile/solicitările de prietenie ca și fani cu drepturi doar pentru vizualizare"
+
+#: ../../mod/settings.php:974
+msgid "Automatic Friend Page"
+msgstr "Pagină Prietenie Automată"
+
+#: ../../mod/settings.php:975
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Aprobă automat toate conexiunile/solicitările de prietenie ca și prieteni"
+
+#: ../../mod/settings.php:978
+msgid "Private Forum [Experimental]"
+msgstr "Forum Privat [Experimental]"
+
+#: ../../mod/settings.php:979
+msgid "Private forum - approved members only"
+msgstr "Forum Privat - numai membrii aprobați"
+
+#: ../../mod/settings.php:991
+msgid "OpenID:"
+msgstr "OpenID:"
+
+#: ../../mod/settings.php:991
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Opţional) Permite acest OpenID să se conecteze la acest cont."
+
+#: ../../mod/settings.php:1001
+msgid "Publish your default profile in your local site directory?"
+msgstr "Publicați profilul dvs. implicit în directorul site-ului dvs. local?"
+
+#: ../../mod/settings.php:1007
+msgid "Publish your default profile in the global social directory?"
+msgstr "Publicați profilul dvs. implicit în directorul social global?"
+
+#: ../../mod/settings.php:1015
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Ascundeţi lista dvs. de contacte/prieteni de vizitatorii profilului dvs. implicit?"
+
+#: ../../mod/settings.php:1019 ../../include/conversation.php:1055
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Ascundeţi detaliile profilului dvs. de vizitatorii necunoscuți?"
+
+#: ../../mod/settings.php:1024
+msgid "Allow friends to post to your profile page?"
+msgstr "Permiteți prietenilor să posteze pe pagina dvs. de profil ?"
+
+#: ../../mod/settings.php:1030
+msgid "Allow friends to tag your posts?"
+msgstr "Permiteți prietenilor să vă eticheteze postările?"
+
+#: ../../mod/settings.php:1036
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Ne permiteți să vă recomandăm ca și potențial prieten pentru membrii noi?"
+
+#: ../../mod/settings.php:1042
+msgid "Permit unknown people to send you private mail?"
+msgstr "Permiteți persoanelor necunoscute să vă trimită mesaje private?"
+
+#: ../../mod/settings.php:1050
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profilul <strong>nu este publicat</strong>."
+
+#: ../../mod/settings.php:1053 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "sau"
+
+#: ../../mod/settings.php:1058
+msgid "Your Identity Address is"
+msgstr "Adresa Dvs. de Identitate este"
+
+#: ../../mod/settings.php:1069
+msgid "Automatically expire posts after this many days:"
+msgstr "Postările vor expira automat după atâtea zile:"
+
+#: ../../mod/settings.php:1069
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Dacă se lasă necompletat, postările nu vor expira. Postările expirate vor fi şterse"
+
+#: ../../mod/settings.php:1070
+msgid "Advanced expiration settings"
+msgstr "Configurări Avansate de Expirare"
+
+#: ../../mod/settings.php:1071
+msgid "Advanced Expiration"
+msgstr "Expirare Avansată"
+
+#: ../../mod/settings.php:1072
+msgid "Expire posts:"
+msgstr "Postările expiră:"
+
+#: ../../mod/settings.php:1073
+msgid "Expire personal notes:"
+msgstr "Notele personale expiră:"
+
+#: ../../mod/settings.php:1074
+msgid "Expire starred posts:"
+msgstr "Postările favorite expiră:"
+
+#: ../../mod/settings.php:1075
+msgid "Expire photos:"
+msgstr "Fotografiile expiră:"
+
+#: ../../mod/settings.php:1076
+msgid "Only expire posts by others:"
+msgstr "Expiră numai postările altora:"
+
+#: ../../mod/settings.php:1102
+msgid "Account Settings"
+msgstr "Configurări Cont"
+
+#: ../../mod/settings.php:1110
+msgid "Password Settings"
+msgstr "Configurări Parolă"
+
+#: ../../mod/settings.php:1111
+msgid "New Password:"
+msgstr "Parola Nouă:"
+
+#: ../../mod/settings.php:1112
+msgid "Confirm:"
+msgstr "Confirm:"
+
+#: ../../mod/settings.php:1112
+msgid "Leave password fields blank unless changing"
+msgstr "Lăsaţi câmpurile, pentru parolă, goale dacă nu doriți să modificați"
+
+#: ../../mod/settings.php:1113
+msgid "Current Password:"
+msgstr "Parola Curentă:"
+
+#: ../../mod/settings.php:1113 ../../mod/settings.php:1114
+msgid "Your current password to confirm the changes"
+msgstr "Parola curentă pentru a confirma modificările"
+
+#: ../../mod/settings.php:1114
+msgid "Password:"
+msgstr "Parola:"
+
+#: ../../mod/settings.php:1118
+msgid "Basic Settings"
+msgstr "Configurări de Bază"
+
+#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15
+msgid "Full Name:"
+msgstr "Nume complet:"
+
+#: ../../mod/settings.php:1120
+msgid "Email Address:"
+msgstr "Adresa de email:"
+
+#: ../../mod/settings.php:1121
+msgid "Your Timezone:"
+msgstr "Fusul dvs. orar:"
+
+#: ../../mod/settings.php:1122
+msgid "Default Post Location:"
+msgstr "Locația Implicită pentru Postări"
+
+#: ../../mod/settings.php:1123
+msgid "Use Browser Location:"
+msgstr "Folosește Locația Navigatorului:"
+
+#: ../../mod/settings.php:1126
+msgid "Security and Privacy Settings"
+msgstr "Configurări de Securitate și Confidențialitate"
+
+#: ../../mod/settings.php:1128
+msgid "Maximum Friend Requests/Day:"
+msgstr "Solicitări de Prietenie, Maxime/Zi"
+
+#: ../../mod/settings.php:1128 ../../mod/settings.php:1158
+msgid "(to prevent spam abuse)"
+msgstr "(Pentru a preveni abuzul de tip spam)"
+
+#: ../../mod/settings.php:1129
+msgid "Default Post Permissions"
+msgstr "Permisiuni Implicite Postări"
+
+#: ../../mod/settings.php:1130
+msgid "(click to open/close)"
+msgstr "(apăsați pentru a deschide/închide)"
+
+#: ../../mod/settings.php:1141
+msgid "Default Private Post"
+msgstr "Postare Privată Implicită"
+
+#: ../../mod/settings.php:1142
+msgid "Default Public Post"
+msgstr "Postare Privată Implicită"
+
+#: ../../mod/settings.php:1146
+msgid "Default Permissions for New Posts"
+msgstr "Permisiuni Implicite pentru Postările Noi"
+
+#: ../../mod/settings.php:1158
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximum de mesaje private pe zi, de la persoanele necunoscute:"
+
+#: ../../mod/settings.php:1161
+msgid "Notification Settings"
+msgstr "Configurări de Notificare"
+
+#: ../../mod/settings.php:1162
+msgid "By default post a status message when:"
+msgstr "Implicit, postează un mesaj de stare atunci când:"
+
+#: ../../mod/settings.php:1163
+msgid "accepting a friend request"
+msgstr "se acceptă o solicitare de prietenie"
+
+#: ../../mod/settings.php:1164
+msgid "joining a forum/community"
+msgstr "se aderă la un forum/o comunitate"
+
+#: ../../mod/settings.php:1165
+msgid "making an <em>interesting</em> profile change"
+msgstr "se face o modificări de profil<em>interesantă</em>"
+
+#: ../../mod/settings.php:1166
+msgid "Send a notification email when:"
+msgstr "Trimiteți o notificare email atunci când:"
+
+#: ../../mod/settings.php:1167
+msgid "You receive an introduction"
+msgstr "Primiți o introducere"
+
+#: ../../mod/settings.php:1168
+msgid "Your introductions are confirmed"
+msgstr "Introducerile dvs. sunt confirmate"
+
+#: ../../mod/settings.php:1169
+msgid "Someone writes on your profile wall"
+msgstr "Cineva scrie pe perete dvs. de profil"
+
+#: ../../mod/settings.php:1170
+msgid "Someone writes a followup comment"
+msgstr "Cineva scrie un comentariu de urmărire"
+
+#: ../../mod/settings.php:1171
+msgid "You receive a private message"
+msgstr "Primiți un mesaj privat"
+
+#: ../../mod/settings.php:1172
+msgid "You receive a friend suggestion"
+msgstr "Primiți  o sugestie de prietenie"
+
+#: ../../mod/settings.php:1173
+msgid "You are tagged in a post"
+msgstr "Sunteți etichetat într-o postare"
+
+#: ../../mod/settings.php:1174
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Sunteți abordat/incitat/etc. într-o postare"
+
+#: ../../mod/settings.php:1177
+msgid "Advanced Account/Page Type Settings"
+msgstr "Configurări Avansate Cont/Tip Pagină"
+
+#: ../../mod/settings.php:1178
+msgid "Change the behaviour of this account for special situations"
+msgstr "Modificați comportamentul acestui cont pentru situațiile speciale"
+
+#: ../../mod/settings.php:1181
+msgid "Relocate"
+msgstr "Mutare"
+
+#: ../../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 "Dacă aţi mutat acest profil dintr-un alt server, şi unele dintre contactele dvs. nu primesc actualizările dvs., încercaţi să apăsați acest buton."
+
+#: ../../mod/settings.php:1183
+msgid "Resend relocate message to contacts"
+msgstr "Retrimiteți contactelor, mesajul despre mutare"
+
+#: ../../mod/display.php:263
+msgid "Item has been removed."
+msgstr "Elementul a fost eliminat."
+
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Căutare Persoane"
+
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Nici-o potrivire"
+
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profilul a fost şters."
+
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profil-"
+
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Profilul nou a fost creat."
+
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Profil indisponibil pentru clonare."
+
+#: ../../mod/profiles.php:170
+msgid "Profile Name is required."
+msgstr "Numele de Profil este necesar."
+
+#: ../../mod/profiles.php:321
+msgid "Marital Status"
+msgstr "Starea Civilă"
+
+#: ../../mod/profiles.php:325
+msgid "Romantic Partner"
+msgstr "Partener Romantic"
+
+#: ../../mod/profiles.php:329
+msgid "Likes"
+msgstr "Likes"
+
+#: ../../mod/profiles.php:333
+msgid "Dislikes"
+msgstr "Antipatii"
+
+#: ../../mod/profiles.php:337
+msgid "Work/Employment"
+msgstr "Loc de Muncă/Slujbă"
+
+#: ../../mod/profiles.php:340
+msgid "Religion"
+msgstr "Religie"
+
+#: ../../mod/profiles.php:344
+msgid "Political Views"
+msgstr "Viziuni Politice"
+
+#: ../../mod/profiles.php:348
+msgid "Gender"
+msgstr "Sex"
+
+#: ../../mod/profiles.php:352
+msgid "Sexual Preference"
+msgstr "Preferinţe Sexuale"
+
+#: ../../mod/profiles.php:356
+msgid "Homepage"
+msgstr "Homepage"
+
+#: ../../mod/profiles.php:360
+msgid "Interests"
+msgstr "Interese"
+
+#: ../../mod/profiles.php:364
+msgid "Address"
+msgstr "Addresă"
+
+#: ../../mod/profiles.php:371
+msgid "Location"
+msgstr "Locaţie"
+
+#: ../../mod/profiles.php:454
+msgid "Profile updated."
+msgstr "Profil actualizat."
+
+#: ../../mod/profiles.php:525
+msgid " and "
+msgstr "şi"
+
+#: ../../mod/profiles.php:533
+msgid "public profile"
+msgstr "profil public"
+
+#: ../../mod/profiles.php:536
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s a modificat %2$s în &ldquo;%3$s&rdquo;"
+
+#: ../../mod/profiles.php:537
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr "- Vizitați %2$s lui %1$s'"
+
+#: ../../mod/profiles.php:540
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s și-a actualizat %2$s, modificând %3$s."
+
+#: ../../mod/profiles.php:613
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Ascundeţi lista dvs. de contacte/prieteni de vizitatorii acestui profil?"
+
+#: ../../mod/profiles.php:633
+msgid "Edit Profile Details"
+msgstr "Editare Detalii Profil"
+
+#: ../../mod/profiles.php:635
+msgid "Change Profile Photo"
+msgstr "Modificați Fotografia de Profil"
+
+#: ../../mod/profiles.php:636
+msgid "View this profile"
+msgstr "Vizualizați acest profil"
+
+#: ../../mod/profiles.php:637
+msgid "Create a new profile using these settings"
+msgstr "Creaţi un profil nou folosind aceste configurări"
+
+#: ../../mod/profiles.php:638
+msgid "Clone this profile"
+msgstr "Clonați acest profil"
+
+#: ../../mod/profiles.php:639
+msgid "Delete this profile"
+msgstr "Ştergeţi acest profil"
+
+#: ../../mod/profiles.php:640
+msgid "Profile Name:"
+msgstr "Nume profil:"
+
+#: ../../mod/profiles.php:641
+msgid "Your Full Name:"
+msgstr "Numele Complet:"
+
+#: ../../mod/profiles.php:642
+msgid "Title/Description:"
+msgstr "Titlu/Descriere"
+
+#: ../../mod/profiles.php:643
+msgid "Your Gender:"
+msgstr "Sexul:"
+
+#: ../../mod/profiles.php:644
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Zi Naştere (%s):"
+
+#: ../../mod/profiles.php:645
+msgid "Street Address:"
+msgstr "Strada:"
+
+#: ../../mod/profiles.php:646
+msgid "Locality/City:"
+msgstr "Localitate/Oraș:"
+
+#: ../../mod/profiles.php:647
+msgid "Postal/Zip Code:"
+msgstr "Cod poștal:"
+
+#: ../../mod/profiles.php:648
+msgid "Country:"
+msgstr "Ţară:"
+
+#: ../../mod/profiles.php:649
+msgid "Region/State:"
+msgstr "Regiunea/Județul:"
+
+#: ../../mod/profiles.php:650
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Stare Civilă:"
+
+#: ../../mod/profiles.php:651
+msgid "Who: (if applicable)"
+msgstr "Cine: (dacă este cazul)"
+
+#: ../../mod/profiles.php:652
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemple: cathy123, Cathy Williams, cathy@example.com"
+
+#: ../../mod/profiles.php:653
+msgid "Since [date]:"
+msgstr "Din [data]:"
+
+#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
+msgstr "Orientare Sexuală:"
+
+#: ../../mod/profiles.php:655
+msgid "Homepage URL:"
+msgstr "Homepage URL:"
+
+#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50
+msgid "Hometown:"
+msgstr "Domiciliu:"
+
+#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54
+msgid "Political Views:"
+msgstr "Viziuni Politice:"
+
+#: ../../mod/profiles.php:658
+msgid "Religious Views:"
+msgstr "Viziuni Religioase:"
+
+#: ../../mod/profiles.php:659
+msgid "Public Keywords:"
+msgstr "Cuvinte cheie Publice:"
+
+#: ../../mod/profiles.php:660
+msgid "Private Keywords:"
+msgstr "Cuvinte cheie Private:"
+
+#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62
+msgid "Likes:"
+msgstr "Îmi place:"
+
+#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
+msgstr "Nu-mi place:"
+
+#: ../../mod/profiles.php:663
+msgid "Example: fishing photography software"
+msgstr "Exemplu: pescuit fotografii software"
+
+#: ../../mod/profiles.php:664
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Utilizat pentru a sugera potențiali prieteni, ce pot fi văzuți de către ceilalți)"
+
+#: ../../mod/profiles.php:665
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Utilizat pentru a căuta profile, niciodată afișat altora)"
+
+#: ../../mod/profiles.php:666
+msgid "Tell us about yourself..."
+msgstr "Spune-ne despre tine ..."
+
+#: ../../mod/profiles.php:667
+msgid "Hobbies/Interests"
+msgstr "Hobby/Interese"
+
+#: ../../mod/profiles.php:668
+msgid "Contact information and Social Networks"
+msgstr "Informaţii de Contact şi Reţele Sociale"
+
+#: ../../mod/profiles.php:669
+msgid "Musical interests"
+msgstr "Preferințe muzicale"
+
+#: ../../mod/profiles.php:670
+msgid "Books, literature"
+msgstr "Cărti, literatură"
+
+#: ../../mod/profiles.php:671
+msgid "Television"
+msgstr "Programe TV"
+
+#: ../../mod/profiles.php:672
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/dans/cultură/divertisment"
+
+#: ../../mod/profiles.php:673
+msgid "Love/romance"
+msgstr "Dragoste/romantism"
+
+#: ../../mod/profiles.php:674
+msgid "Work/employment"
+msgstr "Loc de Muncă/Slujbă"
+
+#: ../../mod/profiles.php:675
+msgid "School/education"
+msgstr "Școală/educație"
+
+#: ../../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 "Acesta este profilul dvs. <strong>public</strong>.<br /> El <strong>poate</strong> fi vizibil pentru oricine folosește internetul."
+
+#: ../../mod/profiles.php:690 ../../mod/directory.php:111
+msgid "Age: "
+msgstr "Vârsta:"
+
+#: ../../mod/profiles.php:729
+msgid "Edit/Manage Profiles"
+msgstr "Editare/Gestionare Profile"
+
+#: ../../mod/profiles.php:730 ../../boot.php:1473 ../../boot.php:1499
+msgid "Change profile photo"
+msgstr "Modificați Fotografia de Profil"
+
+#: ../../mod/profiles.php:731 ../../boot.php:1474
+msgid "Create New Profile"
+msgstr "Creați Profil Nou"
+
+#: ../../mod/profiles.php:742 ../../boot.php:1484
+msgid "Profile Image"
+msgstr "Imagine profil"
+
+#: ../../mod/profiles.php:744 ../../boot.php:1487
+msgid "visible to everybody"
+msgstr "vizibil pentru toata lumea"
+
+#: ../../mod/profiles.php:745 ../../boot.php:1488
+msgid "Edit visibility"
+msgstr "Editare vizibilitate"
+
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "link"
+
+#: ../../mod/uexport.php:77
+msgid "Export account"
+msgstr "Exportare cont"
+
+#: ../../mod/uexport.php:77
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Exportați-vă informațiile contului şi contactele. Utilizaţi aceasta pentru a face o copie de siguranţă a contului dumneavoastră şi/sau pentru a-l muta pe un alt server."
+
+#: ../../mod/uexport.php:78
+msgid "Export all"
+msgstr "Exportare tot"
+
+#: ../../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 "Exportați informațiile dvs. de cont, contactele şi toate elementele dvs., ca json. Ar putea fi un fișier foarte mare, şi ar putea lua mult timp. Utilizaţi aceasta pentru a face un backup complet al contului (fotografiile nu sunt exportate)"
+
+#: ../../mod/ping.php:238
+msgid "{0} wants to be your friend"
+msgstr "{0} doreşte să vă fie prieten"
+
+#: ../../mod/ping.php:243
+msgid "{0} sent you a message"
+msgstr "{0} v-a trimis un mesaj"
+
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr "{0} a solicitat înregistrarea"
+
+#: ../../mod/ping.php:254
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} a comentat la articolul postat de %s"
+
+#: ../../mod/ping.php:259
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} a apreciat articolul postat de %s"
+
+#: ../../mod/ping.php:264
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} nu a apreciat articolul postat de %s"
+
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} este acum prieten cu %s"
+
+#: ../../mod/ping.php:274
+msgid "{0} posted"
+msgstr "{0} a postat"
+
+#: ../../mod/ping.php:279
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} a etichetat articolul postat de %s cu #%s"
+
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
+msgstr "{0} v-a menţionat într-o postare"
+
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Nimic nou aici"
+
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Ştergeţi notificările"
+
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Indisponibil."
+
+#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129
+#: ../../include/nav.php:128
+msgid "Community"
+msgstr "Comunitate"
+
+#: ../../mod/filer.php:30 ../../include/conversation.php:1004
+#: ../../include/conversation.php:1022
+msgid "Save to Folder:"
+msgstr "Salvare în Dosar:"
+
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- selectare -"
+
+#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954
+msgid "Save"
+msgstr "Salvare"
+
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Ne pare rău, este posibil ca fișierul pe care doriți să-l încărcați, este mai mare decât permite configuraţia PHP"
+
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "Sau - ați încercat să încărcaţi un fişier gol?"
+
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Fişierul depăşeşte dimensiunea limită de %d"
+
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Încărcarea fișierului a eşuat."
+
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Identificator profil, invalid."
+
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Editor Vizibilitate Profil"
+
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
+msgstr "Apăsați pe un contact pentru a-l adăuga sau elimina."
+
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Vizibil Pentru"
+
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Toate Contactele (cu acces profil securizat)"
+
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Sigur doriți să ștergeți acesta sugestie?"
+
+#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527
+#: ../../include/contact_widgets.php:34
+msgid "Friend Suggestions"
+msgstr "Sugestii de Prietenie"
+
+#: ../../mod/suggest.php:72
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Nici-o sugestie disponibilă. Dacă aceasta este un site nou, vă rugăm să încercaţi din nou în 24 de ore."
+
+#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1445
+#: ../../include/contact_widgets.php:9
+msgid "Connect"
+msgstr "Conectare"
+
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "Ignorare/Ascundere"
+
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Accesul interzis."
+
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s îi urează bun venit lui %2$s"
+
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Administrare Identităţii şi/sau Pagini"
+
+#: ../../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 "Comutați între diferitele identităţi sau pagini de comunitate/grup, care împărtășesc detaliile contului dvs. sau pentru care v-au fost acordate drepturi de  \"gestionare \""
+
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Selectaţi o identitate de gestionat:"
+
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Nici-un delegat potenţial de pagină, nu a putut fi localizat."
+
+#: ../../mod/delegate.php:124 ../../include/nav.php:167
+msgid "Delegate Page Management"
+msgstr "Delegare Gestionare Pagină"
+
+#: ../../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 "Delegații sunt capabili să gestioneze toate aspectele acestui cont/pagină, cu excepţia configurărilor de bază ale contului. Vă rugăm să nu vă delegați, contul dvs. personal, cuiva în care nu aveţi încredere deplină."
+
+#: ../../mod/delegate.php:127
+msgid "Existing Page Managers"
+msgstr "Gestionari Existenți Pagină"
+
+#: ../../mod/delegate.php:129
+msgid "Existing Page Delegates"
+msgstr "Delegați Existenți Pagină"
+
+#: ../../mod/delegate.php:131
+msgid "Potential Delegates"
+msgstr "Potenţiali Delegaţi"
+
+#: ../../mod/delegate.php:134
+msgid "Add"
+msgstr "Adăugare"
+
+#: ../../mod/delegate.php:135
+msgid "No entries."
+msgstr "Nu există intrări."
+
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "Nici-un contact."
+
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:874
+msgid "View Contacts"
+msgstr "Vezi Contacte"
+
+#: ../../mod/notes.php:44 ../../boot.php:2010
+msgid "Personal Notes"
+msgstr "Note Personale"
+
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Abordare/Atragerea atenției"
+
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "abordați, atrageți atenția sau faceți alte lucruri cuiva"
+
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Destinatar"
+
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Alegeți ce doriți să faceți cu destinatarul"
+
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Faceți acest articol privat"
+
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:525
+msgid "Global Directory"
+msgstr "Director Global"
+
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "Căutați pe acest site"
+
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "Director Site"
+
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "Sex:"
+
+#: ../../mod/directory.php:136 ../../boot.php:1515
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Sex:"
+
+#: ../../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 "Despre:"
+
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr "Fără înregistrări (unele înregistrări pot fi ascunse)."
+
+#: ../../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/localtime.php:24
+msgid "Time Conversion"
+msgstr "Conversie Oră"
+
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica oferă acest serviciu pentru partajarea evenimentelor cu alte rețele și prieteni, în zonele cu fusuri orare necunoscute.\\v"
+
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "Fus orar UTC: %s"
+
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Fusul orar curent: %s"
+
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Ora locală convertită: %s"
+
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Vă rugăm să vă selectaţi fusul orar:"
+
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Postat cu succes."
+
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Imaginea a fost încărcată, dar decuparea imaginii a eşuat."
+
+#: ../../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 "Reducerea dimensiunea imaginii [%s] a eşuat."
+
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Apăsați pe Shift și pe Reîncărcare Pagină sau ştergeţi memoria cache a browser-ului, dacă noua fotografie nu se afişează imediat."
+
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Nu s-a putut procesa imaginea."
+
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Încărcare Fișier:"
+
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Selectați un profil:"
+
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Încărcare"
+
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "omiteți acest pas"
+
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "selectaţi o fotografie din albumele dvs. foto"
+
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Decupare Imagine"
+
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Vă rugăm să ajustaţi decuparea imaginii pentru o vizualizare optimă."
+
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Editare Realizată"
+
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Imaginea a fost încărcată cu succes"
+
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Serverul de Comunicații Friendica - Instalare"
+
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Nu se poate face conectarea cu baza de date."
+
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Nu se poate crea tabelul."
+
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "Baza dvs. de date Friendica, a fost instalată."
+
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Este posibil să fie nevoie să importați manual fişierul \"database.sql\" folosind phpmyadmin sau mysql."
+
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:521
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Vă rugăm să consultaţi fişierul  \"INSTALL.txt\"."
+
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Verificare sistem"
+
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Reverificare"
+
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Conexiunea cu baza de date"
+
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Pentru a instala Friendica trebuie să știm cum să vă conectaţi la baza dumneavoastră de date."
+
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Vă rugăm să vă contactaţi furnizorul găzduirii sau administratorul de site dacă aveţi întrebări despre aceste configurări."
+
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Baza de date specificată mai jos ar trebui să existe deja. Dacă nu, vă rugăm s-o creați înainte de a continua."
+
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Nume Server Bază de date"
+
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Nume Autentificare Bază de date"
+
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Parola de Autentificare Bază de date"
+
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Nume Bază de date"
+
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Adresa de email a administratorului de site"
+
+#: ../../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 "Adresa de email a contului dvs. trebuie să corespundă cu aceasta pentru a utiliza panoul de administrare web."
+
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Vă rugăm să selectaţi un fus orar prestabilit pentru site-ul dvs."
+
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Configurări Site"
+
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Nu s-a putut găsi o versiune a liniei de comandă PHP în CALEA serverului web."
+
+#: ../../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 "Dacă nu aveţi o versiune a liniei de comandă PHP instalată pe server, nu veţi putea să efectuaţi interogări ciclice în fundal prin funcția cron. Consultaţi <a href='http://friendica.com/node/27'>'Activarea sarcinilor programate' </a>"
+
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Calea de executare PHP"
+
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Introduceţi calea completă către executabilul php. Puteţi lăsa acesta necompletată pentru a continua instalarea."
+
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "linie comandă PHP"
+
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "Executabilul PHP nu este de formă binară php-cli (ar putea fi versiunea cgi-fgci)"
+
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Versiune PHP identificată:"
+
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "Versiune binară PHP-cli"
+
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Versiunea liniei de comandă PHP de pe sistemul dumneavoastră nu are comanda \"register_argc_argv\" activată."
+
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Aceasta este necesară pentru a funcționa livrarea de mesaje."
+
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
+
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Eroare: funcția \"openssl_pkey_new\" de pe acest sistem nu este capabilă să genereze chei de criptare"
+
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Dacă rulează pe Windows, vă rugăm să consultaţi \"http://www.php.net/manual/en/openssl.installation.php\"."
+
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Generare chei de criptare"
+
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "Modulul PHP libCurl"
+
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "Modulul PHP grafică GD"
+
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "Modulul PHP OpenSSL"
+
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "Modulul PHP mysqli"
+
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "Modulul PHP mb_string"
+
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Modulul Apache mod_rewrite"
+
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Eroare: Modulul mod-rewrite al serverulului Apache este necesar, dar nu este instalat."
+
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Eroare: modulul PHP libCURL este necesar dar nu este instalat."
+
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Eroare: Modulul PHP grafică GD cu suport JPEG, este necesar dar nu este instalat."
+
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Eroare: modulul PHP libCURL este necesar dar nu este instalat."
+
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Eroare: modulul PHP mysqli este necesar dar nu este instalat."
+
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Eroare: modulul PHP mb_string este necesar dar nu este instalat."
+
+#: ../../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 "Expertul de instalare web  trebuie să poată crea un fișier numit \".htconfig.php\" în dosarul superior al serverului dvs. web, şi nu poate face acest lucru."
+
+#: ../../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 "Aceasta este cel mai adesea o configurare de permisiune, deoarece serverul web nu ar putea fi capabil să scrie fişiere în dosarul dumneavoastră - chiar dacă dvs. puteţi."
+
+#: ../../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 "La finalul acestei proceduri, vă vom oferi un text pentru a-l salva într-un fişier numit .htconfig.php din dosarul dvs. superior Friendica."
+
+#: ../../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, puteţi omite această procedură şi să efectuaţi o instalare manuală. Vă rugăm să consultaţi fişierul  \"INSTALL.txt\" pentru instrucțiuni."
+
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php este inscriptibil"
+
+#: ../../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 utilizează motorul de șablon Smarty3 pentru a prelucra vizualizările sale web. Smarty3 compilează şabloane în PHP pentru a grăbi prelucrarea."
+
+#: ../../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 "Pentru a stoca aceste şabloane compilate, serverul de web trebuie să aibă acces la scriere pentru directorul view/smarty3/ din dosarul de nivel superior 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 "Vă rugăm să vă asiguraţi că utilizatorul pe care rulează serverul dvs. web (de ex. www-date) are acces la scriere pentru acest dosar."
+
+#: ../../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 "Notă: ca o măsură de securitate, ar trebui să dați serverului web, acces de scriere numai pentru view/smarty3/--dar nu și fișierelor de șablon (.tpl) pe care le conţine."
+
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 este inscriptibil"
+
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "Funcția de rescriere Url rewrite din .htaccess nu funcţionează. Verificaţi-vă configuraţia serverului."
+
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "Funcția de rescriere Url rewrite, funcţionează."
+
+#: ../../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 "Fișierul de configurare baza de date \".htconfig.php\", nu a putut fi scris. Vă rugăm să utilizaţi textul închis pentru a crea un fişier de configurare în rădăcina serverului dvs. web."
+
+#: ../../mod/install.php:508
+msgid "Errors encountered creating database tables."
+msgstr "Erori întâlnite la crearea tabelelor bazei de date."
+
+#: ../../mod/install.php:519
+msgid "<h1>What next</h1>"
+msgstr "<h1>Ce urmează</h1>"
+
+#: ../../mod/install.php:520
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANT: Va trebui să configurați [manual] o sarcină programată pentru operatorul de sondaje."
+
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Grupul a fost creat."
+
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Grupul nu se poate crea."
+
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Grupul nu a fost găsit."
+
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Numele grupului a fost schimbat."
+
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr "Salvare Grup"
+
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Creaţi un grup de contacte/prieteni."
+
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Nume Grup:"
+
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Grupul a fost eliminat."
+
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Nu se poate elimina grupul."
+
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Editor Grup"
+
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Membri"
+
+#: ../../mod/content.php:119 ../../mod/network.php:514
+msgid "No such group"
+msgstr "Membrii"
+
+#: ../../mod/content.php:130 ../../mod/network.php:531
+msgid "Group is empty"
+msgstr "Grupul este gol"
+
+#: ../../mod/content.php:134 ../../mod/network.php:538
+msgid "Group: "
+msgstr "Grup:"
+
+#: ../../mod/content.php:496 ../../include/conversation.php:688
+msgid "View in context"
+msgstr "Vizualizare în context"
+
+#: ../../mod/regmod.php:63
+msgid "Account approved."
+msgstr "Cont aprobat."
+
+#: ../../mod/regmod.php:100
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Înregistrare revocată pentru %s"
+
+#: ../../mod/regmod.php:112
+msgid "Please login."
+msgstr "Vă rugăm să vă autentificați."
+
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Potrivire Profil"
+
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Nu există cuvinte cheie pentru a le potrivi. Vă rugăm să adăugaţi cuvinte cheie la profilul dvs implicit."
+
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "are interese pentru:"
+
+#: ../../mod/item.php:110
+msgid "Unable to locate original post."
+msgstr "Nu se poate localiza postarea originală."
+
+#: ../../mod/item.php:319
+msgid "Empty post discarded."
+msgstr "Postarea goală a fost eliminată."
+
+#: ../../mod/item.php:891
+msgid "System error. Post not saved."
+msgstr "Eroare de sistem. Articolul nu a fost salvat."
+
+#: ../../mod/item.php:917
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Acest mesaj v-a fost trimis de către %s, un membru al rețelei sociale Friendica."
+
+#: ../../mod/item.php:919
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Îi puteți vizita profilul online la %s"
+
+#: ../../mod/item.php:920
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Vă rugăm să contactați expeditorul răspunzând la această postare, dacă nu doriţi să primiţi aceste mesaje."
+
+#: ../../mod/item.php:924
+#, php-format
+msgid "%s posted an update."
+msgstr "%s a postat o actualizare."
+
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s este momentan %2$s"
+
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Stare de spirit"
+
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Stabiliți-vă starea de spirit curentă, şi comunicați-o prietenilor"
+
+#: ../../mod/network.php:136
+msgid "Search Results For:"
+msgstr "Rezultatele Căutării Pentru:"
+
+#: ../../mod/network.php:189 ../../include/group.php:275
+msgid "add"
+msgstr "add"
+
+#: ../../mod/network.php:350
+msgid "Commented Order"
+msgstr "Ordonare Comentarii"
+
+#: ../../mod/network.php:353
+msgid "Sort by Comment Date"
+msgstr "Sortare după Data Comentariului"
+
+#: ../../mod/network.php:356
+msgid "Posted Order"
+msgstr "Ordonare Postări"
+
+#: ../../mod/network.php:359
+msgid "Sort by Post Date"
+msgstr "Sortare după Data Postării"
+
+#: ../../mod/network.php:368
+msgid "Posts that mention or involve you"
+msgstr "Postări ce vă menționează sau vă implică"
+
+#: ../../mod/network.php:374
+msgid "New"
+msgstr "Nou"
+
+#: ../../mod/network.php:377
+msgid "Activity Stream - by date"
+msgstr "Flux Activități - după dată"
+
+#: ../../mod/network.php:383
+msgid "Shared Links"
+msgstr "Linkuri partajate"
+
+#: ../../mod/network.php:386
+msgid "Interesting Links"
+msgstr "Legături Interesante"
+
+#: ../../mod/network.php:392
+msgid "Starred"
+msgstr "Cu steluță"
+
+#: ../../mod/network.php:395
+msgid "Favourite Posts"
+msgstr "Postări Favorite"
+
+#: ../../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] "Atenție: Acest grup conţine %s membru dintr-o reţea nesigură."
+msgstr[1] "Atenție: Acest grup conţine %s membrii dintr-o reţea nesigură."
+msgstr[2] "Atenție: Acest grup conţine %s de membrii dintr-o reţea nesigură."
+
+#: ../../mod/network.php:460
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Mesajele private către acest grup sunt supuse riscului de divulgare publică."
+
+#: ../../mod/network.php:548
+msgid "Contact: "
+msgstr "Contact: "
+
+#: ../../mod/network.php:550
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Mesajele private către această persoană sunt supuse riscului de divulgare publică."
+
+#: ../../mod/network.php:555
+msgid "Invalid contact."
+msgstr "Invalid contact."
+
+#: ../../mod/crepair.php:104
+msgid "Contact settings applied."
+msgstr "Configurările Contactului au fost aplicate."
+
+#: ../../mod/crepair.php:106
+msgid "Contact update failed."
+msgstr "Actualizarea Contactului a eșuat."
+
+#: ../../mod/crepair.php:137
+msgid "Repair Contact Settings"
+msgstr "Remediere Configurări Contact"
+
+#: ../../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>AVERTISMENT: Această acțiune este foarte avansată</strong> şi dacă introduceţi informaţii incorecte, comunicaţiile cu acest contact se poate opri."
+
+#: ../../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 "Vă rugăm să utilizaţi <strong>acum</strong> butonul 'Înapoi' din browser, dacă nu sunteţi sigur ce sa faceți pe această pagină."
+
+#: ../../mod/crepair.php:146
+msgid "Return to contact editor"
+msgstr "Reveniţi la editorul de contact"
+
+#: ../../mod/crepair.php:151
+msgid "Account Nickname"
+msgstr "Pseudonim Cont"
+
+#: ../../mod/crepair.php:152
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Nume_etichetă - suprascrie Numele/Pseudonimul"
+
+#: ../../mod/crepair.php:153
+msgid "Account URL"
+msgstr "URL Cont"
+
+#: ../../mod/crepair.php:154
+msgid "Friend Request URL"
+msgstr "URL Solicitare Prietenie"
+
+#: ../../mod/crepair.php:155
+msgid "Friend Confirm URL"
+msgstr "URL Confirmare Prietenie"
+
+#: ../../mod/crepair.php:156
+msgid "Notification Endpoint URL"
+msgstr "Punct final URL Notificare"
+
+#: ../../mod/crepair.php:157
+msgid "Poll/Feed URL"
+msgstr "URL Sondaj/Flux"
+
+#: ../../mod/crepair.php:158
+msgid "New photo from this URL"
+msgstr "Fotografie Nouă de la acest URL"
+
+#: ../../mod/crepair.php:159
+msgid "Remote Self"
+msgstr "Auto la Distanţă"
+
+#: ../../mod/crepair.php:161
+msgid "Mirror postings from this contact"
+msgstr "Postări în oglindă de la acest contact"
+
+#: ../../mod/crepair.php:161
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Marcaţi acest contact ca remote_self, aceasta va determina friendica să reposteze noile articole ale acestui contact."
+
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:145
+msgid "Your posts and conversations"
+msgstr "Postările şi conversaţiile dvs."
+
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Pagina dvs. de profil"
+
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Contactele dvs."
+
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Fotografiile dvs."
+
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
+msgid "Your events"
+msgstr "Evenimentele dvs."
+
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Personal notes"
+msgstr "Note Personale"
+
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Your personal photos"
+msgstr "Fotografii dvs. personale"
+
+#: ../../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 "Community Pagini"
+
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+#: ../../view/theme/diabook/config.php:160
+msgid "Community Profiles"
+msgstr "Profile de Comunitate"
+
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+#: ../../view/theme/diabook/config.php:164
+msgid "Last users"
+msgstr "Ultimii utilizatori"
+
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:166
+msgid "Last likes"
+msgstr "Ultimele aprecieri"
+
+#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1953
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+msgid "event"
+msgstr "eveniment"
+
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+#: ../../view/theme/diabook/config.php:165
+msgid "Last photos"
+msgstr "Ultimele fotografii"
+
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:163
+msgid "Find Friends"
+msgstr "Găsire Prieteni"
+
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Director Local"
+
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
+msgid "Similar Interests"
+msgstr "Interese Similare"
+
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
+msgid "Invite Friends"
+msgstr "Invită Prieteni"
+
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+#: ../../view/theme/diabook/config.php:159
+msgid "Earth Layers"
+msgstr "Straturi Pământ"
+
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Stabilire factor de magnificare pentru Straturi Pământ"
+
+#: ../../view/theme/diabook/theme.php:585
+#: ../../view/theme/diabook/config.php:156
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Stabilire longitudine (X) pentru Straturi Pământ"
+
+#: ../../view/theme/diabook/theme.php:586
+#: ../../view/theme/diabook/config.php:157
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Stabilire latitudine (Y) pentru Straturi Pământ"
+
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+#: ../../view/theme/diabook/config.php:161
+msgid "Help or @NewHere ?"
+msgstr "Ajutor sau @NouAici ?"
+
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+#: ../../view/theme/diabook/config.php:162
+msgid "Connect Services"
+msgstr "Conectare Servicii"
+
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328
+msgid "don't show"
+msgstr "nu afișa"
+
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327
+msgid "show"
+msgstr "afișare"
+
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Afişare/ascundere casete din coloana din dreapta:"
+
+#: ../../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 "Configurări Temă"
+
+#: ../../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 "Stabilire dimensiune font pentru postări şi comentarii"
+
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Stabilire înălțime linie pentru postări şi comentarii"
+
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Stabilire rezoluţie pentru coloana din mijloc"
+
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Stabilire schemă de culori"
+
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Stabilire factor de magnificare pentru Straturi Pământ"
+
+#: ../../view/theme/vier/config.php:50
+msgid "Set style"
+msgstr "Stabilire stil"
+
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Stabilire schemă de culori"
+
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Aliniere"
+
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Stânga"
+
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Centrat"
+
+#: ../../view/theme/quattro/config.php:68
+#: ../../view/theme/cleanzero/config.php:86
+msgid "Color scheme"
+msgstr "Schemă culoare"
+
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Dimensiune font postări"
+
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Dimensiune font zone text"
+
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Stabiliți nivelul de redimensionare a imaginilor din postări și comentarii (lăţimea şi înălţimea)"
+
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Stabilire lăţime temă"
+
+#: ../../boot.php:692
+msgid "Delete this item?"
+msgstr "Ștergeți acest element?"
+
+#: ../../boot.php:695
+msgid "show fewer"
+msgstr "afișare mai puține"
+
+#: ../../boot.php:1023
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Actualizarea %s a eșuat. Consultaţi jurnalele de eroare."
+
+#: ../../boot.php:1025
+#, php-format
+msgid "Update Error at %s"
+msgstr "Eroare de actualizare la %s"
+
+#: ../../boot.php:1135
+msgid "Create a New Account"
+msgstr "Creaţi un Cont Nou"
+
+#: ../../boot.php:1160 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Deconectare"
+
+#: ../../boot.php:1161 ../../include/nav.php:91
+msgid "Login"
+msgstr "Login"
+
+#: ../../boot.php:1163
+msgid "Nickname or Email address: "
+msgstr "Pseudonimul sau Adresa de email:"
+
+#: ../../boot.php:1164
+msgid "Password: "
+msgstr "Parola:"
+
+#: ../../boot.php:1165
+msgid "Remember me"
+msgstr "Reține autentificarea"
+
+#: ../../boot.php:1168
+msgid "Or login using OpenID: "
+msgstr "Sau conectaţi-vă utilizând OpenID:"
+
+#: ../../boot.php:1174
+msgid "Forgot your password?"
+msgstr "Ați uitat parola?"
+
+#: ../../boot.php:1177
+msgid "Website Terms of Service"
+msgstr "Condiții de Utilizare Site Web"
+
+#: ../../boot.php:1178
+msgid "terms of service"
+msgstr "condiții de utilizare"
+
+#: ../../boot.php:1180
+msgid "Website Privacy Policy"
+msgstr "Politica de Confidențialitate Site Web"
+
+#: ../../boot.php:1181
+msgid "privacy policy"
+msgstr "politica de confidențialitate"
+
+#: ../../boot.php:1314
+msgid "Requested account is not available."
+msgstr "Contul solicitat nu este disponibil."
+
+#: ../../boot.php:1393 ../../boot.php:1497
+msgid "Edit profile"
+msgstr "Editare profil"
+
+#: ../../boot.php:1459
+msgid "Message"
+msgstr "Mesaj"
+
+#: ../../boot.php:1467 ../../include/nav.php:171
+msgid "Profiles"
+msgstr "Profile"
+
+#: ../../boot.php:1467
+msgid "Manage/edit profiles"
+msgstr "Gestionare/editare profile"
+
+#: ../../boot.php:1596 ../../boot.php:1682
+msgid "g A l F d"
+msgstr "g A l F d"
+
+#: ../../boot.php:1597 ../../boot.php:1683
+msgid "F d"
+msgstr "F d"
+
+#: ../../boot.php:1642 ../../boot.php:1723
+msgid "[today]"
+msgstr "[azi]"
+
+#: ../../boot.php:1654
+msgid "Birthday Reminders"
+msgstr "Memento Zile naştere "
+
+#: ../../boot.php:1655
+msgid "Birthdays this week:"
+msgstr "Zi;e Naştere această săptămînă:"
+
+#: ../../boot.php:1716
+msgid "[No description]"
+msgstr "[Fără descriere]"
+
+#: ../../boot.php:1734
+msgid "Event Reminders"
+msgstr "Memento Eveniment"
+
+#: ../../boot.php:1735
+msgid "Events this week:"
+msgstr "Evenimente în această săptămână:"
+
+#: ../../boot.php:1972 ../../include/nav.php:76
+msgid "Status"
+msgstr "Status"
+
+#: ../../boot.php:1975
+msgid "Status Messages and Posts"
+msgstr "Status Mesaje şi Postări"
+
+#: ../../boot.php:1982
+msgid "Profile Details"
+msgstr "Detalii Profil"
+
+#: ../../boot.php:1993 ../../boot.php:1996
+msgid "Videos"
+msgstr "Clipuri video"
+
+#: ../../boot.php:2006
+msgid "Events and Calendar"
+msgstr "Evenimente şi Calendar"
+
+#: ../../boot.php:2013
+msgid "Only You Can See This"
+msgstr "Numai Dvs. Puteţi Vizualiza"
+
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Caracteristici Generale"
+
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Profile Multiple"
+
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Capacitatea de a crea profile multiple"
+
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Caracteristici Compoziţie Postare"
+
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Editor Text Îmbogățit"
+
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Activare editor text îmbogățit"
+
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Previzualizare Postare"
+
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Permiteți previzualizarea postărilor şi comentariilor înaintea publicării lor"
+
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "Auto-menţionare Forumuri"
+
+#: ../../include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr "Adăugaţi/eliminaţi mențiunea când o pagină de forum  este selectată/deselectată în fereastra ACL."
+
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Aplicaţii widget de Rețea în Bara Laterală"
+
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Căutare după Dată"
+
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Abilitatea de a selecta postări după intervalele de timp"
+
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Filtru Grup"
+
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Permiteți aplicației widget să afișeze postări din Rețea, numai din grupul selectat"
+
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Filtru Reţea"
+
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Permiteți aplicației widget să afișeze postări din Rețea, numai din rețeaua selectată"
+
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Salvați termenii de căutare pentru reutilizare"
+
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "File Reţea"
+
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Filă Personală de Reţea"
+
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Permiteți filei să afişeze numai postările Reţelei cu care ați interacţionat"
+
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Filă Nouă de Reţea"
+
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Permiteți filei să afişeze numai postările noi din Reţea (din ultimele 12 ore)"
+
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "Filă Legături Distribuite în Rețea"
+
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Permiteți filei să afişeze numai postările din Reţea ce conțin legături"
+
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Instrumente Postare/Comentariu"
+
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Ştergere Multiplă"
+
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Selectaţi şi ştergeţi postări/comentarii multiple simultan"
+
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Editare Postări Trimise"
+
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Editarea şi corectarea postărilor şi comentariilor după postarea lor"
+
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Etichetare"
+
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Capacitatea de a eticheta postările existente"
+
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Categorii Postări"
+
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Adăugaţi categorii la postările dvs."
+
+#: ../../include/features.php:60 ../../include/contact_widgets.php:103
+msgid "Saved Folders"
+msgstr "Dosare Salvate"
+
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Capacitatea de a atribui postări în dosare"
+
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Respingere Postări"
+
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Capacitatea de a marca postări/comentarii ca fiind neplăcute"
+
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Postări cu Steluță"
+
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Capacitatea de a marca posturile speciale cu o stea ca şi indicator"
+
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Deconectat."
+
+#: ../../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 "Am întâmpinat o problemă în timpul autentificării cu datele OpenID  pe care le-ați furnizat."
+
+#: ../../include/auth.php:128 ../../include/user.php:66
+msgid "The error message was:"
+msgstr "Mesajul de eroare a fost:"
+
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
+msgid "Starts:"
+msgstr "Începe:"
+
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
+msgid "Finishes:"
+msgstr "Se finalizează:"
+
+#: ../../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 "Zile Naştere :"
+
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Vârsta:"
+
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "pentru %1$d %2$s"
+
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Etichete:"
+
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religie:"
+
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Hobby/Interese:"
+
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Informaţii de Contact şi Reţele Sociale:"
+
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Preferințe muzicale:"
+
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Cărti, literatură:"
+
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Programe TV:"
+
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/dans/cultură/divertisment:"
+
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Dragoste/Romantism:"
+
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Loc de Muncă/Slujbă:"
+
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Școală/educatie:"
+
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[fără subiect]"
+
+#: ../../include/Scrape.php:584
+msgid " on Last.fm"
+msgstr "pe Last.fm"
+
+#: ../../include/text.php:296
+msgid "newer"
+msgstr "mai noi"
+
+#: ../../include/text.php:298
+msgid "older"
+msgstr "mai vechi"
+
+#: ../../include/text.php:303
+msgid "prev"
+msgstr "preced"
+
+#: ../../include/text.php:305
+msgid "first"
+msgstr "prima"
+
+#: ../../include/text.php:337
+msgid "last"
+msgstr "ultima"
+
+#: ../../include/text.php:340
+msgid "next"
+msgstr "următor"
+
+#: ../../include/text.php:853
+msgid "No contacts"
+msgstr "Nici-un contact"
+
+#: ../../include/text.php:862
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d Contact"
+msgstr[1] "%d Contacte"
+msgstr[2] "%d de Contacte"
+
+#: ../../include/text.php:1003
+msgid "poke"
+msgstr "abordare"
+
+#: ../../include/text.php:1003 ../../include/conversation.php:211
+msgid "poked"
+msgstr "a fost abordat(ă)"
+
+#: ../../include/text.php:1004
+msgid "ping"
+msgstr "ping"
+
+#: ../../include/text.php:1004
+msgid "pinged"
+msgstr "i s-a trimis ping"
+
+#: ../../include/text.php:1005
+msgid "prod"
+msgstr "prod"
+
+#: ../../include/text.php:1005
+msgid "prodded"
+msgstr "i s-a atras atenția"
+
+#: ../../include/text.php:1006
+msgid "slap"
+msgstr "plesnire"
+
+#: ../../include/text.php:1006
+msgid "slapped"
+msgstr "a fost plesnit(ă)"
+
+#: ../../include/text.php:1007
+msgid "finger"
+msgstr "indicare"
+
+#: ../../include/text.php:1007
+msgid "fingered"
+msgstr "a fost indicat(ă)"
+
+#: ../../include/text.php:1008
+msgid "rebuff"
+msgstr "respingere"
+
+#: ../../include/text.php:1008
+msgid "rebuffed"
+msgstr "a fost respins(ă)"
+
+#: ../../include/text.php:1022
+msgid "happy"
+msgstr "fericit(ă)"
+
+#: ../../include/text.php:1023
+msgid "sad"
+msgstr "trist(ă)"
+
+#: ../../include/text.php:1024
+msgid "mellow"
+msgstr "trist(ă)"
+
+#: ../../include/text.php:1025
+msgid "tired"
+msgstr "obosit(ă)"
+
+#: ../../include/text.php:1026
+msgid "perky"
+msgstr "arogant(ă)"
+
+#: ../../include/text.php:1027
+msgid "angry"
+msgstr "supărat(ă)"
+
+#: ../../include/text.php:1028
+msgid "stupified"
+msgstr "stupefiat(ă)"
+
+#: ../../include/text.php:1029
+msgid "puzzled"
+msgstr "nedumerit(ă)"
+
+#: ../../include/text.php:1030
+msgid "interested"
+msgstr "interesat(ă)"
+
+#: ../../include/text.php:1031
+msgid "bitter"
+msgstr "amarnic"
+
+#: ../../include/text.php:1032
+msgid "cheerful"
+msgstr "vesel(ă)"
+
+#: ../../include/text.php:1033
+msgid "alive"
+msgstr "plin(ă) de viață"
+
+#: ../../include/text.php:1034
+msgid "annoyed"
+msgstr "enervat(ă)"
+
+#: ../../include/text.php:1035
+msgid "anxious"
+msgstr "neliniştit(ă)"
+
+#: ../../include/text.php:1036
+msgid "cranky"
+msgstr "irascibil(ă)"
+
+#: ../../include/text.php:1037
+msgid "disturbed"
+msgstr "perturbat(ă)"
+
+#: ../../include/text.php:1038
+msgid "frustrated"
+msgstr "frustrat(ă)"
+
+#: ../../include/text.php:1039
+msgid "motivated"
+msgstr "motivat(ă)"
+
+#: ../../include/text.php:1040
+msgid "relaxed"
+msgstr "relaxat(ă)"
+
+#: ../../include/text.php:1041
+msgid "surprised"
+msgstr "surprins(ă)"
+
+#: ../../include/text.php:1209
+msgid "Monday"
+msgstr "Luni"
+
+#: ../../include/text.php:1209
+msgid "Tuesday"
+msgstr "Marţi"
+
+#: ../../include/text.php:1209
+msgid "Wednesday"
+msgstr "Miercuri"
+
+#: ../../include/text.php:1209
+msgid "Thursday"
+msgstr "Joi"
+
+#: ../../include/text.php:1209
+msgid "Friday"
+msgstr "Vineri"
+
+#: ../../include/text.php:1209
+msgid "Saturday"
+msgstr "Sâmbătă"
+
+#: ../../include/text.php:1209
+msgid "Sunday"
+msgstr "Duminică"
+
+#: ../../include/text.php:1213
+msgid "January"
+msgstr "Ianuarie"
+
+#: ../../include/text.php:1213
+msgid "February"
+msgstr "Februarie"
+
+#: ../../include/text.php:1213
+msgid "March"
+msgstr "Martie"
+
+#: ../../include/text.php:1213
+msgid "April"
+msgstr "Aprilie"
+
+#: ../../include/text.php:1213
+msgid "May"
+msgstr "Mai"
+
+#: ../../include/text.php:1213
+msgid "June"
+msgstr "Iunie"
+
+#: ../../include/text.php:1213
+msgid "July"
+msgstr "Iulie"
+
+#: ../../include/text.php:1213
+msgid "August"
+msgstr "August"
+
+#: ../../include/text.php:1213
+msgid "September"
+msgstr "Septembrie"
+
+#: ../../include/text.php:1213
+msgid "October"
+msgstr "Octombrie"
+
+#: ../../include/text.php:1213
+msgid "November"
+msgstr "Noiembrie"
+
+#: ../../include/text.php:1213
+msgid "December"
+msgstr "Decembrie"
+
+#: ../../include/text.php:1432
+msgid "bytes"
+msgstr "octeţi"
+
+#: ../../include/text.php:1456 ../../include/text.php:1468
+msgid "Click to open/close"
+msgstr "Apăsați pentru a deschide/închide"
+
+#: ../../include/text.php:1689 ../../include/user.php:246
+msgid "default"
+msgstr "implicit"
+
+#: ../../include/text.php:1701
+msgid "Select an alternate language"
+msgstr "Selectați o limbă alternativă"
+
+#: ../../include/text.php:1957
+msgid "activity"
+msgstr "activitate"
+
+#: ../../include/text.php:1960
+msgid "post"
+msgstr "postare"
+
+#: ../../include/text.php:2128
+msgid "Item filed"
+msgstr "Element îndosariat"
+
+#: ../../include/api.php:263 ../../include/api.php:274
+#: ../../include/api.php:375
+msgid "User not found."
+msgstr "Utilizatorul nu a fost găsit."
+
+#: ../../include/api.php:1123
+msgid "There is no status with this id."
+msgstr "Nu există nici-un status cu acest id."
+
+#: ../../include/api.php:1193
+msgid "There is no conversation with this id."
+msgstr "Nu există nici-o conversație cu acest id."
+
+#: ../../include/dba.php:51 ../../include/dba_pdo.php:72
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Nu se pot localiza informațiile DNS  pentru serverul de bază de date '%s'"
+
+#: ../../include/items.php:1981 ../../include/datetime.php:472
+#, php-format
+msgid "%s's birthday"
+msgstr "%s's  zi de naştere"
+
+#: ../../include/items.php:1982 ../../include/datetime.php:473
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "La mulţi ani %s"
+
+#: ../../include/items.php:3710
+msgid "A new person is sharing with you at "
+msgstr "O nouă persoană împărtășește cu dvs. la"
+
+#: ../../include/items.php:3710
+msgid "You have a new follower at "
+msgstr "Aveţi un nou susținător la"
+
+#: ../../include/items.php:4233
+msgid "Do you really want to delete this item?"
+msgstr "Sigur doriți să ștergeți acest element?"
+
+#: ../../include/items.php:4460
+msgid "Archives"
+msgstr "Arhive"
+
+#: ../../include/delivery.php:456 ../../include/notifier.php:774
+msgid "(no subject)"
+msgstr "(fără subiect)"
+
+#: ../../include/delivery.php:467 ../../include/notifier.php:784
+#: ../../include/enotify.php:28
+msgid "noreply"
+msgstr "nu-răspundeţi"
+
+#: ../../include/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
+msgstr "Partajarea notificării din reţeaua Diaspora"
+
+#: ../../include/diaspora.php:2299
+msgid "Attachments:"
+msgstr "Atașări:"
+
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "Lipseşte URL-ul de conectare."
+
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Acest site nu este configurat pentru a permite comunicarea cu alte reţele."
+
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Nu au fost descoperite protocoale de comunicaţii sau fluxuri compatibile."
+
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "Adresa de profil specificată nu furnizează informații adecvate."
+
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Un autor sau nume nu a fost găsit."
+
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Nici un URL de browser nu a putut fi corelat cu această adresă."
+
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Nu se poate corela @-stilul pentru Adresa de Identitatea cu un protocol cunoscut sau contact de email."
+
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Utilizaţi mailto: în faţa adresei pentru a forţa verificarea de email."
+
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Adresa de profil specificată aparţine unei reţele care a fost dezactivată pe acest site."
+
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Profil limitat. Această persoană nu va putea primi notificări directe/personale, de la dvs."
+
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Nu se pot localiza informaţiile de contact."
+
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "urmărire"
+
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Bine ați venit"
+
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Vă rugăm să încărcaţi o fotografie de profil."
+
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Bine ați revenit"
+
+#: ../../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 "Formarea codului de securitate, nu a fost corectă. Aceasta probabil s-a întâmplat pentru că formularul a fost deschis pentru prea mult timp ( >3 ore) înainte de a-l transmite."
+
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Bărbat"
+
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Femeie"
+
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "În prezent Bărbat"
+
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "În prezent Femeie"
+
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Mai mult Bărbat"
+
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Mai mult Femeie"
+
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transsexual"
+
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersexual"
+
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexual"
+
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermafrodit"
+
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutru"
+
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Non-specific"
+
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Alta"
+
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Indecisă"
+
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Bărbați"
+
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Femei"
+
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gay"
+
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbiană"
+
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Fără Preferințe"
+
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexual"
+
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexual"
+
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent(ă)"
+
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Virgin(ă)"
+
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviant"
+
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetish"
+
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "La grămadă"
+
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Nonsexual"
+
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Necăsătorit(ă)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Singur(ă)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Disponibil(ă)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Indisponibil(ă)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Îndrăgostit(ă)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Îndrăgostit(ă) nebunește"
+
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Am întâlniri"
+
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Infidel(ă)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Dependent(ă) de Sex"
+
+#: ../../include/profile_selectors.php:42 ../../include/user.php:288
+#: ../../include/user.php:292
+msgid "Friends"
+msgstr "Prieteni"
+
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Prietenii/Prestaţii"
+
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Ocazional"
+
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Cuplat"
+
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Căsătorit(ă)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Căsătorit(ă) imaginar"
+
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Parteneri"
+
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "În conviețuire"
+
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Drept Comun"
+
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Fericit(ă)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Nu caut"
+
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
+
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Înșelat(ă)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Separat(ă)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Instabil(ă)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Divorţat(ă)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Divorţat(ă) imaginar"
+
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Văduv(ă)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Incert"
+
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "E complicat"
+
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Nu-mi pasă"
+
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Întreabă-mă"
+
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Eroare la decodarea fişierului de cont"
+
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Eroare! Nu există data versiunii în fişier! Acesta nu este un fișier de cont Friendica?"
+
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Eroare! Nu pot verifica pseudonimul"
+
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Utilizatorul '%s' există deja pe acest server!"
+
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Eroare la crearea utilizatorului"
+
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Eroare la crearea profilului utilizatorului"
+
+#: ../../include/uimport.php:220
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contact neimportat"
+msgstr[1] "%d contacte neimportate"
+msgstr[2] "%d de contacte neimportate"
+
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Realizat. Vă puteţi conecta acum cu parola şi numele dumneavoastră de utilizator"
+
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Apăsați aici pentru a actualiza."
+
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Această acţiune depăşeşte limitele stabilite de planul abonamentului dvs."
+
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Această acţiune nu este disponibilă în planul abonamentului dvs."
+
+#: ../../include/conversation.php:207
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s a abordat pe %2$s"
+
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr "post/element"
+
+#: ../../include/conversation.php:292
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s a marcat %3$s de la %2$s ca favorit"
+
+#: ../../include/conversation.php:770
+msgid "remove"
+msgstr "eliminare"
+
+#: ../../include/conversation.php:774
+msgid "Delete Selected Items"
+msgstr "Ștergeți Elementele Selectate"
+
+#: ../../include/conversation.php:873
+msgid "Follow Thread"
+msgstr "Urmăriți Firul Conversației"
+
+#: ../../include/conversation.php:874 ../../include/Contact.php:229
+msgid "View Status"
+msgstr "Vizualizare Status"
+
+#: ../../include/conversation.php:875 ../../include/Contact.php:230
+msgid "View Profile"
+msgstr "Vizualizare Profil"
+
+#: ../../include/conversation.php:876 ../../include/Contact.php:231
+msgid "View Photos"
+msgstr "Vizualizare Fotografii"
+
+#: ../../include/conversation.php:877 ../../include/Contact.php:232
+#: ../../include/Contact.php:255
+msgid "Network Posts"
+msgstr "Postări din Rețea"
+
+#: ../../include/conversation.php:878 ../../include/Contact.php:233
+#: ../../include/Contact.php:255
+msgid "Edit Contact"
+msgstr "Edit Contact"
+
+#: ../../include/conversation.php:879 ../../include/Contact.php:235
+#: ../../include/Contact.php:255
+msgid "Send PM"
+msgstr "Trimiteți mesaj personal"
+
+#: ../../include/conversation.php:880 ../../include/Contact.php:228
+msgid "Poke"
+msgstr "Abordare"
+
+#: ../../include/conversation.php:942
+#, php-format
+msgid "%s likes this."
+msgstr "%s apreciază aceasta."
+
+#: ../../include/conversation.php:942
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s nu apreciază aceasta."
+
+#: ../../include/conversation.php:947
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d persoane</span> apreciază aceasta"
+
+#: ../../include/conversation.php:950
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d persoane</span>nu apreciază aceasta"
+
+#: ../../include/conversation.php:964
+msgid "and"
+msgstr "şi"
+
+#: ../../include/conversation.php:970
+#, php-format
+msgid ", and %d other people"
+msgstr ", şi %d alte persoane"
+
+#: ../../include/conversation.php:972
+#, php-format
+msgid "%s like this."
+msgstr "%s apreciază aceasta."
+
+#: ../../include/conversation.php:972
+#, php-format
+msgid "%s don't like this."
+msgstr "%s nu apreciază aceasta."
+
+#: ../../include/conversation.php:999 ../../include/conversation.php:1017
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Vizibil pentru <strong>toți</strong>"
+
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+msgid "Please enter a video link/URL:"
+msgstr "Vă rugăm să introduceți un URL/legătură pentru clip video"
+
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter an audio link/URL:"
+msgstr "Vă rugăm să introduceți un URL/legătură pentru clip audio"
+
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Tag term:"
+msgstr "Termen etichetare:"
+
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+msgid "Where are you right now?"
+msgstr "Unde vă aflați acum?"
+
+#: ../../include/conversation.php:1006
+msgid "Delete item(s)?"
+msgstr "Ștergeți element(e)?"
+
+#: ../../include/conversation.php:1049
+msgid "Post to Email"
+msgstr "Postați prin Email"
+
+#: ../../include/conversation.php:1054
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Conectorii au fost dezactivați, din moment ce  \"%s\" este activat."
+
+#: ../../include/conversation.php:1109
+msgid "permissions"
+msgstr "permisiuni"
+
+#: ../../include/conversation.php:1133
+msgid "Post to Groups"
+msgstr "Postați în Grupuri"
+
+#: ../../include/conversation.php:1134
+msgid "Post to Contacts"
+msgstr "Post către  Contacte"
+
+#: ../../include/conversation.php:1135
+msgid "Private post"
+msgstr "Articol privat"
+
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Add Contact Nou"
+
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Introduceţi adresa sau locaţia web"
+
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Exemplu: bob@example.com, http://example.com/barbara"
+
+#: ../../include/contact_widgets.php:23
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invitație disponibilă"
+msgstr[1] "%d invitații disponibile"
+msgstr[2] "%d de invitații disponibile"
+
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "Căutați Persoane"
+
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "Introduceţi numele sau interesul"
+
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "Conectare/Urmărire"
+
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Exemple: Robert Morgenstein, Pescuit"
+
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr "Profil Aleatoriu"
+
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
+msgstr "Rețele"
+
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
+msgstr "Toate Reţelele"
+
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
+msgstr "Totul"
+
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
+msgstr "Categorii"
+
+#: ../../include/nav.php:73
+msgid "End this session"
+msgstr "Finalizați această sesiune"
+
+#: ../../include/nav.php:91
+msgid "Sign in"
+msgstr "Autentificare"
+
+#: ../../include/nav.php:104
+msgid "Home Page"
+msgstr "Home Pagina"
+
+#: ../../include/nav.php:108
+msgid "Create an account"
+msgstr "Creați un cont"
+
+#: ../../include/nav.php:113
+msgid "Help and documentation"
+msgstr "Ajutor şi documentaţie"
+
+#: ../../include/nav.php:116
+msgid "Apps"
+msgstr "Aplicații"
+
+#: ../../include/nav.php:116
+msgid "Addon applications, utilities, games"
+msgstr "Suplimente la aplicații, utilitare, jocuri"
+
+#: ../../include/nav.php:118
+msgid "Search site content"
+msgstr "Căutare în conținut site"
+
+#: ../../include/nav.php:128
+msgid "Conversations on this site"
+msgstr "Conversaţii pe acest site"
+
+#: ../../include/nav.php:130
+msgid "Directory"
+msgstr "Director"
+
+#: ../../include/nav.php:130
+msgid "People directory"
+msgstr "Director persoane"
+
+#: ../../include/nav.php:132
+msgid "Information"
+msgstr "Informaţii"
+
+#: ../../include/nav.php:132
+msgid "Information about this friendica instance"
+msgstr "Informaţii despre această instanță friendica"
+
+#: ../../include/nav.php:142
+msgid "Conversations from your friends"
+msgstr "Conversaţiile prieteniilor dvs."
+
+#: ../../include/nav.php:143
+msgid "Network Reset"
+msgstr "Resetare Reţea"
+
+#: ../../include/nav.php:143
+msgid "Load Network page with no filters"
+msgstr "Încărcare pagina de Reţea fără filtre"
+
+#: ../../include/nav.php:151
+msgid "Friend Requests"
+msgstr "Solicitări Prietenie"
+
+#: ../../include/nav.php:153
+msgid "See all notifications"
+msgstr "Consultaţi toate notificările"
+
+#: ../../include/nav.php:154
+msgid "Mark all system notifications seen"
+msgstr "Marcaţi toate notificările de sistem, ca și vizualizate"
+
+#: ../../include/nav.php:158
+msgid "Private mail"
+msgstr "Mail privat"
+
+#: ../../include/nav.php:159
+msgid "Inbox"
+msgstr "Mesaje primite"
+
+#: ../../include/nav.php:160
+msgid "Outbox"
+msgstr "Căsuță de Ieșire"
+
+#: ../../include/nav.php:164
+msgid "Manage"
+msgstr "Gestionare"
+
+#: ../../include/nav.php:164
+msgid "Manage other pages"
+msgstr "Gestionează alte pagini"
+
+#: ../../include/nav.php:169
+msgid "Account settings"
+msgstr "Configurări Cont"
+
+#: ../../include/nav.php:171
+msgid "Manage/Edit Profiles"
+msgstr "Gestionare/Editare Profile"
+
+#: ../../include/nav.php:173
+msgid "Manage/edit friends and contacts"
+msgstr "Gestionare/Editare prieteni şi contacte"
+
+#: ../../include/nav.php:180
+msgid "Site setup and configuration"
+msgstr "Instalare şi configurare site"
+
+#: ../../include/nav.php:184
+msgid "Navigation"
+msgstr "Navigare"
+
+#: ../../include/nav.php:184
+msgid "Site map"
+msgstr "Hartă Site"
+
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Necunoscut | Fără categorie"
+
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Blocare Imediată"
+
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Dubioșii, spammerii, auto-promoterii"
+
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Cunoscut mie, dar fără o opinie"
+
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, probabil inofensiv"
+
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Cu reputație, are încrederea mea"
+
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Săptămânal"
+
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Lunar"
+
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
+
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
+
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
+
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
+
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
+
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
+
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
+
+#: ../../include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
+
+#: ../../include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
+
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Conector Diaspora"
+
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "Statusnet"
+
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr "Notificare Friendica"
+
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr "Vă mulțumim,"
+
+#: ../../include/enotify.php:21
+#, php-format
+msgid "%s Administrator"
+msgstr "%s Administrator"
+
+#: ../../include/enotify.php:40
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!tip_element!>"
+
+#: ../../include/enotify.php:44
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notificare] Mail nou primit la %s"
+
+#: ../../include/enotify.php:46
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s v-a trimis un nou mesaj privat la %2$s."
+
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s v-a trimis %2$s"
+
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr "un mesaj privat"
+
+#: ../../include/enotify.php:48
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la mesaje private."
+
+#: ../../include/enotify.php:91
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s a comentat la [url=%2$s]a %3$s[/url]"
+
+#: ../../include/enotify.php:98
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s a comentat la [url=%2$s]%4$s postat de %3$s[/url]"
+
+#: ../../include/enotify.php:106
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s a comentat la [url=%2$s]%3$s dvs.[/url]"
+
+#: ../../include/enotify.php:116
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notificare] Comentariu la conversaţia #%1$d postată de %2$s"
+
+#: ../../include/enotify.php:117
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s a comentat la un element/conversaţie pe care o urmăriți."
+
+#: ../../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 "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la conversație."
+
+#: ../../include/enotify.php:127
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notificare] %s a postat pe peretele dvs. de profil"
+
+#: ../../include/enotify.php:129
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s a postat pe peretele dvs. de profil la %2$s"
+
+#: ../../include/enotify.php:131
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s a postat pe [url=%2$s]peretele dvs.[/url]"
+
+#: ../../include/enotify.php:142
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notificare] %s v-a etichetat"
+
+#: ../../include/enotify.php:143
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s v-a etichetat la %2$s"
+
+#: ../../include/enotify.php:144
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]v-a etichetat[/url]."
+
+#: ../../include/enotify.php:155
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notificare] %s a distribuit o nouă postare"
+
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s a distribuit o nouă postare la %2$s"
+
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s] a distribuit o postare[/url]."
+
+#: ../../include/enotify.php:169
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notificare] %1$s v-a abordat"
+
+#: ../../include/enotify.php:170
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s v-a abordat la %2$s"
+
+#: ../../include/enotify.php:171
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]v-a abordat[/url]."
+
+#: ../../include/enotify.php:186
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notificare] %s v-a etichetat postarea"
+
+#: ../../include/enotify.php:187
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$sv-a etichetat postarea la %2$s"
+
+#: ../../include/enotify.php:188
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s a etichetat [url=%2$s]postarea dvs.[/url]"
+
+#: ../../include/enotify.php:199
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notificare] Prezentare primită"
+
+#: ../../include/enotify.php:200
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Aţi primit o prezentare de la '%1$s' at %2$s"
+
+#: ../../include/enotify.php:201
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Aţi primit [url=%1$s]o prezentare[/url] de la %2$s."
+
+#: ../../include/enotify.php:204 ../../include/enotify.php:222
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Le puteți vizita profilurile, online pe %s"
+
+#: ../../include/enotify.php:206
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge prezentarea."
+
+#: ../../include/enotify.php:213
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notificare] Ați primit o sugestie de prietenie"
+
+#: ../../include/enotify.php:214
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Ați primit o sugestie de prietenie de la '%1$s' la %2$s"
+
+#: ../../include/enotify.php:215
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Aţi primit [url=%1$s]o sugestie de prietenie[/url] pentru %2$s de la %3$s."
+
+#: ../../include/enotify.php:220
+msgid "Name:"
+msgstr "Nume:"
+
+#: ../../include/enotify.php:221
+msgid "Photo:"
+msgstr "Foto:"
+
+#: ../../include/enotify.php:224
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge sugestia."
+
+#: ../../include/user.php:39
+msgid "An invitation is required."
+msgstr "O invitaţie este necesară."
+
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
+msgstr "Invitația nu s-a putut verifica."
+
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
+msgstr "URL OpenID invalid"
+
+#: ../../include/user.php:73
+msgid "Please enter the required information."
+msgstr "Vă rugăm să introduceți informațiile solicitate."
+
+#: ../../include/user.php:87
+msgid "Please use a shorter name."
+msgstr "Vă rugăm să utilizaţi un nume mai scurt."
+
+#: ../../include/user.php:89
+msgid "Name too short."
+msgstr "Numele este prea scurt."
+
+#: ../../include/user.php:104
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Acesta nu pare a fi Numele (Prenumele) dvs. complet"
+
+#: ../../include/user.php:109
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Domeniul dvs. de email nu este printre cele permise pe acest site."
+
+#: ../../include/user.php:112
+msgid "Not a valid email address."
+msgstr "Nu este o adresă vaildă de email."
+
+#: ../../include/user.php:125
+msgid "Cannot use that email."
+msgstr "Nu se poate utiliza acest email."
+
+#: ../../include/user.php:131
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr " \"Pseudonimul\" dvs.  poate conţine numai  \"a-z\", \"0-9\", \"-\",, şi  \"_\", şi trebuie de asemenea să înceapă cu o literă."
+
+#: ../../include/user.php:137 ../../include/user.php:235
+msgid "Nickname is already registered. Please choose another."
+msgstr "Pseudonimul este deja înregistrat. Vă rugăm, alegeți un altul."
+
+#: ../../include/user.php:147
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Pseudonimul a fost înregistrat aici, şi e posibil să nu mai poată fi reutilizat. Vă rugăm, alegeți altul."
+
+#: ../../include/user.php:163
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "EROARE GRAVĂ: Generarea de chei de securitate a eşuat."
+
+#: ../../include/user.php:221
+msgid "An error occurred during registration. Please try again."
+msgstr "A intervenit o eroare în timpul înregistrării. Vă rugăm să reîncercați."
+
+#: ../../include/user.php:256
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "A intervenit o eroare la crearea profilului dvs. implicit. Vă rugăm să reîncercați."
+
+#: ../../include/acl_selectors.php:326
+msgid "Visible to everybody"
+msgstr "Vizibil pentru toata lumea"
+
+#: ../../include/bbcode.php:287 ../../include/bbcode.php:920
+#: ../../include/bbcode.php:921
+msgid "Image/photo"
+msgstr "Imagine/fotografie"
+
+#: ../../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> a scris următoarea <a href=\"%s\" target=\"_blank\">postare</a>"
+
+#: ../../include/bbcode.php:458
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+
+#: ../../include/bbcode.php:884 ../../include/bbcode.php:904
+msgid "$1 wrote:"
+msgstr "$1 a scris:"
+
+#: ../../include/bbcode.php:935 ../../include/bbcode.php:936
+msgid "Encrypted content"
+msgstr "Conţinut criptat"
+
+#: ../../include/oembed.php:174
+msgid "Embedded content"
+msgstr "Conţinut încorporat"
+
+#: ../../include/oembed.php:183
+msgid "Embedding disabled"
+msgstr "Încorporarea conținuturilor este dezactivată"
+
+#: ../../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 "Un grup şters cu acest nume a fost restabilit. Permisiunile existente ale elementului, <strong>pot</strong>fi aplicate acestui grup şi oricăror viitori membrii. Dacă aceasta nu este ceea ați intenționat să faceți, vă rugăm să creaţi un alt grup cu un un nume diferit."
+
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Confidenţialitatea implicită a grupului pentru noi contacte"
+
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Toată lumea"
+
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "editare"
+
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Editare grup"
+
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Creați un nou grup"
+
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Contacte ce nu se află în orice grup"
+
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "urmărire întreruptă"
+
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
+msgstr "Eliminare Contact"
+
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Diverse"
+
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "an"
+
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr "lună"
+
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr "zi"
+
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "niciodată"
+
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "acum mai puțin de o secundă"
+
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr "ani"
+
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr "luni"
+
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "săptămână"
+
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "săptămâni"
+
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr "zile"
+
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "oră"
+
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "ore"
+
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "minut"
+
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "minute"
+
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr "secundă"
+
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "secunde"
+
+#: ../../include/datetime.php:300
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "acum %1$d %2$s"
+
+#: ../../include/network.php:886
+msgid "view full size"
+msgstr "vezi intreaga mărime"
diff --git a/view/ro/smarty3/follow_notify_eml.tpl b/view/ro/smarty3/follow_notify_eml.tpl
new file mode 100644 (file)
index 0000000..9755732
--- /dev/null
@@ -0,0 +1,14 @@
+
+Dragă $[myname],
+
+Aveţi un nou urmăritoe la $[sitename] -  '$[requestor]'.
+
+Puteţi vizita profilul lor la $[url].
+
+Vă rugăm să vă logaţi pe site-ul dvs. pentru a aproba sau ignora / anula cererea.
+
+$[siteurl]
+
+Cu respect,
+
+       $[sitename] administrator
\ No newline at end of file
diff --git a/view/ro/smarty3/friend_complete_eml.tpl b/view/ro/smarty3/friend_complete_eml.tpl
new file mode 100644 (file)
index 0000000..9c68c8d
--- /dev/null
@@ -0,0 +1,22 @@
+
+Dragă  $[username],
+
+       Veşti  bune... '$[fn]' at '$[dfrn_url]' a acceptat 
+cererea dvs. de conectare la '$[sitename]'.
+
+Sunteți acum prieteni comuni și puteţi schimba actualizări de status, fotografii,  și e-mail 
+fără restricţii.
+
+Vizitaţi pagina dvs. 'Contacte' la $[sitename] dacă doriţi să faceţi 
+orice schimbare către această relaţie. 
+
+$[siteurl]
+
+[De exemplu, puteți crea un profil separat, cu informații care nu sunt
+la dispoziția publicului larg - și atribuiți drepturi de vizualizare la "$ [Fn] ']​​.
+
+Cu stimă,
+
+       $[sitename] Administrator
+
\ No newline at end of file
diff --git a/view/ro/smarty3/intro_complete_eml.tpl b/view/ro/smarty3/intro_complete_eml.tpl
new file mode 100644 (file)
index 0000000..16569d2
--- /dev/null
@@ -0,0 +1,22 @@
+
+Dragă $[username],
+
+       '$[fn]' de la  '$[dfrn_url]' a acceptat 
+cererea dvs. de conectare la '$[sitename]'.
+
+        '$[fn]' a decis să accepte un "fan", care restricționează 
+câteva forme de comunicare - cum ar fi mesageria privată şi unele profile
+interacțiuni. În cazul în care aceasta este o pagină celebritate sau comunitate, aceste setări au fost
+aplicat automat.
+
+        '$[fn]' poate alege să se extindă aceasta în  două sau mai căi permisive 
+relaţie in viitor. 
+
+       Veți începe să primiți actualizări publice de status de la '$[fn]', 
+care va apare pe pagina dvs.  'Network' la  
+
+$[siteurl]
+
+Cu stimă,
+
+       $[sitename] Administrator
\ No newline at end of file
diff --git a/view/ro/smarty3/lostpass_eml.tpl b/view/ro/smarty3/lostpass_eml.tpl
new file mode 100644 (file)
index 0000000..a20970c
--- /dev/null
@@ -0,0 +1,32 @@
+
+Dragă $[username],
+       O cerere a fost primită recent de la $ [sitename] pentru a reseta  
+parola contului dvs. În scopul confitmării  aceastei cereri, vă rugăm să selectați link-ul de verificare
+de mai jos sau inserați în bara de adrese a web browser-ului . 
+
+Dacă nu ați solicitat această schimbare, vă rugăm să nu urmaţi link-ul
+furnizat și ignoră și / sau șterge acest e-mail. 
+
+Parola dvs nu va fi schimbată dacă nu putem verifica dacă dvs
+a emis această cerere. 
+
+Urmaţi acest link pentru a verifica identitatea dvs. :
+
+$[reset_link]
+
+Veți primi apoi un mesaj de follow-up care conține noua parolă.
+
+Puteți schimba această parola din pagina de setări a contului  dvs. după logare 
+
+Detaliile de login sunt următoarele ;
+
+Locaţie Site: »$[siteurl]
+Login Name:    $[email]
+
+
+
+
+Cu stimă,
+       $[sitename] Administrator
+
\ No newline at end of file
diff --git a/view/ro/smarty3/passchanged_eml.tpl b/view/ro/smarty3/passchanged_eml.tpl
new file mode 100644 (file)
index 0000000..5b35f3f
--- /dev/null
@@ -0,0 +1,20 @@
+
+Dragă $[username],
+       Parola dvs. a fost schimbată așa cum a solicitat. Vă rugăm să păstrați aceste 
+Informații pentru evidența dvs. (sau schimbaţi imediat parola  
+cu ceva care iti vei reaminti).
+
+
+Detaliile dvs. de login sunt următoarele ;
+
+Locaţie Site»$[siteurl]
+Login Name:    $[email]
+Parolă:»$[new_password]
+
+Puteți schimba această parolă de la pagina setări cont după logare.
+
+
+Cu stimă,
+       $[sitename] Administrator
+
\ No newline at end of file
diff --git a/view/ro/smarty3/register_adminadd_eml.tpl b/view/ro/smarty3/register_adminadd_eml.tpl
new file mode 100644 (file)
index 0000000..b32f223
--- /dev/null
@@ -0,0 +1,32 @@
+Dragă {{$username}},
+       administratorul {{$sitename}} v-a configurat un cont pentru dvs.
+
+Detaliile de autentificare sunt următoarele:
+
+
+Locație Site: {{$siteurl}}
+Nume Autentificare:⇥{{$email}}
+Parolă:⇥{{$password}}
+
+Vă puteți schimba parola din pagina contului dvs. de "Configurări", după autentificare 
+în.
+
+Vă rugăm să acordați câteva momente pentru revizuirea altor configurări de cont de pe această pagină.
+
+Puteți de asemenea să adăugați câteva informații generale profilului dvs. implicit 
+(pe "Profile" pagina), astfel încât alte persoane să vă găsească uşor.
+
+Vă recomandăm să vă specificați numele complet, adăugând o fotografie de profil,
+adăugând profilului câteva "cuvinte cheie" (foarte utile pentru a vă face noi prieteni) - și 
+poate în ce țara locuiți; dacă nu doriți să dați mai multe detalii
+decât acestea.
+
+Respectăm pe deplin dreptul la intimitate, și nici unul dintre aceste elemente nu sunt necesar. 
+Dacă sunteți nou si nu ştiţi pe nimeni pe aici, ele pot ajuta
+să vă  faceți niște prieteni noi și interesanţi.  
+
+
+Vă multumim și vă urăm bun venit la {{$sitename}}.
+
+Cu stimă,
+       Administratorul {{$sitename}}
\ No newline at end of file
diff --git a/view/ro/smarty3/register_open_eml.tpl b/view/ro/smarty3/register_open_eml.tpl
new file mode 100644 (file)
index 0000000..d1c7113
--- /dev/null
@@ -0,0 +1,34 @@
+
+Dragă $[username],
+       Vă mulțumim pentru înregistrare de la $ [SITENAME]. Contul dvs. a fost creat. 
+Detaliile de login sunt următoarele ;
+
+
+Locaţie Site»$[siteurl]
+Login Name:    $[email]
+Parolă:       $[password]
+
+Puteți schimba parola dvs. de la pagina "Setări" cont după logare. 
+in.
+
+Vă rugăm ia câteva momente pentru revizuirea altor setări din cont pe această pagină.
+
+Ați putea dori, de asemenea, să adăugați câteva Informații generale la profilul dvs. implicit 
+(pe "Profile" pagina), astfel încât alte persoane să vă găsească uşor.
+
+Vă recomandăm să vă setați numele complet, adăugând o fotografie de profil,
+adăugând câteva "cuvinte cheie" de profil (foarte utile în a face noi prieteni) - și 
+poate în ce țara locuiți; dacă nu doriți să fie mai specifice
+decât atât.
+
+Respectăm pe deplin dreptul la intimitate, și nici unul dintre aceşti itemi nu sunt necesari. 
+Dacă sunteți nou si nu ştiţi pe nimeni pe aici, ele pot ajuta
+să faceți niște prieteni noi și interesanţi.  
+
+
+Vă multumim si bine aţi venit la $[sitename].
+
+Cu stimă,
+       $[sitename] Administrator
+
\ No newline at end of file
diff --git a/view/ro/smarty3/register_verify_eml.tpl b/view/ro/smarty3/register_verify_eml.tpl
new file mode 100644 (file)
index 0000000..8d63a4e
--- /dev/null
@@ -0,0 +1,25 @@
+
+O nouă cererea  de înregistrare utilizator a fost primită la $ [sitename], care impune 
+aprobarea ta. 
+
+
+Detaliile de login sunt următoarele ;
+
+Nume complet:»[$[username],
+Locaţie Site»$[siteurl]
+Login Name:    $[email]
+
+
+Pentru a aproba această cerere va rugam sa accesati link-ul următor:
+
+
+$[siteurl]/regmod/allow/$[hash] 
+
+
+Pentru a refuza cererea și elimina contul, vă rugăm să vizitați:
+
+
+$[siteurl]/regmod/deny/$[hash]
+
+
+Vă mulţumesc.
diff --git a/view/ro/smarty3/request_notify_eml.tpl b/view/ro/smarty3/request_notify_eml.tpl
new file mode 100644 (file)
index 0000000..d8b2d44
--- /dev/null
@@ -0,0 +1,17 @@
+
+Dragă $[myname],
+
+Aţi primit o cerere de conectare la  $[sitename] 
+
+de la '$[requestor]'.
+
+Puteţi vizita profilul lor la $[url].
+
+Vă rugăm să vă logaţi pe site-ul dvs. pentru a vedea introducerea completă 
+şi aprobaţi sau ignoraţi/ştergeţi cererea.
+
+$[siteurl]
+
+Cu respect,
+
+       $[sitename] administrator
\ No newline at end of file
diff --git a/view/ro/smarty3/update_fail_eml.tpl b/view/ro/smarty3/update_fail_eml.tpl
new file mode 100644 (file)
index 0000000..93fc63b
--- /dev/null
@@ -0,0 +1,11 @@
+Bună, \r
+Sunt $sitename;   \r
+Dezvoltatorii friendica au  lansat actualizarea $update recent, \r
+dar când am incercat s-o instalez, ceva a mers teribil de prost.  \r
+Aceasta trebuie fixată curând . Nu o pot face singur. Vă rog contactaţi-mă la \r
+friendica dezvoltator dacă nu mă pot ajuta pe cont propriu. Baza mea de date ar putea fi invalidă. \r
+\r
+Mesajul de eraoare este '$error'.   \r
+\r
+Îmi pare rău. \r
+serverul dvs. friendica la  $siteurl
\ No newline at end of file
diff --git a/view/ro/strings.php b/view/ro/strings.php
new file mode 100644 (file)
index 0000000..aaa2bb8
--- /dev/null
@@ -0,0 +1,1719 @@
+<?php
+
+if(! function_exists("string_plural_select_ro")) {
+function string_plural_select_ro($n){
+       return ($n==1?0:((($n%100>19)||(($n%100==0)&&($n!=0)))?2:1));;
+}}
+;
+$a->strings["This entry was edited"] = "Această intrare a fost editată";
+$a->strings["Private Message"] = " Mesaj Privat";
+$a->strings["Edit"] = "Edit";
+$a->strings["Select"] = "Select";
+$a->strings["Delete"] = "Şterge";
+$a->strings["save to folder"] = "salvează în directorul";
+$a->strings["add star"] = "add stea";
+$a->strings["remove star"] = "înlătură stea";
+$a->strings["toggle star status"] = "comută status steluță";
+$a->strings["starred"] = "cu steluță";
+$a->strings["add tag"] = "add tag";
+$a->strings["I like this (toggle)"] = "I like asta (toggle)";
+$a->strings["like"] = "like";
+$a->strings["I don't like this (toggle)"] = "nu îmi place aceasta (comutare)";
+$a->strings["dislike"] = "dislike";
+$a->strings["Share this"] = "Partajează";
+$a->strings["share"] = "partajează";
+$a->strings["Categories:"] = "Categorii:";
+$a->strings["Filed under:"] = "Înscris în:";
+$a->strings["View %s's profile @ %s"] = "Vizualizaţi profilul %s @ %s";
+$a->strings["to"] = "către";
+$a->strings["via"] = "via";
+$a->strings["Wall-to-Wall"] = "Perete-prin-Perete";
+$a->strings["via Wall-To-Wall:"] = "via Perete-Prin-Perete";
+$a->strings["%s from %s"] = "%s de la %s";
+$a->strings["Comment"] = "Comentariu";
+$a->strings["Please wait"] = "Aşteptaţi vă rog";
+$a->strings["%d comment"] = array(
+       0 => "%d comentariu",
+       1 => "%d comentarii",
+       2 => "%d comentarii",
+);
+$a->strings["comment"] = array(
+       0 => "comentariu",
+       1 => "comentarii",
+       2 => "comentarii",
+);
+$a->strings["show more"] = "mai mult";
+$a->strings["This is you"] = "Acesta eşti tu";
+$a->strings["Submit"] = "Trimite";
+$a->strings["Bold"] = "Bold";
+$a->strings["Italic"] = "Italic";
+$a->strings["Underline"] = "Subliniat";
+$a->strings["Quote"] = "Citat";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Imagine";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["Preview"] = "Previzualizare";
+$a->strings["You must be logged in to use addons. "] = "Tu trebuie să vă autentificați pentru a folosi suplimentele.";
+$a->strings["Not Found"] = "Negăsit";
+$a->strings["Page not found."] = "Pagină negăsită.";
+$a->strings["Permission denied"] = "Permisiune refuzată";
+$a->strings["Permission denied."] = "Permisiune refuzată.";
+$a->strings["toggle mobile"] = "comutare mobil";
+$a->strings["[Embedded content - reload page to view]"] = "[Conţinut încastrat - reîncărcaţi pagina pentru a vizualiza]";
+$a->strings["Contact not found."] = "Contact negăsit.";
+$a->strings["Friend suggestion sent."] = "Sugestia de prietenie a fost trimisă.";
+$a->strings["Suggest Friends"] = "Sugeraţi Prieteni";
+$a->strings["Suggest a friend for %s"] = "Sugeraţi un prieten pentru %s";
+$a->strings["This introduction has already been accepted."] = "Această introducere a fost deja acceptată";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Locaţia profilului nu este validă sau nu conţine informaţii de profil.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Atenţie: locaţia profilului nu are un nume de deţinător identificabil.";
+$a->strings["Warning: profile location has no profile photo."] = "Atenţie: locaţia profilului nu are fotografie de profil.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d parametru necesar nu a fost găsit în locaţia specificată",
+       1 => "%d parametrii necesari nu au fost găsiţi în locaţia specificată",
+       2 => "%d de parametrii necesari nu au fost găsiţi în locaţia specificată",
+);
+$a->strings["Introduction complete."] = "Prezentare completă.";
+$a->strings["Unrecoverable protocol error."] = "Eroare de protocol nerecuperabilă.";
+$a->strings["Profile unavailable."] = "Profil nedisponibil.";
+$a->strings["%s has received too many connection requests today."] = "%s a primit, pentru azi, prea multe solicitări de conectare.";
+$a->strings["Spam protection measures have been invoked."] = "Au fost invocate măsuri de protecţie anti-spam.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Prietenii sunt rugaţi să reîncerce peste 24 de ore.";
+$a->strings["Invalid locator"] = "Invalid locator";
+$a->strings["Invalid email address."] = "Adresă mail invalidă.";
+$a->strings["This account has not been configured for email. Request failed."] = "Acest cont nu a fost configurat pentru email. Cererea a eşuat.";
+$a->strings["Unable to resolve your name at the provided location."] = "Imposibil să vă soluţionăm numele pentru locaţia sugerată.";
+$a->strings["You have already introduced yourself here."] = "Aţi fost deja prezentat aici";
+$a->strings["Apparently you are already friends with %s."] = "Se pare că sunteţi deja prieten cu %s.";
+$a->strings["Invalid profile URL."] = "Profil URL invalid.";
+$a->strings["Disallowed profile URL."] = "Profil URL invalid.";
+$a->strings["Failed to update contact record."] = "Actualizarea datelor de contact a eşuat.";
+$a->strings["Your introduction has been sent."] = "Prezentarea dumneavoastră a fost trimisă.";
+$a->strings["Please login to confirm introduction."] = "Vă rugăm să vă autentificați pentru a confirma prezentarea.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Autentificat curent cu identitate eronată. Vă rugăm să vă autentificați pentru <strong>acest</strong> profil.";
+$a->strings["Hide this contact"] = "Ascunde acest contact";
+$a->strings["Welcome home %s."] = "Bine ai venit %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Vă rugăm să vă confirmaţi solicitarea de introducere/conectare la %s.";
+$a->strings["Confirm"] = "Confirm";
+$a->strings["[Name Withheld]"] = "[Nume Reţinut]";
+$a->strings["Public access denied."] = "Acces public refuzat.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vă rugăm să vă introduceţi \"Adresa  de Identitate\" din una din următoarele reţele de socializare acceptate:";
+$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<Strike>Conectare ca și un fan prin email< /strike> (În Curând)";
+$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>."] = "Dacă nu sunteţi încă un membru al reţelei online de socializare gratuite, <a href= \"http://dir.friendica.com/siteinfo\">urmați acest link pentru a găsi un site public Friendica şi alăturați-vă nouă, chiar astăzi</a>.";
+$a->strings["Friend/Connection Request"] = "Solicitare Prietenie/Conectare";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemple: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Vă rugăm să răspundeţi la următoarele:";
+$a->strings["Does %s know you?"] = "%s vă cunoaşte?";
+$a->strings["Yes"] = "Da";
+$a->strings["No"] = "NU";
+$a->strings["Add a personal note:"] = "Adaugă o notă personală:";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Reţea Socială Web Centralizată";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "- vă rugăm să nu folosiţi acest formular. În schimb, introduceţi %s în bara dvs. de căutare Diaspora.";
+$a->strings["Your Identity Address:"] = "Adresa dvs. Identitate ";
+$a->strings["Submit Request"] = "Trimiteţi Solicitarea";
+$a->strings["Cancel"] = "Anulează";
+$a->strings["View Video"] = "Vizualizați Clipul Video";
+$a->strings["Requested profile is not available."] = "Profilul solicitat nu este disponibil.";
+$a->strings["Access to this profile has been restricted."] = "Accesul la acest profil a fost restricţionat.";
+$a->strings["Tips for New Members"] = "Sfaturi pentru Membrii Noi";
+$a->strings["Invalid request identifier."] = "Datele de identificare solicitate, sunt invalide.";
+$a->strings["Discard"] = "Renunțați";
+$a->strings["Ignore"] = "Ignoră";
+$a->strings["System"] = "System";
+$a->strings["Network"] = "Reţea";
+$a->strings["Personal"] = "Personal";
+$a->strings["Home"] = "Home";
+$a->strings["Introductions"] = "Introduceri";
+$a->strings["Messages"] = "Mesage";
+$a->strings["Show Ignored Requests"] = "Afişare Solicitări Ignorate";
+$a->strings["Hide Ignored Requests"] = "Ascundere Solicitări Ignorate";
+$a->strings["Notification type: "] = "Tip Notificări:";
+$a->strings["Friend Suggestion"] = "Sugestie Prietenie";
+$a->strings["suggested by %s"] = "sugerat de către %s";
+$a->strings["Hide this contact from others"] = "Ascunde acest contact pentru alţii";
+$a->strings["Post a new friend activity"] = "Publicaţi prietenului o nouă activitate";
+$a->strings["if applicable"] = "dacă i posibil";
+$a->strings["Approve"] = "Aprobă";
+$a->strings["Claims to be known to you: "] = "Pretinde că vă cunoaște:";
+$a->strings["yes"] = "da";
+$a->strings["no"] = "nu";
+$a->strings["Approve as: "] = "Aprobă ca:";
+$a->strings["Friend"] = "Prieten";
+$a->strings["Sharer"] = "Distribuitor";
+$a->strings["Fan/Admirer"] = "Fan/Admirator";
+$a->strings["Friend/Connect Request"] = "Prieten/Solicitare de Conectare";
+$a->strings["New Follower"] = "Susţinător Nou";
+$a->strings["No introductions."] = "Fără prezentări.";
+$a->strings["Notifications"] = "Notificări";
+$a->strings["%s liked %s's post"] = "%s a apreciat ceea a publicat %s";
+$a->strings["%s disliked %s's post"] = "%s a nu a apreciat ceea a publicat %s";
+$a->strings["%s is now friends with %s"] = "%s este acum prieten cu %s";
+$a->strings["%s created a new post"] = "%s a creat o nouă postare";
+$a->strings["%s commented on %s's post"] = "%s a comentat la articolul postat de %s";
+$a->strings["No more network notifications."] = "Nu mai există notificări de reţea.";
+$a->strings["Network Notifications"] = "Notificări de Reţea";
+$a->strings["No more system notifications."] = "Nu mai există notificări de sistem.";
+$a->strings["System Notifications"] = "Notificări de Sistem";
+$a->strings["No more personal notifications."] = "Nici o notificare personală";
+$a->strings["Personal Notifications"] = "Notificări personale";
+$a->strings["No more home notifications."] = "Nu mai există notificări de origine.";
+$a->strings["Home Notifications"] = "Notificări de Origine";
+$a->strings["photo"] = "photo";
+$a->strings["status"] = "status";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s apreciază %3\$s lui %2\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nu apreciază %3\$s lui %2\$s";
+$a->strings["OpenID protocol error. No ID returned."] = "Eroare de protocol OpenID. Nici-un ID returnat.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Contul nu a fost găsit iar înregistrările OpenID nu sunt permise pe acest site.";
+$a->strings["Login failed."] = "Eşec la conectare";
+$a->strings["Source (bbcode) text:"] = "Text (bbcode) sursă:";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Text (Diaspora) sursă pentru a-l converti în BBcode:";
+$a->strings["Source input: "] = "Intrare Sursă:";
+$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): "] = "Intrare Sursă (Format Diaspora):";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Theme settings updated."] = "Configurările temei au fost actualizate.";
+$a->strings["Site"] = "Site";
+$a->strings["Users"] = "Utilizatori";
+$a->strings["Plugins"] = "Pluginuri";
+$a->strings["Themes"] = "Teme";
+$a->strings["DB updates"] = "Actualizări Bază de Date";
+$a->strings["Logs"] = "Jurnale";
+$a->strings["Admin"] = "Admin";
+$a->strings["Plugin Features"] = "Caracteristici Modul";
+$a->strings["User registrations waiting for confirmation"] = "Înregistrări de utilizatori, aşteaptă confirmarea";
+$a->strings["Item not found."] = "Element negăsit.";
+$a->strings["Normal Account"] = "Cont normal";
+$a->strings["Soapbox Account"] = "Cont Soapbox";
+$a->strings["Community/Celebrity Account"] = "Cont Comunitate/Celebritate";
+$a->strings["Automatic Friend Account"] = "Cont Prieten Automat";
+$a->strings["Blog Account"] = "Cont Blog";
+$a->strings["Private Forum"] = "Forum Privat";
+$a->strings["Message queues"] = "Șiruri de mesaje";
+$a->strings["Administration"] = "Administrare";
+$a->strings["Summary"] = "Sumar";
+$a->strings["Registered users"] = "Utilizatori înregistraţi";
+$a->strings["Pending registrations"] = "Administrare";
+$a->strings["Version"] = "Versiune";
+$a->strings["Active plugins"] = "Module active";
+$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Nu se poate analiza URL-ul de bază. Trebuie să aibă minim <scheme>://<domain>";
+$a->strings["Site settings updated."] = "Configurările site-ului au fost actualizate.";
+$a->strings["No special theme for mobile devices"] = "Nici-o temă specială pentru dispozitive mobile";
+$a->strings["Never"] = "Niciodată";
+$a->strings["At post arrival"] = "La sosirea publicaţiei";
+$a->strings["Frequently"] = "Frecvent";
+$a->strings["Hourly"] = "Din oră în oră";
+$a->strings["Twice daily"] = "De două ori pe zi";
+$a->strings["Daily"] = "Zilnic";
+$a->strings["Multi user instance"] = "Instanţă utilizatori multipli";
+$a->strings["Closed"] = "Inchis";
+$a->strings["Requires approval"] = "Necesită aprobarea";
+$a->strings["Open"] = "Deschide";
+$a->strings["No SSL policy, links will track page SSL state"] = "Nici-o politică SSL, legăturile vor  urmări starea paginii SSL";
+$a->strings["Force all links to use SSL"] = "Forţează toate legăturile să utilizeze SSL";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto/semnat, folosește SSL numai pentru legăturile locate (nerecomandat)";
+$a->strings["Save Settings"] = "Salvare Configurări";
+$a->strings["Registration"] = "Registratură";
+$a->strings["File upload"] = "Fişier incărcat";
+$a->strings["Policies"] = "Politici";
+$a->strings["Advanced"] = "Avansat";
+$a->strings["Performance"] = "Performanţă";
+$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Reaşezaţi - AVERTIZARE: funcţie avansată. Ar putea face acest server inaccesibil.";
+$a->strings["Site name"] = "Nume site";
+$a->strings["Banner/Logo"] = "Baner/Logo";
+$a->strings["Additional Info"] = "Informaţii suplimentare";
+$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Pentru serverele publice: puteţi să adăugaţi aici informaţiile suplimentare ce vor fi afişate pe dir.friendica.com/siteinfo.";
+$a->strings["System language"] = "Limbă System l";
+$a->strings["System theme"] = "Temă System ";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Tema implicită a sistemului - se poate supraregla prin profilele de utilizator - <a href='#' id='cnftheme'>modificați configurările temei</a>";
+$a->strings["Mobile system theme"] = "Temă sisteme mobile";
+$a->strings["Theme for mobile devices"] = "Temă pentru dispozitivele mobile";
+$a->strings["SSL link policy"] = "Politivi link  SSL ";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Determină dacă legăturile generate ar trebui forţate să utilizeze SSL";
+$a->strings["Old style 'Share'"] = "Stilul vechi de 'Distribuiţi'";
+$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Dezactivează elementul bbcode 'distribuiţi' pentru elementele repetitive.";
+$a->strings["Hide help entry from navigation menu"] = "Ascunde elementele de ajutor, din meniul de navigare";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Ascunde intrările de meniu pentru paginile de Ajutor, din meniul de navigare. Îl puteţi accesa în continuare direct, apelând /ajutor.";
+$a->strings["Single user instance"] = "Instanţă cu un singur utilizator";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "Stabiliți această instanţă ca utilizator-multipli sau utilizator/unic, pentru utilizatorul respectiv";
+$a->strings["Maximum image size"] = "Maxim mărime imagine";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Dimensiunea maximă în octeţi, a imaginii încărcate. Implicit este 0, ceea ce înseamnă fără limite.";
+$a->strings["Maximum image length"] = "Dimensiunea maximă a imaginii";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Dimensiunea maximă în pixeli a celei mai lungi laturi a imaginii încărcate. Implicit este -1, ceea ce înseamnă fără limite.";
+$a->strings["JPEG image quality"] = "Calitate imagine JPEG ";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Imaginile JPEG încărcate vor fi salvate cu această calitate stabilită [0-100]. Implicit este 100, ceea ce înseamnă calitate completă.";
+$a->strings["Register policy"] = "Politici inregistrare ";
+$a->strings["Maximum Daily Registrations"] = "Înregistrări Zilnice Maxime";
+$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "Dacă înregistrarea este permisă de mai sus, aceasta stabileşte numărul maxim de utilizatori noi înregistraţi, acceptaţi pe zi. Dacă înregistrarea este stabilită ca închisă, această setare nu are efect.";
+$a->strings["Register text"] = "Text înregistrare";
+$a->strings["Will be displayed prominently on the registration page."] = "Va fi afişat vizibil pe pagina de înregistrare.";
+$a->strings["Accounts abandoned after x days"] = "Conturi abandonate după x zile";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Nu va risipi resurse de sistem interogând site-uri externe pentru conturi abandonate. Introduceţi 0 pentru nici-o limită de timp.";
+$a->strings["Allowed friend domains"] = "Domenii prietene permise";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista cu separator prin virgulă a domeniilor ce sunt permise pentru a stabili relaţii de prietenie cu acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu";
+$a->strings["Allowed email domains"] = "Domenii de email, permise";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista cu separator prin virgulă a domeniilor ce sunt permise în adresele de email pentru înregistrările pe acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu";
+$a->strings["Block public"] = "Blocare acces public";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Bifați pentru a bloca accesul public, pe acest site, către toate paginile publice cu caracter personal, doar dacă nu sunteţi deja autentificat.";
+$a->strings["Force publish"] = "Forțează publicarea";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Bifați pentru a forţa, ca toate profilurile de pe acest site să fie enumerate în directorul site-ului.";
+$a->strings["Global directory update URL"] = "URL actualizare director global";
+$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL pentru a actualiza directorul global. Dacă aceasta nu se stabilește, director global este complet indisponibil pentru aplicație.";
+$a->strings["Allow threaded items"] = "Permite elemente înșiruite";
+$a->strings["Allow infinite level threading for items on this site."] = "Permite pe acest site, un număr infinit de nivele de înșiruire.";
+$a->strings["Private posts by default for new users"] = "Postările private, ca implicit pentru utilizatori noi";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Stabilește permisiunile de postare implicite, pentru toți membrii noi, la grupul de confidențialitate implicit, mai degrabă decât cel public.";
+$a->strings["Don't include post content in email notifications"] = "Nu include conţinutul postării în notificările prin email";
+$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."] = "Nu include conținutul unui post/comentariu/mesaj privat/etc. în notificările prin email, ce sunt trimise de pe acest site, ca și masură de confidenţialitate.";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "Nu permiteţi accesul public la suplimentele enumerate în meniul de aplicaţii.";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Bifând această casetă va restricționa, suplimentele enumerate în meniul de aplicaţii, exclusiv la accesul membrilor.";
+$a->strings["Don't embed private images in posts"] = "Nu încorpora imagini private în postări";
+$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."] = "Nu înlocui fotografiile private, locale, din postări cu o copie încorporată imaginii. Aceasta înseamnă că, contactele care primesc postări ce conțin fotografii private vor trebui să se autentifice şi să încarce fiecare imagine, ceea ce poate dura ceva timp.";
+$a->strings["Allow Users to set remote_self"] = "Permite utilizatorilor să-și stabilească 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."] = "Bifând aceasta, fiecărui utilizator îi este permis să marcheze fiecare contact, ca și propriu_la-distanță în dialogul de remediere contact. Stabilind acest marcaj unui un contact, va determina oglindirea fiecărei postări a respectivului contact, în fluxul utilizatorilor.";
+$a->strings["Block multiple registrations"] = "Blocare înregistrări multiple";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "Interzice utilizatorilor să-și înregistreze conturi adiționale pentru a le folosi ca pagini.";
+$a->strings["OpenID support"] = "OpenID support";
+$a->strings["OpenID support for registration and logins."] = "Suport OpenID pentru înregistrare şi autentificări.";
+$a->strings["Fullname check"] = "Verificare Nume complet";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forțează utilizatorii să se înregistreze cu un spaţiu între prenume şi nume, în câmpul pentru Nume complet, ca și măsură antispam";
+$a->strings["UTF-8 Regular expressions"] = "UTF-8 Regular expresii";
+$a->strings["Use PHP UTF8 regular expressions"] = "Utilizaţi  PHP UTF-8 Regular expresii";
+$a->strings["Show Community Page"] = "Arată Pagina Communitz";
+$a->strings["Display a Community page showing all recent public postings on this site."] = "Afişează o Pagina de Comunitate, arătând toate postările publice recente  pe acest site.";
+$a->strings["Enable OStatus support"] = "Activează Suport 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."] = "Oferă compatibilitate de integrare OStatus (StatusNet, GNU Sociale etc.). Toate comunicațiile din OStatus sunt publice, astfel încât avertismentele de confidenţialitate  vor fi ocazional afişate.";
+$a->strings["OStatus conversation completion interval"] = "Intervalul OStatus  de finalizare a conversaţiei";
+$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Cât de des ar trebui, operatorul de sondaje, să verifice existența intrărilor noi din conversațiile OStatus? Aceasta poate fi o resursă de sarcini utile.";
+$a->strings["Enable Diaspora support"] = "Activează Suport Diaspora";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Oferă o compatibilitate de reţea Diaspora, întegrată.";
+$a->strings["Only allow Friendica contacts"] = "Se permit doar contactele Friendica";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Toate contactele trebuie să utilizeze protocoalele Friendica. Toate celelalte protocoale, integrate, de comunicaţii sunt dezactivate.";
+$a->strings["Verify SSL"] = "Verifică SSL";
+$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Dacă doriţi, puteţi porni verificarea cu strictețe a certificatului. Aceasta va însemna că nu vă puteţi conecta (deloc) la site-uri SSL auto-semnate.";
+$a->strings["Proxy user"] = "Proxy user";
+$a->strings["Proxy URL"] = "Proxy URL";
+$a->strings["Network timeout"] = "Timp de expirare rețea";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valoare exprimată în secunde. Stabiliți la 0 pentru nelimitat (nu este recomandat).";
+$a->strings["Delivery interval"] = "Interval de livrare";
+$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Întârzierea proceselor de livrare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. Recomandat: 4-5 pentru gazde comune, 2-3 pentru servere virtuale private, 0-1 pentru servere dedicate mari.";
+$a->strings["Poll interval"] = "Interval de Sondare";
+$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Întârzierea proceselor de sondare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. dacă este 0, utilizează intervalul de livrare.";
+$a->strings["Maximum Load Average"] = "Media Maximă de Încărcare";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Încărcarea maximă a sistemului înainte ca livrarea şi procesele de sondare să fie amânate - implicit 50.";
+$a->strings["Use MySQL full text engine"] = "Utilizare motor text-complet MySQL";
+$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activează motorul pentru text complet. Grăbeşte căutare - dar poate căuta, numai pentru minim 4 caractere.";
+$a->strings["Suppress Language"] = "Suprimă Limba";
+$a->strings["Suppress language information in meta information about a posting."] = "Suprimă informaţiile despre limba din informaţiile meta ale unei postări.";
+$a->strings["Path to item cache"] = "Calea pentru elementul cache";
+$a->strings["Cache duration in seconds"] = "Durata Cache în secunde";
+$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Cât timp trebuie să fie reţinute fişierele cache? Valoarea implicită este de 86400 secunde (O zi).";
+$a->strings["Path for lock file"] = "Cale pentru blocare fișiere";
+$a->strings["Temp path"] = "Calea Temp";
+$a->strings["Base path to installation"] = "Calea de bază pentru instalare";
+$a->strings["New base url"] = "URL de bază nou";
+$a->strings["Update has been marked successful"] = "Actualizarea a fost marcată cu succes";
+$a->strings["Executing %s failed. Check system logs."] = "Executarea %s a eșuat. Verificaţi jurnalele de sistem.";
+$a->strings["Update %s was successfully applied."] = "Actualizarea %s a fost aplicată cu succes.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Actualizare %s nu a returnat nici-un status. Nu se știe dacă a reuşit.";
+$a->strings["Update function %s could not be found."] = "Funcția de actualizare %s nu s-a putut găsi.";
+$a->strings["No failed updates."] = "Nici-o actualizare eșuată.";
+$a->strings["Failed Updates"] = "Actualizări Eșuate";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Aceasta nu include actualizările dinainte de 1139, care nu a returnat nici-un status.";
+$a->strings["Mark success (if update was manually applied)"] = "Marcaţi ca și realizat (dacă actualizarea a fost aplicată manual)";
+$a->strings["Attempt to execute this update step automatically"] = "Se încearcă executarea automată a acestei etape de actualizare";
+$a->strings["Registration details for %s"] = "Detaliile de înregistrare pentru %s";
+$a->strings["Registration successful. Email send to user"] = "Înregistrarea s-a efectuat cu succes. Un email a fost trimis utilizatorului";
+$a->strings["%s user blocked/unblocked"] = array(
+       0 => "%s utilizator blocat/deblocat",
+       1 => "%s utilizatori blocați/deblocați",
+       2 => "%s de utilizatori blocați/deblocați",
+);
+$a->strings["%s user deleted"] = array(
+       0 => "%s utilizator şters",
+       1 => "%s utilizatori şterşi",
+       2 => "%s utilizatori şterşi",
+);
+$a->strings["User '%s' deleted"] = "Utilizator %s şters";
+$a->strings["User '%s' unblocked"] = "Utilizator %s deblocat";
+$a->strings["User '%s' blocked"] = "Utilizator %s blocat";
+$a->strings["Add User"] = "Adăugaţi Utilizator";
+$a->strings["select all"] = "selectează tot";
+$a->strings["User registrations waiting for confirm"] = "Înregistrarea utilizatorului, aşteaptă confirmarea";
+$a->strings["User waiting for permanent deletion"] = "Utilizatorul așteaptă să fie șters definitiv";
+$a->strings["Request date"] = "Data cererii";
+$a->strings["Name"] = "Nume";
+$a->strings["Email"] = "Email";
+$a->strings["No registrations."] = "Nici-o înregistrare.";
+$a->strings["Deny"] = "Respinge";
+$a->strings["Block"] = "Blochează";
+$a->strings["Unblock"] = "Deblochează";
+$a->strings["Site admin"] = "Site admin";
+$a->strings["Account expired"] = "Cont expirat";
+$a->strings["New User"] = "Utilizator Nou";
+$a->strings["Register date"] = "Data înregistrare";
+$a->strings["Last login"] = "Ultimul login";
+$a->strings["Last item"] = "Ultimul element";
+$a->strings["Deleted since"] = "Șters din";
+$a->strings["Account"] = "Cont";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Utilizatorii selectați vor fi ştersi!\\n\\nTot ce au postat acești utilizatori pe acest site, va fi şters permanent!\\n\\nConfirmați?";
+$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?"] = "Utilizatorul {0}  va fi şters!\\n\\nTot ce a postat acest utilizator pe acest site, va fi şters permanent!\\n\\nConfirmați?";
+$a->strings["Name of the new user."] = "Numele noului utilizator.";
+$a->strings["Nickname"] = "Pseudonim";
+$a->strings["Nickname of the new user."] = "Pseudonimul noului utilizator.";
+$a->strings["Email address of the new user."] = "Adresa de e-mail a utilizatorului nou.";
+$a->strings["Plugin %s disabled."] = "Modulul %s a fost dezactivat.";
+$a->strings["Plugin %s enabled."] = "Modulul %s a fost activat.";
+$a->strings["Disable"] = "Dezactivează";
+$a->strings["Enable"] = "Activează";
+$a->strings["Toggle"] = "Comutare";
+$a->strings["Settings"] = "Setări";
+$a->strings["Author: "] = "Autor: ";
+$a->strings["Maintainer: "] = "Responsabil:";
+$a->strings["No themes found."] = "Nici-o temă găsită.";
+$a->strings["Screenshot"] = "Screenshot";
+$a->strings["[Experimental]"] = "[Experimental]";
+$a->strings["[Unsupported]"] = "[Unsupported]";
+$a->strings["Log settings updated."] = "Jurnalul de configurări fost actualizat.";
+$a->strings["Clear"] = "Curăţă";
+$a->strings["Enable Debugging"] = "Activează Depanarea";
+$a->strings["Log file"] = "Fişier Log ";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Trebuie să fie inscriptibil pentru serverul web. Relativ la directoul dvs. superior Friendica.";
+$a->strings["Log level"] = "Nivel log";
+$a->strings["Update now"] = "Actualizează acum";
+$a->strings["Close"] = "Închide";
+$a->strings["FTP Host"] = "FTP Host";
+$a->strings["FTP Path"] = "FTP Path";
+$a->strings["FTP User"] = "FTP User";
+$a->strings["FTP Password"] = "FTP Parolă";
+$a->strings["New Message"] = "Mesaj nou";
+$a->strings["No recipient selected."] = "Nici-o adresă selectată.";
+$a->strings["Unable to locate contact information."] = "Nu se pot localiza informaţiile de contact.";
+$a->strings["Message could not be sent."] = "Mesajul nu a putut fi trimis.";
+$a->strings["Message collection failure."] = "Eșec de colectare mesaj.";
+$a->strings["Message sent."] = "Mesaj trimis.";
+$a->strings["Do you really want to delete this message?"] = "Chiar doriţi să ştergeţi acest mesaj ?";
+$a->strings["Message deleted."] = "Mesaj şters";
+$a->strings["Conversation removed."] = "Conversaşie inlăturată.";
+$a->strings["Please enter a link URL:"] = "Introduceţi un link URL:";
+$a->strings["Send Private Message"] = "Trimite mesaj privat";
+$a->strings["To:"] = "Către: ";
+$a->strings["Subject:"] = "Subiect:";
+$a->strings["Your message:"] = "Mesajul dvs :";
+$a->strings["Upload photo"] = "Încarcă foto";
+$a->strings["Insert web link"] = "Inserează link web";
+$a->strings["No messages."] = "Nici-un mesaj.";
+$a->strings["Unknown sender - %s"] = "Expeditor necunoscut - %s";
+$a->strings["You and %s"] = "Tu şi  %s";
+$a->strings["%s and You"] = "%s şi dvs";
+$a->strings["Delete conversation"] = "Ștergeți conversaţia";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d mesaj",
+       1 => "%d mesaje",
+       2 => "%d mesaje",
+);
+$a->strings["Message not available."] = "Mesaj nedisponibil";
+$a->strings["Delete message"] = "Şterge mesaj";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Nici-o comunicaţie securizată disponibilă. <strong>Veți putea</strong> răspunde din pagina de profil a expeditorului.";
+$a->strings["Send Reply"] = "Răspunde";
+$a->strings["Item not found"] = "Element negăsit";
+$a->strings["Edit post"] = "Editează post";
+$a->strings["upload photo"] = "încărcare fotografie";
+$a->strings["Attach file"] = "Ataşează fişier";
+$a->strings["attach file"] = "ataşează fişier";
+$a->strings["web link"] = "web link";
+$a->strings["Insert video link"] = "Inserează video link";
+$a->strings["video link"] = "video link";
+$a->strings["Insert audio link"] = "Inserare link audio";
+$a->strings["audio link"] = "audio link";
+$a->strings["Set your location"] = "Setează locaţia dvs";
+$a->strings["set location"] = "set locaţie";
+$a->strings["Clear browser location"] = "Curățare locație browser";
+$a->strings["clear location"] = "şterge locaţia";
+$a->strings["Permission settings"] = "Setări permisiuni";
+$a->strings["CC: email addresses"] = "CC:  adresă email";
+$a->strings["Public post"] = "Public post";
+$a->strings["Set title"] = "Setează titlu";
+$a->strings["Categories (comma-separated list)"] = "Categorii (listă cu separator prin virgulă)";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Exemplu: bob@exemplu.com, mary@exemplu.com";
+$a->strings["Profile not found."] = "Profil negăsit.";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Aceasta se poate întâmpla ocazional dacă contactul a fost solicitat de către ambele persoane şi acesta a fost deja aprobat.";
+$a->strings["Response from remote site was not understood."] = "Răspunsul de la adresa de la distanţă, nu a fost înțeles.";
+$a->strings["Unexpected response from remote site: "] = "Răspuns neaşteptat de la site-ul de la distanţă:";
+$a->strings["Confirmation completed successfully."] = "Confirmare încheiată cu succes.";
+$a->strings["Remote site reported: "] = "Site-ul de la distanţă a raportat:";
+$a->strings["Temporary failure. Please wait and try again."] = "Eroare Temporară. Vă rugăm să aşteptaţi şi încercaţi din nou.";
+$a->strings["Introduction failed or was revoked."] = "Introducerea a eşuat sau a fost revocată.";
+$a->strings["Unable to set contact photo."] = "Imposibil de stabilit fotografia de contact.";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s este acum prieten cu %2\$s";
+$a->strings["No user record found for '%s' "] = "Nici-o înregistrare de utilizator găsită pentru '%s'";
+$a->strings["Our site encryption key is apparently messed up."] = "Se pare că, cheia de criptare a site-ului nostru s-a încurcat.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "A fost furnizată o adresă URL goală, sau adresa URL nu poate fi decriptată de noi.";
+$a->strings["Contact record was not found for you on our site."] = "Registrul contactului nu a fost găsit pe site-ul nostru.";
+$a->strings["Site public key not available in contact record for URL %s."] = "Cheia publică a site-ului nu este disponibilă în registrul contactului pentru URL-ul %s.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID-ul furnizat de către sistemul dumneavoastră este un duplicat pe sistemul nostru. Ar trebui să funcţioneze dacă încercaţi din nou.";
+$a->strings["Unable to set your contact credentials on our system."] = "Imposibil de configurat datele dvs. de autentificare, pe sistemul nostru.";
+$a->strings["Unable to update your contact profile details on our system"] = "Imposibil de actualizat detaliile de profil ale contactului dvs., pe sistemul nostru.";
+$a->strings["Connection accepted at %s"] = "Conexiune acceptată la %s";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s s-a alăturat lui %2\$s";
+$a->strings["Event title and start time are required."] = "Titlul evenimentului şi timpul de pornire sunt necesare.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Editează eveniment";
+$a->strings["link to source"] = "link către sursă";
+$a->strings["Events"] = "Evenimente";
+$a->strings["Create New Event"] = "Crează eveniment nou";
+$a->strings["Previous"] = "Precedent";
+$a->strings["Next"] = "Next";
+$a->strings["hour:minute"] = "ore:minute";
+$a->strings["Event details"] = "Detalii eveniment";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Formatul este %s %s.Data de începere și Titlul sunt necesare.";
+$a->strings["Event Starts:"] = "Evenimentul Începe:";
+$a->strings["Required"] = "Cerut";
+$a->strings["Finish date/time is not known or not relevant"] = "Data/ora de finalizare nu este cunoscută sau nu este relevantă";
+$a->strings["Event Finishes:"] = "Evenimentul se Finalizează:";
+$a->strings["Adjust for viewer timezone"] = "Reglați pentru fusul orar al vizitatorului";
+$a->strings["Description:"] = "Descriere:";
+$a->strings["Location:"] = "Locaţie:";
+$a->strings["Title:"] = "Titlu:";
+$a->strings["Share this event"] = "Partajează acest eveniment";
+$a->strings["Photos"] = "Poze";
+$a->strings["Files"] = "Fişiere";
+$a->strings["Welcome to %s"] = "Bine aţi venit la %s";
+$a->strings["Remote privacy information not available."] = "Informaţiile la distanţă despre confidenţialitate, nu sunt disponibile.";
+$a->strings["Visible to:"] = "Visibil către:";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numărul de mesaje, zilnice de perete, pentru %s a fost depăşit. Mesajul a eşuat.";
+$a->strings["Unable to check your home location."] = "Imposibil de verificat locaţia dvs. de reşedinţă.";
+$a->strings["No recipient."] = "Nici-un destinatar.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Dacă doriţi ca %s să vă răspundă, vă rugăm să verificaţi dacă configurările de confidenţialitate de pe site-ul dumneavoastră, permite mail-uri private de la expeditori necunoscuți.";
+$a->strings["Visit %s's profile [%s]"] = "Vizitați profilul %s [%s]";
+$a->strings["Edit contact"] = "Editează contact";
+$a->strings["Contacts who are not members of a group"] = "Contactele care nu sunt membre ale unui grup";
+$a->strings["This is Friendica, version"] = "Friendica, versiunea";
+$a->strings["running at web location"] = "rulează la locaţia web";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Vă rugăm să vizitaţi <a href=\"http://friendica.com\">Friendica.com</a> pentru a afla mai multe despre proiectul Friendica.";
+$a->strings["Bug reports and issues: please visit"] = "Rapoarte de erori şi probleme: vă rugăm să vizitaţi";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestii, laude, donatii, etc. - vă rugăm să trimiteți un email  pe \"Info\" at Friendica - dot com";
+$a->strings["Installed plugins/addons/apps:"] = "Module/suplimente/aplicații instalate:";
+$a->strings["No installed plugins/addons/apps"] = "Module/suplimente/aplicații neinstalate";
+$a->strings["Remove My Account"] = "Șterge Contul Meu";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Aceasta va elimina complet contul dvs. Odată ce a fostă, această acțiune este nerecuperabilă.";
+$a->strings["Please enter your password for verification:"] = "Vă rugăm să introduceţi parola dvs. pentru verificare:";
+$a->strings["Image exceeds size limit of %d"] = "Dimensiunea imaginii depăşeşte limita de %d";
+$a->strings["Unable to process image."] = "Nu s-a putut procesa imaginea.";
+$a->strings["Wall Photos"] = "Fotografii de Perete";
+$a->strings["Image upload failed."] = "Încărcarea imaginii a eşuat.";
+$a->strings["Authorize application connection"] = "Autorizare conectare aplicaţie";
+$a->strings["Return to your app and insert this Securty Code:"] = "Reveniți la aplicația dvs. şi introduceţi acest Cod de Securitate:";
+$a->strings["Please login to continue."] = "Vă rugăm să vă autentificați pentru a continua.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Doriţi să autorizați această aplicaţie pentru a vă accesa postările şi contactele, şi/sau crea noi postări pentru dvs.?";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a etichetat %3\$s de la %2\$s cu %4\$s";
+$a->strings["Photo Albums"] = "Albume Photo ";
+$a->strings["Contact Photos"] = "Photo Contact";
+$a->strings["Upload New Photos"] = "Încărcaţi Fotografii Noi";
+$a->strings["everybody"] = "oricine";
+$a->strings["Contact information unavailable"] = "Informaţii contact nedisponibile";
+$a->strings["Profile Photos"] = "Poze profil";
+$a->strings["Album not found."] = "Album negăsit";
+$a->strings["Delete Album"] = "Şterge Album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Doriţi într-adevăr să ştergeţi acest album foto și toate fotografiile sale?";
+$a->strings["Delete Photo"] = "Şterge  Poza";
+$a->strings["Do you really want to delete this photo?"] = "Sigur doriți să ștergeți această fotografie?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s a fost etichetat în %2\$s de către %3\$s";
+$a->strings["a photo"] = "o poză";
+$a->strings["Image exceeds size limit of "] = "Dimensiunea imaginii depăşeşte limita de";
+$a->strings["Image file is empty."] = "Fișierul imagine este gol.";
+$a->strings["No photos selected"] = "Nici-o fotografie selectată";
+$a->strings["Access to this item is restricted."] = "Accesul la acest element este restricționat.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Aţi folosit %1$.2f Mb din %2$.2f Mb de stocare foto.";
+$a->strings["Upload Photos"] = "Încărcare Fotografii";
+$a->strings["New album name: "] = "Nume album nou:";
+$a->strings["or existing album name: "] = "sau numele unui album existent:";
+$a->strings["Do not show a status post for this upload"] = "Nu afișa un status pentru această încărcare";
+$a->strings["Permissions"] = "Permisiuni";
+$a->strings["Show to Groups"] = "Afișare pentru Grupuri";
+$a->strings["Show to Contacts"] = "Afişează la Contacte";
+$a->strings["Private Photo"] = "Poze private";
+$a->strings["Public Photo"] = "Poze Publice";
+$a->strings["Edit Album"] = "Editează Album";
+$a->strings["Show Newest First"] = "Afișează Întâi cele Noi";
+$a->strings["Show Oldest First"] = "Afișează Întâi cele Vechi";
+$a->strings["View Photo"] = "Vizualizare Fotografie";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Permisiune refuzată. Accesul la acest element poate fi restricționat.";
+$a->strings["Photo not available"] = "Fotografia nu este disponibilă";
+$a->strings["View photo"] = "Vezi foto";
+$a->strings["Edit photo"] = "Editează  poza";
+$a->strings["Use as profile photo"] = "Utilizați ca și fotografie de profil";
+$a->strings["View Full Size"] = "Vizualizați la Dimensiunea Completă";
+$a->strings["Tags: "] = "Etichete:";
+$a->strings["[Remove any tag]"] = "[Elimină orice etichetă]";
+$a->strings["Rotate CW (right)"] = "Rotire spre dreapta";
+$a->strings["Rotate CCW (left)"] = "Rotire spre stânga";
+$a->strings["New album name"] = "Nume Nou Album";
+$a->strings["Caption"] = "Titlu";
+$a->strings["Add a Tag"] = "Adaugă un Tag";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemplu: @Bob, @Barbara_Jensen, @jim@exemplu.com , #California, #camping";
+$a->strings["Private photo"] = "Poze private";
+$a->strings["Public photo"] = "Poze Publice";
+$a->strings["Share"] = "Partajează";
+$a->strings["View Album"] = "Vezi Album";
+$a->strings["Recent Photos"] = "Poze Recente";
+$a->strings["No profile"] = "Niciun profil";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Înregistrarea s-a efectuat cu succes. Vă rugăm să vă verificaţi e-mailul pentru instrucţiuni suplimentare.";
+$a->strings["Failed to send email message. Here is the message that failed."] = "Eșec la trimiterea mesajului de email. Acesta este mesajul care a eşuat.";
+$a->strings["Your registration can not be processed."] = "Înregistrarea dvs. nu poate fi procesată.";
+$a->strings["Registration request at %s"] = "Solicitare de înregistrare la %s";
+$a->strings["Your registration is pending approval by the site owner."] = "Înregistrarea dvs. este în aşteptarea aprobării de către deținătorul site-ului.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Acest site a depăşit numărul zilnic permis al înregistrărilor de conturi. Vă rugăm să reîncercați mâine.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Puteți (opțional) să completaţi acest formular prin intermediul OpenID, introducând contul dvs. OpenID și apăsând pe 'Înregistrare'.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Dacă nu sunteţi familiarizați cu OpenID, vă rugăm să lăsaţi acest câmp gol iar apoi să completaţi restul elementelor.";
+$a->strings["Your OpenID (optional): "] = "Contul dvs. OpenID (opţional):";
+$a->strings["Include your profile in member directory?"] = "Includeți profilul dvs în directorul de membru?";
+$a->strings["Membership on this site is by invitation only."] = "Aderare pe acest site, este posibilă doar pe bază de invitație.";
+$a->strings["Your invitation ID: "] = "ID invitaţiei dvs:";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Numele Complet (de ex. Joe Smith):";
+$a->strings["Your Email Address: "] = "Adresa dvs de mail:";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Alegeţi un pseudonim de profil. Aceasta trebuie să înceapă cu un caracter text. Adresa profilului dvs. de pe acest site va fi de forma '<strong>pseudonim@\$sitename</strong>'.";
+$a->strings["Choose a nickname: "] = "Alegeţi un pseudonim:";
+$a->strings["Register"] = "Înregistrare";
+$a->strings["Import"] = "Import";
+$a->strings["Import your profile to this friendica instance"] = "Importați profilul dvs. în această instanță friendica";
+$a->strings["No valid account found."] = "Nici-un cont valid găsit.";
+$a->strings["Password reset request issued. Check your email."] = "Solicitarea de Resetare Parolă a fost emisă. Verificați-vă emailul.";
+$a->strings["Password reset requested at %s"] = "Solicitarea de resetare a parolei a fost făcută la %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Solicitarea nu se poate verifica. (Este posibil să fi solicitat-o anterior.) Resetarea parolei a eșuat.";
+$a->strings["Password Reset"] = "Resetare Parolă";
+$a->strings["Your password has been reset as requested."] = "Parola a fost resetată conform solicitării.";
+$a->strings["Your new password is"] = "Noua dvs. parolă este";
+$a->strings["Save or copy your new password - and then"] = "Salvați sau copiați noua dvs. parolă - şi apoi";
+$a->strings["click here to login"] = "click aici pentru logare";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Parola poate fi schimbată din pagina de <em>Configurări</em> după autentificarea cu succes.";
+$a->strings["Your password has been changed at %s"] = "Parola dumneavoastră a fost schimbată la %s";
+$a->strings["Forgot your Password?"] = "Ați uitat Parola?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduceţi adresa dumneavoastră de email şi trimiteți-o pentru a vă reseta parola. Apoi verificaţi-vă emailul pentru instrucţiuni suplimentare.";
+$a->strings["Nickname or Email: "] = "Pseudonim sau Email:";
+$a->strings["Reset"] = "Reset";
+$a->strings["System down for maintenance"] = "Sistemul este suspendat pentru întreținere";
+$a->strings["Item not available."] = "Elementul nu este disponibil.";
+$a->strings["Item was not found."] = "Element negăsit.";
+$a->strings["Applications"] = "Aplicații";
+$a->strings["No installed applications."] = "Nu există aplicații instalate.";
+$a->strings["Help:"] = "Ajutor:";
+$a->strings["Help"] = "Ajutor";
+$a->strings["%d contact edited."] = array(
+       0 => "%d contact editat.",
+       1 => "%d contacte editate.",
+       2 => "%d de contacte editate.",
+);
+$a->strings["Could not access contact record."] = "Nu se poate accesa registrul contactului.";
+$a->strings["Could not locate selected profile."] = "Nu se poate localiza profilul selectat.";
+$a->strings["Contact updated."] = "Contact actualizat.";
+$a->strings["Contact has been blocked"] = "Contactul a fost blocat";
+$a->strings["Contact has been unblocked"] = "Contactul a fost deblocat";
+$a->strings["Contact has been ignored"] = "Contactul a fost ignorat";
+$a->strings["Contact has been unignored"] = "Contactul a fost neignorat";
+$a->strings["Contact has been archived"] = "Contactul a fost arhivat";
+$a->strings["Contact has been unarchived"] = "Contactul a fost dezarhivat";
+$a->strings["Do you really want to delete this contact?"] = "Sigur doriți să ștergeți acest contact?";
+$a->strings["Contact has been removed."] = "Contactul a fost înlăturat.";
+$a->strings["You are mutual friends with %s"] = "Sunteţi prieten comun cu %s";
+$a->strings["You are sharing with %s"] = "Împărtășiți cu %s";
+$a->strings["%s is sharing with you"] = "%s împărtăşeşte cu dvs.";
+$a->strings["Private communications are not available for this contact."] = "Comunicaţiile private nu sunt disponibile pentru acest contact.";
+$a->strings["(Update was successful)"] = "(Actualizare a reuşit)";
+$a->strings["(Update was not successful)"] = "(Actualizare nu a reuşit)";
+$a->strings["Suggest friends"] = "Sugeraţi prieteni";
+$a->strings["Network type: %s"] = "Tipul rețelei: %s";
+$a->strings["%d contact in common"] = array(
+       0 => "%d contact în comun",
+       1 => "%d contacte în comun",
+       2 => "%d de contacte în comun",
+);
+$a->strings["View all contacts"] = "Vezi toate contactele";
+$a->strings["Toggle Blocked status"] = "Comutare status Blocat";
+$a->strings["Unignore"] = "Anulare ignorare";
+$a->strings["Toggle Ignored status"] = "Comutaţi status Ignorat";
+$a->strings["Unarchive"] = "Dezarhivează";
+$a->strings["Archive"] = "Arhivează";
+$a->strings["Toggle Archive status"] = "Comutaţi status Arhivat";
+$a->strings["Repair"] = "Repară";
+$a->strings["Advanced Contact Settings"] = "Configurări Avansate Contacte";
+$a->strings["Communications lost with this contact!"] = "S-a pierdut conexiunea cu acest contact!";
+$a->strings["Contact Editor"] = "Editor Contact";
+$a->strings["Profile Visibility"] = "Vizibilitate Profil";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vă rugăm să alegeţi profilul pe care doriţi să îl afişaţi pentru %s când acesta vă vizitează profuilul în mod securizat.";
+$a->strings["Contact Information / Notes"] = "Informaţii de Contact / Note";
+$a->strings["Edit contact notes"] = "Editare note de contact";
+$a->strings["Block/Unblock contact"] = "Blocare/Deblocare contact";
+$a->strings["Ignore contact"] = "Ignorare contact";
+$a->strings["Repair URL settings"] = "Remediere configurări URL";
+$a->strings["View conversations"] = "Vizualizaţi conversaţii";
+$a->strings["Delete contact"] = "Şterge contact";
+$a->strings["Last update:"] = "Ultima actualizare:";
+$a->strings["Update public posts"] = "Actualizare postări publice";
+$a->strings["Currently blocked"] = "Blocat în prezent";
+$a->strings["Currently ignored"] = "Ignorat în prezent";
+$a->strings["Currently archived"] = "Arhivat în prezent";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Răspunsurile/aprecierile pentru postările dvs. publice <strong>ar putea</strong> fi încă vizibile";
+$a->strings["Notification for new posts"] = "Notificare de postări noi";
+$a->strings["Send a notification of every new post of this contact"] = "Trimiteți o notificare despre fiecare postare nouă a acestui contact";
+$a->strings["Fetch further information for feeds"] = "Preluare informaţii suplimentare pentru fluxuri";
+$a->strings["Suggestions"] = "Sugestii";
+$a->strings["Suggest potential friends"] = "Sugeraţi prieteni potențiali";
+$a->strings["All Contacts"] = "Toate Contactele";
+$a->strings["Show all contacts"] = "Afişează toate contactele";
+$a->strings["Unblocked"] = "Deblocat";
+$a->strings["Only show unblocked contacts"] = "Se afişează numai contactele deblocate";
+$a->strings["Blocked"] = "Blocat";
+$a->strings["Only show blocked contacts"] = "Se afişează numai contactele blocate";
+$a->strings["Ignored"] = "Ignorat";
+$a->strings["Only show ignored contacts"] = "Se afişează numai contactele ignorate";
+$a->strings["Archived"] = "Arhivat";
+$a->strings["Only show archived contacts"] = "Se afişează numai contactele arhivate";
+$a->strings["Hidden"] = "Ascuns";
+$a->strings["Only show hidden contacts"] = "Se afişează numai contactele ascunse";
+$a->strings["Mutual Friendship"] = "Prietenie Reciprocă";
+$a->strings["is a fan of yours"] = "este fanul  dvs.";
+$a->strings["you are a fan of"] = "sunteţi un fan al";
+$a->strings["Contacts"] = "Contacte";
+$a->strings["Search your contacts"] = "Căutare contacte";
+$a->strings["Finding: "] = "Găsire:";
+$a->strings["Find"] = "Căutare";
+$a->strings["Update"] = "Actualizare";
+$a->strings["No videos selected"] = "Nici-un clip video selectat";
+$a->strings["Recent Videos"] = "Clipuri video recente";
+$a->strings["Upload New Videos"] = "Încărcaţi Clipuri Video Noi";
+$a->strings["Common Friends"] = "Prieteni Comuni";
+$a->strings["No contacts in common."] = "Nici-un contact în comun";
+$a->strings["Contact added"] = "Contact addăugat";
+$a->strings["Move account"] = "Mutaţi contul";
+$a->strings["You can import an account from another Friendica server."] = "Puteţi importa un cont dintr-un alt server Friendica.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Trebuie să vă exportați contul din vechiul server şi să-l încărcaţi aici. Vă vom recrea vechiul cont, aici cu toate contactele sale. Vom încerca de altfel să vă informăm prietenii că v-ați mutat aici.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Această caracteristică este experimentală. Nu putem importa contactele din reţeaua OStatus (statusnet/identi.ca) sau din Diaspora";
+$a->strings["Account file"] = "Fişier Cont";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pentru a vă exporta contul, deplasaţi-vă la  \"Configurări- >Export date personale \" şi selectaţi  \"Exportare cont \"";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s urmărește %3\$s postată %2\$s";
+$a->strings["Friends of %s"] = "Prieteni cu %s";
+$a->strings["No friends to display."] = "Nici-un prieten de afișat.";
+$a->strings["Tag removed"] = "Etichetă eliminată";
+$a->strings["Remove Item Tag"] = "Eliminați Eticheta Elementului";
+$a->strings["Select a tag to remove: "] = "Selectați o etichetă de eliminat:";
+$a->strings["Remove"] = "Eliminare";
+$a->strings["Welcome to Friendica"] = "Bun Venit la Friendica";
+$a->strings["New Member Checklist"] = "Lista de Verificare Membrii Noi";
+$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."] = "Dorim să vă oferim câteva sfaturi şi legături pentru a vă ajuta să aveți o experienţă cât mai plăcută. Apăsați pe orice element pentru a vizita pagina relevantă. O legătură către această pagină va fi vizibilă de pe pagina principală, pentru două săptămâni după înregistrarea dvs. iniţială, iar apoi va dispare în tăcere.";
+$a->strings["Getting Started"] = "Noțiuni de Bază";
+$a->strings["Friendica Walk-Through"] = "Ghidul de Prezentare 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."] = "Pe pagina dvs. de <em>Pornire Rapidă</em>  - veți găsi o scurtă introducere pentru profilul dvs. şi pentru filele de reţea, veți face câteva conexiuni noi, şi veți găsi câteva grupuri la care să vă alăturați.";
+$a->strings["Go to Your Settings"] = "Mergeți la Configurări";
+$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."] = "Din pagina dvs. de <em>Configurări</em> - schimbaţi-vă parola iniţială. De asemenea creați o notă pentru Adresa dvs. de Identificare. Aceasta arată exact ca o adresă de email - şi va fi utilă la stabilirea de prietenii pe rețeaua socială web gratuită.";
+$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."] = "Revizuiți celelalte configurări, în special configurările de confidenţialitate. O listă de directoare nepublicate este ca și cum ați avea un număr de telefon necatalogat. În general, ar trebui probabil să vă publicați lista - cu excepţia cazului în care toți prietenii şi potenţialii prieteni, știu exact cum să vă găsească.";
+$a->strings["Profile"] = "Profil";
+$a->strings["Upload Profile Photo"] = "Încărcare Fotografie Profil";
+$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."] = "Încărcaţi o fotografie de profil, dacă nu aţi făcut-o deja.Studiile au arătat că, pentru persoanele cu fotografiile lor reale, există de zece ori mai multe şanse să-și facă prieteni, decât cei care nu folosesc fotografii reale.";
+$a->strings["Edit Your Profile"] = "Editare 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."] = "Editaţi-vă profilul <strong>Implicit</strong> după bunul plac. Revizuiți configurările pentru a ascunde lista dvs. de prieteni și pentru ascunderea profilului dvs., de vizitatorii necunoscuți.";
+$a->strings["Profile Keywords"] = "Cuvinte-Cheie Profil";
+$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."] = "Stabiliți câteva cuvinte-cheie publice pentru profilul dvs. implicit, cuvinte ce descriu cel mai bine interesele dvs. Vom putea astfel găsi alte persoane cu interese similare și vă vom sugera prietenia lor.";
+$a->strings["Connecting"] = "Conectare";
+$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."] = "Autorizați Conectorul Facebook dacă dețineți în prezent un cont pe Facebook, şi vom importa (opțional) toți prietenii și toate conversațiile de pe Facebook.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Dacă</em> aceasta este propriul dvs. server, instalarea suplimentului Facebook, vă poate uşura tranziţia la reţeaua socială web gratuită.";
+$a->strings["Importing Emails"] = "Importare Email-uri";
+$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"] = "Introduceţi informațiile dvs. de acces la email adresa de email, în pagina dvs. de Configurări Conector, dacă doriți să importați și să interacționați cu prietenii sau cu listele de email din  Căsuța dvs. de Mesaje Primite.";
+$a->strings["Go to Your Contacts Page"] = "Dute la pagina ta Contacte ";
+$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."] = "Pagina dvs. de Contact este poarta dvs. de acces către administrarea prieteniilor şi pentru conectarea cu prietenii din alte rețele. În general, introduceți adresa lor sau URL-ul către site, folosind dialogul <em>Adăugare Contact Nou</em>.";
+$a->strings["Go to Your Site's Directory"] = "Mergeţi la Directorul Site-ului";
+$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."] = "Pagina Directorului vă permite să găsiţi alte persoane în această reţea sau în alte site-uri asociate. Căutaţi o legătură de <em>Conectare</em> sau <em>Urmărire</em> pe pagina lor de profil. Oferiți propria dvs. Adresă de Identitate dacă se solicită.";
+$a->strings["Finding New People"] = "Găsire Persoane Noi";
+$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."] = "Pe panoul lateral al paginii Contacte sunt câteva unelte utile pentru a găsi noi prieteni. Putem asocia persoanele după interese, căuta persoane după nume sau interes, şi vă putem oferi sugestii bazate pe relaţiile din reţea. Pe un site nou-nouț, sugestiile de prietenie vor începe în mod normal să fie populate în termen de 24 de ore.";
+$a->strings["Groups"] = "Groupuri";
+$a->strings["Group Your Contacts"] = "Grupați-vă Contactele";
+$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."] = "Odată ce v-aţi făcut unele prietenii, organizaţi-le în grupuri de conversaţii private din bara laterală a paginii dvs. de Contact  şi apoi puteţi interacționa, privat cu fiecare grup pe pagina dumneavoastră de Reţea.";
+$a->strings["Why Aren't My Posts Public?"] = "De ce nu sunt Postările Mele Publice?";
+$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 vă respectă confidenţialitatea. Implicit, postările dvs. vor fi afişate numai persoanelor pe care le-ați adăugat ca și prieteni. Pentru mai multe informaţii, consultaţi secţiunea de asistenţă din legătura de mai sus.";
+$a->strings["Getting Help"] = "Obţinerea de Ajutor";
+$a->strings["Go to the Help Section"] = "Navigați la Secțiunea Ajutor";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Paginile noastre de <strong>ajutor</strong> pot fi consultate pentru detalii, prin alte funcții şi resurse de program.";
+$a->strings["Remove term"] = "Eliminare termen";
+$a->strings["Saved Searches"] = "Căutări Salvate";
+$a->strings["Search"] = "Căutare";
+$a->strings["No results."] = "Nici-un rezultat.";
+$a->strings["Total invitation limit exceeded."] = "Limita totală a invitațiilor a fost depăşită.";
+$a->strings["%s : Not a valid email address."] = "%s : Nu este o adresă vaildă de email.";
+$a->strings["Please join us on Friendica"] = "Vă rugăm să veniți alături de noi pe Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limita invitațiilor a fost depăşită. Vă rugăm să vă contactați administratorul de sistem.";
+$a->strings["%s : Message delivery failed."] = "%s : Livrarea mesajului a eşuat.";
+$a->strings["%d message sent."] = array(
+       0 => "%d mesaj trimis.",
+       1 => "%d mesaje trimise.",
+       2 => "%d de mesaje trimise.",
+);
+$a->strings["You have no more invitations available"] = "Nu mai aveți invitaţii disponibile";
+$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."] = "Vizitaţi %s pentru o lista de site-uri publice la care puteţi alătura. Membrii Friendica de pe alte site-uri se pot conecta cu toții între ei, precum şi cu membri ai multor alte reţele sociale.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Pentru a accepta această invitaţie, vă rugăm să vizitaţi şi să vă înregistraţi pe %s sau orice alt site public Friendica.";
+$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."] = "Toate site-urile Friendica sunt interconectate pentru a crea o imensă rețea socială cu o confidențialitate sporită, ce este deținută și controlată de către membrii săi. Aceștia se pot conecta, de asemenea, cu multe rețele sociale tradiționale. Vizitaţi %s pentru o lista de site-uri alternative Friendica în care vă puteţi alătura.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ne cerem scuze. Acest sistem nu este configurat în prezent pentru conectarea cu alte site-uri publice sau pentru a invita membrii.";
+$a->strings["Send invitations"] = "Trimiteți invitaţii";
+$a->strings["Enter email addresses, one per line:"] = "Introduceţi adresele de email, una pe linie:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Vă invit cordial să vă alăturați mie, si altor prieteni apropiați, pe Friendica - şi să ne ajutați să creăm o rețea socială mai bună.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Va fi nevoie să furnizați acest cod de invitaţie:  \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Odată ce v-aţi înregistrat, vă rog să vă conectaţi cu mine prin pagina mea de profil de la:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pentru mai multe informaţii despre proiectul Friendica, şi de ce credem că este important, vă rugăm să vizitaţi http://friendica.com";
+$a->strings["Additional features"] = "Caracteristici suplimentare";
+$a->strings["Display"] = "Afișare";
+$a->strings["Social Networks"] = "Rețele Sociale";
+$a->strings["Delegations"] = "Delegații";
+$a->strings["Connected apps"] = "Aplicații Conectate";
+$a->strings["Export personal data"] = "Exportare date personale";
+$a->strings["Remove account"] = "Ștergere cont";
+$a->strings["Missing some important data!"] = "Lipsesc unele date importante!";
+$a->strings["Failed to connect with email account using the settings provided."] = "A eşuat conectarea cu, contul de email, folosind configurările furnizate.";
+$a->strings["Email settings updated."] = "Configurările de email au fost actualizate.";
+$a->strings["Features updated"] = "Caracteristici actualizate";
+$a->strings["Relocate message has been send to your contacts"] = "Mesajul despre mutare, a fost trimis către contactele dvs.";
+$a->strings["Passwords do not match. Password unchanged."] = "Parolele nu coincid. Parolă neschimbată.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Parolele necompletate nu sunt permise. Parolă neschimbată.";
+$a->strings["Wrong password."] = "Parolă greșită.";
+$a->strings["Password changed."] = "Parola a fost schimbată.";
+$a->strings["Password update failed. Please try again."] = "Actualizarea parolei a eșuat. Vă rugăm să reîncercați.";
+$a->strings[" Please use a shorter name."] = "Vă rugăm să utilizaţi un nume mai scurt.";
+$a->strings[" Name too short."] = "Numele este prea scurt.";
+$a->strings["Wrong Password"] = "Parolă Greșită";
+$a->strings[" Not valid email."] = "Nu este un email valid.";
+$a->strings[" Cannot change to that email."] = "Nu poate schimba cu acest email.";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Forumul privat nu are permisiuni de confidenţialitate. Se folosește confidențialitatea implicită de grup.";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Forumul Privat nu are permisiuni de confidenţialitate şi nici o confidențialitate implicită de grup.";
+$a->strings["Settings updated."] = "Configurări actualizate.";
+$a->strings["Add application"] = "Adăugare aplicaţie";
+$a->strings["Consumer Key"] = "Cheia Utilizatorului";
+$a->strings["Consumer Secret"] = "Cheia Secretă a Utilizatorului";
+$a->strings["Redirect"] = "Redirecţionare";
+$a->strings["Icon url"] = "URL pictogramă";
+$a->strings["You can't edit this application."] = "Nu puteți edita această aplicaţie.";
+$a->strings["Connected Apps"] = "Aplicații Conectate";
+$a->strings["Client key starts with"] = "Cheia clientului începe cu";
+$a->strings["No name"] = "Fără nume";
+$a->strings["Remove authorization"] = "Eliminare autorizare";
+$a->strings["No Plugin settings configured"] = "Nici-o configurare stabilită pentru modul";
+$a->strings["Plugin Settings"] = "Configurări Modul";
+$a->strings["Off"] = "Off";
+$a->strings["On"] = "On";
+$a->strings["Additional Features"] = "Caracteristici Suplimentare";
+$a->strings["Built-in support for %s connectivity is %s"] = "Suportul încorporat pentru conectivitatea %s este %s";
+$a->strings["enabled"] = "activat";
+$a->strings["disabled"] = "dezactivat";
+$a->strings["StatusNet"] = "StatusNet";
+$a->strings["Email access is disabled on this site."] = "Accesul de email este dezactivat pe acest site.";
+$a->strings["Email/Mailbox Setup"] = "Configurare E-Mail/Căsuță poştală";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Dacă doriţi să comunicaţi cu contactele de email folosind acest serviciu (opţional), vă rugăm să precizaţi cum doriți să vă conectaţi la căsuța dvs. poştală.";
+$a->strings["Last successful email check:"] = "Ultima verificare, cu succes, a email-ului:";
+$a->strings["IMAP server name:"] = "Nume server IMAP:";
+$a->strings["IMAP port:"] = "IMAP port:";
+$a->strings["Security:"] = "Securitate:";
+$a->strings["None"] = "Nimic";
+$a->strings["Email login name:"] = "Nume email autentificare:";
+$a->strings["Email password:"] = "Parolă de e-mail:";
+$a->strings["Reply-to address:"] = "Adresă pentru răspuns:";
+$a->strings["Send public posts to all email contacts:"] = "Trimiteți postările publice la toate contactele de email:";
+$a->strings["Action after import:"] = "Acţiune după importare:";
+$a->strings["Mark as seen"] = "Marcați ca și vizualizat";
+$a->strings["Move to folder"] = "Mutare în dosar";
+$a->strings["Move to folder:"] = "Mutare în dosarul:";
+$a->strings["Display Settings"] = "Preferințe Ecran";
+$a->strings["Display Theme:"] = "Temă Afişaj:";
+$a->strings["Mobile Theme:"] = "Temă pentru Mobile:";
+$a->strings["Update browser every xx seconds"] = "Actualizare browser la fiecare fiecare xx secunde";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Minim 10 secunde, fără un maxim";
+$a->strings["Number of items to display per page:"] = "Numărul de elemente de afişat pe pagină:";
+$a->strings["Maximum of 100 items"] = "Maxim 100 de elemente";
+$a->strings["Number of items to display per page when viewed from mobile device:"] = "Numărul de elemente de afişat pe pagină atunci când se vizualizează de pe dispozitivul mobil:";
+$a->strings["Don't show emoticons"] = "Nu afișa emoticoane";
+$a->strings["Don't show notices"] = "Nu afișa notificări";
+$a->strings["Infinite scroll"] = "Derulare infinită";
+$a->strings["User Types"] = "Tipuri de Utilizator";
+$a->strings["Community Types"] = "Tipuri de Comunitare";
+$a->strings["Normal Account Page"] = "Pagină de Cont Simplu";
+$a->strings["This account is a normal personal profile"] = "Acest cont este un profil personal normal";
+$a->strings["Soapbox Page"] = "Pagină Soapbox";
+$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aprobă automat toate conexiunile/solicitările de prietenie ca și fani cu drepturi doar pentru vizualizare";
+$a->strings["Community Forum/Celebrity Account"] = "Cont Comunitate Forum/Celebritate";
+$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Aprobă automat toate conexiunile/solicitările de prietenie ca și fani cu drepturi doar pentru vizualizare";
+$a->strings["Automatic Friend Page"] = "Pagină Prietenie Automată";
+$a->strings["Automatically approve all connection/friend requests as friends"] = "Aprobă automat toate conexiunile/solicitările de prietenie ca și prieteni";
+$a->strings["Private Forum [Experimental]"] = "Forum Privat [Experimental]";
+$a->strings["Private forum - approved members only"] = "Forum Privat - numai membrii aprobați";
+$a->strings["OpenID:"] = "OpenID:";
+$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opţional) Permite acest OpenID să se conecteze la acest cont.";
+$a->strings["Publish your default profile in your local site directory?"] = "Publicați profilul dvs. implicit în directorul site-ului dvs. local?";
+$a->strings["Publish your default profile in the global social directory?"] = "Publicați profilul dvs. implicit în directorul social global?";
+$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ascundeţi lista dvs. de contacte/prieteni de vizitatorii profilului dvs. implicit?";
+$a->strings["Hide your profile details from unknown viewers?"] = "Ascundeţi detaliile profilului dvs. de vizitatorii necunoscuți?";
+$a->strings["Allow friends to post to your profile page?"] = "Permiteți prietenilor să posteze pe pagina dvs. de profil ?";
+$a->strings["Allow friends to tag your posts?"] = "Permiteți prietenilor să vă eticheteze postările?";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Ne permiteți să vă recomandăm ca și potențial prieten pentru membrii noi?";
+$a->strings["Permit unknown people to send you private mail?"] = "Permiteți persoanelor necunoscute să vă trimită mesaje private?";
+$a->strings["Profile is <strong>not published</strong>."] = "Profilul <strong>nu este publicat</strong>.";
+$a->strings["or"] = "sau";
+$a->strings["Your Identity Address is"] = "Adresa Dvs. de Identitate este";
+$a->strings["Automatically expire posts after this many days:"] = "Postările vor expira automat după atâtea zile:";
+$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Dacă se lasă necompletat, postările nu vor expira. Postările expirate vor fi şterse";
+$a->strings["Advanced expiration settings"] = "Configurări Avansate de Expirare";
+$a->strings["Advanced Expiration"] = "Expirare Avansată";
+$a->strings["Expire posts:"] = "Postările expiră:";
+$a->strings["Expire personal notes:"] = "Notele personale expiră:";
+$a->strings["Expire starred posts:"] = "Postările favorite expiră:";
+$a->strings["Expire photos:"] = "Fotografiile expiră:";
+$a->strings["Only expire posts by others:"] = "Expiră numai postările altora:";
+$a->strings["Account Settings"] = "Configurări Cont";
+$a->strings["Password Settings"] = "Configurări Parolă";
+$a->strings["New Password:"] = "Parola Nouă:";
+$a->strings["Confirm:"] = "Confirm:";
+$a->strings["Leave password fields blank unless changing"] = "Lăsaţi câmpurile, pentru parolă, goale dacă nu doriți să modificați";
+$a->strings["Current Password:"] = "Parola Curentă:";
+$a->strings["Your current password to confirm the changes"] = "Parola curentă pentru a confirma modificările";
+$a->strings["Password:"] = "Parola:";
+$a->strings["Basic Settings"] = "Configurări de Bază";
+$a->strings["Full Name:"] = "Nume complet:";
+$a->strings["Email Address:"] = "Adresa de email:";
+$a->strings["Your Timezone:"] = "Fusul dvs. orar:";
+$a->strings["Default Post Location:"] = "Locația Implicită pentru Postări";
+$a->strings["Use Browser Location:"] = "Folosește Locația Navigatorului:";
+$a->strings["Security and Privacy Settings"] = "Configurări de Securitate și Confidențialitate";
+$a->strings["Maximum Friend Requests/Day:"] = "Solicitări de Prietenie, Maxime/Zi";
+$a->strings["(to prevent spam abuse)"] = "(Pentru a preveni abuzul de tip spam)";
+$a->strings["Default Post Permissions"] = "Permisiuni Implicite Postări";
+$a->strings["(click to open/close)"] = "(apăsați pentru a deschide/închide)";
+$a->strings["Default Private Post"] = "Postare Privată Implicită";
+$a->strings["Default Public Post"] = "Postare Privată Implicită";
+$a->strings["Default Permissions for New Posts"] = "Permisiuni Implicite pentru Postările Noi";
+$a->strings["Maximum private messages per day from unknown people:"] = "Maximum de mesaje private pe zi, de la persoanele necunoscute:";
+$a->strings["Notification Settings"] = "Configurări de Notificare";
+$a->strings["By default post a status message when:"] = "Implicit, postează un mesaj de stare atunci când:";
+$a->strings["accepting a friend request"] = "se acceptă o solicitare de prietenie";
+$a->strings["joining a forum/community"] = "se aderă la un forum/o comunitate";
+$a->strings["making an <em>interesting</em> profile change"] = "se face o modificări de profil<em>interesantă</em>";
+$a->strings["Send a notification email when:"] = "Trimiteți o notificare email atunci când:";
+$a->strings["You receive an introduction"] = "Primiți o introducere";
+$a->strings["Your introductions are confirmed"] = "Introducerile dvs. sunt confirmate";
+$a->strings["Someone writes on your profile wall"] = "Cineva scrie pe perete dvs. de profil";
+$a->strings["Someone writes a followup comment"] = "Cineva scrie un comentariu de urmărire";
+$a->strings["You receive a private message"] = "Primiți un mesaj privat";
+$a->strings["You receive a friend suggestion"] = "Primiți  o sugestie de prietenie";
+$a->strings["You are tagged in a post"] = "Sunteți etichetat într-o postare";
+$a->strings["You are poked/prodded/etc. in a post"] = "Sunteți abordat/incitat/etc. într-o postare";
+$a->strings["Advanced Account/Page Type Settings"] = "Configurări Avansate Cont/Tip Pagină";
+$a->strings["Change the behaviour of this account for special situations"] = "Modificați comportamentul acestui cont pentru situațiile speciale";
+$a->strings["Relocate"] = "Mutare";
+$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."] = "Dacă aţi mutat acest profil dintr-un alt server, şi unele dintre contactele dvs. nu primesc actualizările dvs., încercaţi să apăsați acest buton.";
+$a->strings["Resend relocate message to contacts"] = "Retrimiteți contactelor, mesajul despre mutare";
+$a->strings["Item has been removed."] = "Elementul a fost eliminat.";
+$a->strings["People Search"] = "Căutare Persoane";
+$a->strings["No matches"] = "Nici-o potrivire";
+$a->strings["Profile deleted."] = "Profilul a fost şters.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Profilul nou a fost creat.";
+$a->strings["Profile unavailable to clone."] = "Profil indisponibil pentru clonare.";
+$a->strings["Profile Name is required."] = "Numele de Profil este necesar.";
+$a->strings["Marital Status"] = "Starea Civilă";
+$a->strings["Romantic Partner"] = "Partener Romantic";
+$a->strings["Likes"] = "Likes";
+$a->strings["Dislikes"] = "Antipatii";
+$a->strings["Work/Employment"] = "Loc de Muncă/Slujbă";
+$a->strings["Religion"] = "Religie";
+$a->strings["Political Views"] = "Viziuni Politice";
+$a->strings["Gender"] = "Sex";
+$a->strings["Sexual Preference"] = "Preferinţe Sexuale";
+$a->strings["Homepage"] = "Homepage";
+$a->strings["Interests"] = "Interese";
+$a->strings["Address"] = "Addresă";
+$a->strings["Location"] = "Locaţie";
+$a->strings["Profile updated."] = "Profil actualizat.";
+$a->strings[" and "] = "şi";
+$a->strings["public profile"] = "profil public";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s a modificat %2\$s în &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = "- Vizitați %2\$s lui %1\$s'";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s și-a actualizat %2\$s, modificând %3\$s.";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Ascundeţi lista dvs. de contacte/prieteni de vizitatorii acestui profil?";
+$a->strings["Edit Profile Details"] = "Editare Detalii Profil";
+$a->strings["Change Profile Photo"] = "Modificați Fotografia de Profil";
+$a->strings["View this profile"] = "Vizualizați acest profil";
+$a->strings["Create a new profile using these settings"] = "Creaţi un profil nou folosind aceste configurări";
+$a->strings["Clone this profile"] = "Clonați acest profil";
+$a->strings["Delete this profile"] = "Ştergeţi acest profil";
+$a->strings["Profile Name:"] = "Nume profil:";
+$a->strings["Your Full Name:"] = "Numele Complet:";
+$a->strings["Title/Description:"] = "Titlu/Descriere";
+$a->strings["Your Gender:"] = "Sexul:";
+$a->strings["Birthday (%s):"] = "Zi Naştere (%s):";
+$a->strings["Street Address:"] = "Strada:";
+$a->strings["Locality/City:"] = "Localitate/Oraș:";
+$a->strings["Postal/Zip Code:"] = "Cod poștal:";
+$a->strings["Country:"] = "Ţară:";
+$a->strings["Region/State:"] = "Regiunea/Județul:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Stare Civilă:";
+$a->strings["Who: (if applicable)"] = "Cine: (dacă este cazul)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemple: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Din [data]:";
+$a->strings["Sexual Preference:"] = "Orientare Sexuală:";
+$a->strings["Homepage URL:"] = "Homepage URL:";
+$a->strings["Hometown:"] = "Domiciliu:";
+$a->strings["Political Views:"] = "Viziuni Politice:";
+$a->strings["Religious Views:"] = "Viziuni Religioase:";
+$a->strings["Public Keywords:"] = "Cuvinte cheie Publice:";
+$a->strings["Private Keywords:"] = "Cuvinte cheie Private:";
+$a->strings["Likes:"] = "Îmi place:";
+$a->strings["Dislikes:"] = "Nu-mi place:";
+$a->strings["Example: fishing photography software"] = "Exemplu: pescuit fotografii software";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilizat pentru a sugera potențiali prieteni, ce pot fi văzuți de către ceilalți)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilizat pentru a căuta profile, niciodată afișat altora)";
+$a->strings["Tell us about yourself..."] = "Spune-ne despre tine ...";
+$a->strings["Hobbies/Interests"] = "Hobby/Interese";
+$a->strings["Contact information and Social Networks"] = "Informaţii de Contact şi Reţele Sociale";
+$a->strings["Musical interests"] = "Preferințe muzicale";
+$a->strings["Books, literature"] = "Cărti, literatură";
+$a->strings["Television"] = "Programe TV";
+$a->strings["Film/dance/culture/entertainment"] = "Film/dans/cultură/divertisment";
+$a->strings["Love/romance"] = "Dragoste/romantism";
+$a->strings["Work/employment"] = "Loc de Muncă/Slujbă";
+$a->strings["School/education"] = "Școală/educație";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Acesta este profilul dvs. <strong>public</strong>.<br /> El <strong>poate</strong> fi vizibil pentru oricine folosește internetul.";
+$a->strings["Age: "] = "Vârsta:";
+$a->strings["Edit/Manage Profiles"] = "Editare/Gestionare Profile";
+$a->strings["Change profile photo"] = "Modificați Fotografia de Profil";
+$a->strings["Create New Profile"] = "Creați Profil Nou";
+$a->strings["Profile Image"] = "Imagine profil";
+$a->strings["visible to everybody"] = "vizibil pentru toata lumea";
+$a->strings["Edit visibility"] = "Editare vizibilitate";
+$a->strings["link"] = "link";
+$a->strings["Export account"] = "Exportare cont";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportați-vă informațiile contului şi contactele. Utilizaţi aceasta pentru a face o copie de siguranţă a contului dumneavoastră şi/sau pentru a-l muta pe un alt server.";
+$a->strings["Export all"] = "Exportare tot";
+$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)"] = "Exportați informațiile dvs. de cont, contactele şi toate elementele dvs., ca json. Ar putea fi un fișier foarte mare, şi ar putea lua mult timp. Utilizaţi aceasta pentru a face un backup complet al contului (fotografiile nu sunt exportate)";
+$a->strings["{0} wants to be your friend"] = "{0} doreşte să vă fie prieten";
+$a->strings["{0} sent you a message"] = "{0} v-a trimis un mesaj";
+$a->strings["{0} requested registration"] = "{0} a solicitat înregistrarea";
+$a->strings["{0} commented %s's post"] = "{0} a comentat la articolul postat de %s";
+$a->strings["{0} liked %s's post"] = "{0} a apreciat articolul postat de %s";
+$a->strings["{0} disliked %s's post"] = "{0} nu a apreciat articolul postat de %s";
+$a->strings["{0} is now friends with %s"] = "{0} este acum prieten cu %s";
+$a->strings["{0} posted"] = "{0} a postat";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} a etichetat articolul postat de %s cu #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} v-a menţionat într-o postare";
+$a->strings["Nothing new here"] = "Nimic nou aici";
+$a->strings["Clear notifications"] = "Ştergeţi notificările";
+$a->strings["Not available."] = "Indisponibil.";
+$a->strings["Community"] = "Comunitate";
+$a->strings["Save to Folder:"] = "Salvare în Dosar:";
+$a->strings["- select -"] = "- selectare -";
+$a->strings["Save"] = "Salvare";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Ne pare rău, este posibil ca fișierul pe care doriți să-l încărcați, este mai mare decât permite configuraţia PHP";
+$a->strings["Or - did you try to upload an empty file?"] = "Sau - ați încercat să încărcaţi un fişier gol?";
+$a->strings["File exceeds size limit of %d"] = "Fişierul depăşeşte dimensiunea limită de %d";
+$a->strings["File upload failed."] = "Încărcarea fișierului a eşuat.";
+$a->strings["Invalid profile identifier."] = "Identificator profil, invalid.";
+$a->strings["Profile Visibility Editor"] = "Editor Vizibilitate Profil";
+$a->strings["Click on a contact to add or remove."] = "Apăsați pe un contact pentru a-l adăuga sau elimina.";
+$a->strings["Visible To"] = "Vizibil Pentru";
+$a->strings["All Contacts (with secure profile access)"] = "Toate Contactele (cu acces profil securizat)";
+$a->strings["Do you really want to delete this suggestion?"] = "Sigur doriți să ștergeți acesta sugestie?";
+$a->strings["Friend Suggestions"] = "Sugestii de Prietenie";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nici-o sugestie disponibilă. Dacă aceasta este un site nou, vă rugăm să încercaţi din nou în 24 de ore.";
+$a->strings["Connect"] = "Conectare";
+$a->strings["Ignore/Hide"] = "Ignorare/Ascundere";
+$a->strings["Access denied."] = "Accesul interzis.";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s îi urează bun venit lui %2\$s";
+$a->strings["Manage Identities and/or Pages"] = "Administrare Identităţii şi/sau Pagini";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Comutați între diferitele identităţi sau pagini de comunitate/grup, care împărtășesc detaliile contului dvs. sau pentru care v-au fost acordate drepturi de  \"gestionare \"";
+$a->strings["Select an identity to manage: "] = "Selectaţi o identitate de gestionat:";
+$a->strings["No potential page delegates located."] = "Nici-un delegat potenţial de pagină, nu a putut fi localizat.";
+$a->strings["Delegate Page Management"] = "Delegare Gestionare Pagină";
+$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."] = "Delegații sunt capabili să gestioneze toate aspectele acestui cont/pagină, cu excepţia configurărilor de bază ale contului. Vă rugăm să nu vă delegați, contul dvs. personal, cuiva în care nu aveţi încredere deplină.";
+$a->strings["Existing Page Managers"] = "Gestionari Existenți Pagină";
+$a->strings["Existing Page Delegates"] = "Delegați Existenți Pagină";
+$a->strings["Potential Delegates"] = "Potenţiali Delegaţi";
+$a->strings["Add"] = "Adăugare";
+$a->strings["No entries."] = "Nu există intrări.";
+$a->strings["No contacts."] = "Nici-un contact.";
+$a->strings["View Contacts"] = "Vezi Contacte";
+$a->strings["Personal Notes"] = "Note Personale";
+$a->strings["Poke/Prod"] = "Abordare/Atragerea atenției";
+$a->strings["poke, prod or do other things to somebody"] = "abordați, atrageți atenția sau faceți alte lucruri cuiva";
+$a->strings["Recipient"] = "Destinatar";
+$a->strings["Choose what you wish to do to recipient"] = "Alegeți ce doriți să faceți cu destinatarul";
+$a->strings["Make this post private"] = "Faceți acest articol privat";
+$a->strings["Global Directory"] = "Director Global";
+$a->strings["Find on this site"] = "Căutați pe acest site";
+$a->strings["Site Directory"] = "Director Site";
+$a->strings["Gender: "] = "Sex:";
+$a->strings["Gender:"] = "Sex:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Homepage:";
+$a->strings["About:"] = "Despre:";
+$a->strings["No entries (some entries may be hidden)."] = "Fără înregistrări (unele înregistrări pot fi ascunse).";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Time Conversion"] = "Conversie Oră";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica oferă acest serviciu pentru partajarea evenimentelor cu alte rețele și prieteni, în zonele cu fusuri orare necunoscute.\\v";
+$a->strings["UTC time: %s"] = "Fus orar UTC: %s";
+$a->strings["Current timezone: %s"] = "Fusul orar curent: %s";
+$a->strings["Converted localtime: %s"] = "Ora locală convertită: %s";
+$a->strings["Please select your timezone:"] = "Vă rugăm să vă selectaţi fusul orar:";
+$a->strings["Post successful."] = "Postat cu succes.";
+$a->strings["Image uploaded but image cropping failed."] = "Imaginea a fost încărcată, dar decuparea imaginii a eşuat.";
+$a->strings["Image size reduction [%s] failed."] = "Reducerea dimensiunea imaginii [%s] a eşuat.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Apăsați pe Shift și pe Reîncărcare Pagină sau ştergeţi memoria cache a browser-ului, dacă noua fotografie nu se afişează imediat.";
+$a->strings["Unable to process image"] = "Nu s-a putut procesa imaginea.";
+$a->strings["Upload File:"] = "Încărcare Fișier:";
+$a->strings["Select a profile:"] = "Selectați un profil:";
+$a->strings["Upload"] = "Încărcare";
+$a->strings["skip this step"] = "omiteți acest pas";
+$a->strings["select a photo from your photo albums"] = "selectaţi o fotografie din albumele dvs. foto";
+$a->strings["Crop Image"] = "Decupare Imagine";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Vă rugăm să ajustaţi decuparea imaginii pentru o vizualizare optimă.";
+$a->strings["Done Editing"] = "Editare Realizată";
+$a->strings["Image uploaded successfully."] = "Imaginea a fost încărcată cu succes";
+$a->strings["Friendica Communications Server - Setup"] = "Serverul de Comunicații Friendica - Instalare";
+$a->strings["Could not connect to database."] = "Nu se poate face conectarea cu baza de date.";
+$a->strings["Could not create table."] = "Nu se poate crea tabelul.";
+$a->strings["Your Friendica site database has been installed."] = "Baza dvs. de date Friendica, a fost instalată.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Este posibil să fie nevoie să importați manual fişierul \"database.sql\" folosind phpmyadmin sau mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Vă rugăm să consultaţi fişierul  \"INSTALL.txt\".";
+$a->strings["System check"] = "Verificare sistem";
+$a->strings["Check again"] = "Reverificare";
+$a->strings["Database connection"] = "Conexiunea cu baza de date";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pentru a instala Friendica trebuie să știm cum să vă conectaţi la baza dumneavoastră de date.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vă rugăm să vă contactaţi furnizorul găzduirii sau administratorul de site dacă aveţi întrebări despre aceste configurări.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Baza de date specificată mai jos ar trebui să existe deja. Dacă nu, vă rugăm s-o creați înainte de a continua.";
+$a->strings["Database Server Name"] = "Nume Server Bază de date";
+$a->strings["Database Login Name"] = "Nume Autentificare Bază de date";
+$a->strings["Database Login Password"] = "Parola de Autentificare Bază de date";
+$a->strings["Database Name"] = "Nume Bază de date";
+$a->strings["Site administrator email address"] = "Adresa de email a administratorului de site";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Adresa de email a contului dvs. trebuie să corespundă cu aceasta pentru a utiliza panoul de administrare web.";
+$a->strings["Please select a default timezone for your website"] = "Vă rugăm să selectaţi un fus orar prestabilit pentru site-ul dvs.";
+$a->strings["Site settings"] = "Configurări Site";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nu s-a putut găsi o versiune a liniei de comandă PHP în CALEA serverului web.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Dacă nu aveţi o versiune a liniei de comandă PHP instalată pe server, nu veţi putea să efectuaţi interogări ciclice în fundal prin funcția cron. Consultaţi <a href='http://friendica.com/node/27'>'Activarea sarcinilor programate' </a>";
+$a->strings["PHP executable path"] = "Calea de executare PHP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introduceţi calea completă către executabilul php. Puteţi lăsa acesta necompletată pentru a continua instalarea.";
+$a->strings["Command line PHP"] = "linie comandă PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Executabilul PHP nu este de formă binară php-cli (ar putea fi versiunea cgi-fgci)";
+$a->strings["Found PHP version: "] = "Versiune PHP identificată:";
+$a->strings["PHP cli binary"] = "Versiune binară PHP-cli";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Versiunea liniei de comandă PHP de pe sistemul dumneavoastră nu are comanda \"register_argc_argv\" activată.";
+$a->strings["This is required for message delivery to work."] = "Aceasta este necesară pentru a funcționa livrarea de mesaje.";
+$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"] = "Eroare: funcția \"openssl_pkey_new\" de pe acest sistem nu este capabilă să genereze chei de criptare";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Dacă rulează pe Windows, vă rugăm să consultaţi \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Generare chei de criptare";
+$a->strings["libCurl PHP module"] = "Modulul PHP libCurl";
+$a->strings["GD graphics PHP module"] = "Modulul PHP grafică GD";
+$a->strings["OpenSSL PHP module"] = "Modulul PHP OpenSSL";
+$a->strings["mysqli PHP module"] = "Modulul PHP mysqli";
+$a->strings["mb_string PHP module"] = "Modulul PHP mb_string";
+$a->strings["Apache mod_rewrite module"] = "Modulul Apache mod_rewrite";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Eroare: Modulul mod-rewrite al serverulului Apache este necesar, dar nu este instalat.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Eroare: modulul PHP libCURL este necesar dar nu este instalat.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Eroare: Modulul PHP grafică GD cu suport JPEG, este necesar dar nu este instalat.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Eroare: modulul PHP libCURL este necesar dar nu este instalat.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Eroare: modulul PHP mysqli este necesar dar nu este instalat.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Eroare: modulul PHP mb_string este necesar dar nu este instalat.";
+$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."] = "Expertul de instalare web  trebuie să poată crea un fișier numit \".htconfig.php\" în dosarul superior al serverului dvs. web, şi nu poate face acest lucru.";
+$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."] = "Aceasta este cel mai adesea o configurare de permisiune, deoarece serverul web nu ar putea fi capabil să scrie fişiere în dosarul dumneavoastră - chiar dacă dvs. puteţi.";
+$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."] = "La finalul acestei proceduri, vă vom oferi un text pentru a-l salva într-un fişier numit .htconfig.php din dosarul dvs. superior Friendica.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ, puteţi omite această procedură şi să efectuaţi o instalare manuală. Vă rugăm să consultaţi fişierul  \"INSTALL.txt\" pentru instrucțiuni.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php este inscriptibil";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica utilizează motorul de șablon Smarty3 pentru a prelucra vizualizările sale web. Smarty3 compilează şabloane în PHP pentru a grăbi prelucrarea.";
+$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."] = "Pentru a stoca aceste şabloane compilate, serverul de web trebuie să aibă acces la scriere pentru directorul view/smarty3/ din dosarul de nivel superior Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vă rugăm să vă asiguraţi că utilizatorul pe care rulează serverul dvs. web (de ex. www-date) are acces la scriere pentru acest dosar.";
+$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."] = "Notă: ca o măsură de securitate, ar trebui să dați serverului web, acces de scriere numai pentru view/smarty3/--dar nu și fișierelor de șablon (.tpl) pe care le conţine.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 este inscriptibil";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Funcția de rescriere Url rewrite din .htaccess nu funcţionează. Verificaţi-vă configuraţia serverului.";
+$a->strings["Url rewrite is working"] = "Funcția de rescriere Url rewrite, funcţionează.";
+$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."] = "Fișierul de configurare baza de date \".htconfig.php\", nu a putut fi scris. Vă rugăm să utilizaţi textul închis pentru a crea un fişier de configurare în rădăcina serverului dvs. web.";
+$a->strings["Errors encountered creating database tables."] = "Erori întâlnite la crearea tabelelor bazei de date.";
+$a->strings["<h1>What next</h1>"] = "<h1>Ce urmează</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Va trebui să configurați [manual] o sarcină programată pentru operatorul de sondaje.";
+$a->strings["Group created."] = "Grupul a fost creat.";
+$a->strings["Could not create group."] = "Grupul nu se poate crea.";
+$a->strings["Group not found."] = "Grupul nu a fost găsit.";
+$a->strings["Group name changed."] = "Numele grupului a fost schimbat.";
+$a->strings["Save Group"] = "Salvare Grup";
+$a->strings["Create a group of contacts/friends."] = "Creaţi un grup de contacte/prieteni.";
+$a->strings["Group Name: "] = "Nume Grup:";
+$a->strings["Group removed."] = "Grupul a fost eliminat.";
+$a->strings["Unable to remove group."] = "Nu se poate elimina grupul.";
+$a->strings["Group Editor"] = "Editor Grup";
+$a->strings["Members"] = "Membri";
+$a->strings["No such group"] = "Membrii";
+$a->strings["Group is empty"] = "Grupul este gol";
+$a->strings["Group: "] = "Grup:";
+$a->strings["View in context"] = "Vizualizare în context";
+$a->strings["Account approved."] = "Cont aprobat.";
+$a->strings["Registration revoked for %s"] = "Înregistrare revocată pentru %s";
+$a->strings["Please login."] = "Vă rugăm să vă autentificați.";
+$a->strings["Profile Match"] = "Potrivire Profil";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nu există cuvinte cheie pentru a le potrivi. Vă rugăm să adăugaţi cuvinte cheie la profilul dvs implicit.";
+$a->strings["is interested in:"] = "are interese pentru:";
+$a->strings["Unable to locate original post."] = "Nu se poate localiza postarea originală.";
+$a->strings["Empty post discarded."] = "Postarea goală a fost eliminată.";
+$a->strings["System error. Post not saved."] = "Eroare de sistem. Articolul nu a fost salvat.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Acest mesaj v-a fost trimis de către %s, un membru al rețelei sociale Friendica.";
+$a->strings["You may visit them online at %s"] = "Îi puteți vizita profilul online la %s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Vă rugăm să contactați expeditorul răspunzând la această postare, dacă nu doriţi să primiţi aceste mesaje.";
+$a->strings["%s posted an update."] = "%s a postat o actualizare.";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s este momentan %2\$s";
+$a->strings["Mood"] = "Stare de spirit";
+$a->strings["Set your current mood and tell your friends"] = "Stabiliți-vă starea de spirit curentă, şi comunicați-o prietenilor";
+$a->strings["Search Results For:"] = "Rezultatele Căutării Pentru:";
+$a->strings["add"] = "add";
+$a->strings["Commented Order"] = "Ordonare Comentarii";
+$a->strings["Sort by Comment Date"] = "Sortare după Data Comentariului";
+$a->strings["Posted Order"] = "Ordonare Postări";
+$a->strings["Sort by Post Date"] = "Sortare după Data Postării";
+$a->strings["Posts that mention or involve you"] = "Postări ce vă menționează sau vă implică";
+$a->strings["New"] = "Nou";
+$a->strings["Activity Stream - by date"] = "Flux Activități - după dată";
+$a->strings["Shared Links"] = "Linkuri partajate";
+$a->strings["Interesting Links"] = "Legături Interesante";
+$a->strings["Starred"] = "Cu steluță";
+$a->strings["Favourite Posts"] = "Postări Favorite";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Atenție: Acest grup conţine %s membru dintr-o reţea nesigură.",
+       1 => "Atenție: Acest grup conţine %s membrii dintr-o reţea nesigură.",
+       2 => "Atenție: Acest grup conţine %s de membrii dintr-o reţea nesigură.",
+);
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Mesajele private către acest grup sunt supuse riscului de divulgare publică.";
+$a->strings["Contact: "] = "Contact: ";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Mesajele private către această persoană sunt supuse riscului de divulgare publică.";
+$a->strings["Invalid contact."] = "Invalid contact.";
+$a->strings["Contact settings applied."] = "Configurările Contactului au fost aplicate.";
+$a->strings["Contact update failed."] = "Actualizarea Contactului a eșuat.";
+$a->strings["Repair Contact Settings"] = "Remediere Configurări Contact";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<Strong>AVERTISMENT: Această acțiune este foarte avansată</strong> şi dacă introduceţi informaţii incorecte, comunicaţiile cu acest contact se poate opri.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Vă rugăm să utilizaţi <strong>acum</strong> butonul 'Înapoi' din browser, dacă nu sunteţi sigur ce sa faceți pe această pagină.";
+$a->strings["Return to contact editor"] = "Reveniţi la editorul de contact";
+$a->strings["Account Nickname"] = "Pseudonim Cont";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Nume_etichetă - suprascrie Numele/Pseudonimul";
+$a->strings["Account URL"] = "URL Cont";
+$a->strings["Friend Request URL"] = "URL Solicitare Prietenie";
+$a->strings["Friend Confirm URL"] = "URL Confirmare Prietenie";
+$a->strings["Notification Endpoint URL"] = "Punct final URL Notificare";
+$a->strings["Poll/Feed URL"] = "URL Sondaj/Flux";
+$a->strings["New photo from this URL"] = "Fotografie Nouă de la acest URL";
+$a->strings["Remote Self"] = "Auto la Distanţă";
+$a->strings["Mirror postings from this contact"] = "Postări în oglindă de la acest contact";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcaţi acest contact ca remote_self, aceasta va determina friendica să reposteze noile articole ale acestui contact.";
+$a->strings["Your posts and conversations"] = "Postările şi conversaţiile dvs.";
+$a->strings["Your profile page"] = "Pagina dvs. de profil";
+$a->strings["Your contacts"] = "Contactele dvs.";
+$a->strings["Your photos"] = "Fotografiile dvs.";
+$a->strings["Your events"] = "Evenimentele dvs.";
+$a->strings["Personal notes"] = "Note Personale";
+$a->strings["Your personal photos"] = "Fotografii dvs. personale";
+$a->strings["Community Pages"] = "Community Pagini";
+$a->strings["Community Profiles"] = "Profile de Comunitate";
+$a->strings["Last users"] = "Ultimii utilizatori";
+$a->strings["Last likes"] = "Ultimele aprecieri";
+$a->strings["event"] = "eveniment";
+$a->strings["Last photos"] = "Ultimele fotografii";
+$a->strings["Find Friends"] = "Găsire Prieteni";
+$a->strings["Local Directory"] = "Director Local";
+$a->strings["Similar Interests"] = "Interese Similare";
+$a->strings["Invite Friends"] = "Invită Prieteni";
+$a->strings["Earth Layers"] = "Straturi Pământ";
+$a->strings["Set zoomfactor for Earth Layers"] = "Stabilire factor de magnificare pentru Straturi Pământ";
+$a->strings["Set longitude (X) for Earth Layers"] = "Stabilire longitudine (X) pentru Straturi Pământ";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Stabilire latitudine (Y) pentru Straturi Pământ";
+$a->strings["Help or @NewHere ?"] = "Ajutor sau @NouAici ?";
+$a->strings["Connect Services"] = "Conectare Servicii";
+$a->strings["don't show"] = "nu afișa";
+$a->strings["show"] = "afișare";
+$a->strings["Show/hide boxes at right-hand column:"] = "Afişare/ascundere casete din coloana din dreapta:";
+$a->strings["Theme settings"] = "Configurări Temă";
+$a->strings["Set font-size for posts and comments"] = "Stabilire dimensiune font pentru postări şi comentarii";
+$a->strings["Set line-height for posts and comments"] = "Stabilire înălțime linie pentru postări şi comentarii";
+$a->strings["Set resolution for middle column"] = "Stabilire rezoluţie pentru coloana din mijloc";
+$a->strings["Set color scheme"] = "Stabilire schemă de culori";
+$a->strings["Set zoomfactor for Earth Layer"] = "Stabilire factor de magnificare pentru Straturi Pământ";
+$a->strings["Set style"] = "Stabilire stil";
+$a->strings["Set colour scheme"] = "Stabilire schemă de culori";
+$a->strings["Alignment"] = "Aliniere";
+$a->strings["Left"] = "Stânga";
+$a->strings["Center"] = "Centrat";
+$a->strings["Color scheme"] = "Schemă culoare";
+$a->strings["Posts font size"] = "Dimensiune font postări";
+$a->strings["Textareas font size"] = "Dimensiune font zone text";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Stabiliți nivelul de redimensionare a imaginilor din postări și comentarii (lăţimea şi înălţimea)";
+$a->strings["Set theme width"] = "Stabilire lăţime temă";
+$a->strings["Delete this item?"] = "Ștergeți acest element?";
+$a->strings["show fewer"] = "afișare mai puține";
+$a->strings["Update %s failed. See error logs."] = "Actualizarea %s a eșuat. Consultaţi jurnalele de eroare.";
+$a->strings["Update Error at %s"] = "Eroare de actualizare la %s";
+$a->strings["Create a New Account"] = "Creaţi un Cont Nou";
+$a->strings["Logout"] = "Deconectare";
+$a->strings["Login"] = "Login";
+$a->strings["Nickname or Email address: "] = "Pseudonimul sau Adresa de email:";
+$a->strings["Password: "] = "Parola:";
+$a->strings["Remember me"] = "Reține autentificarea";
+$a->strings["Or login using OpenID: "] = "Sau conectaţi-vă utilizând OpenID:";
+$a->strings["Forgot your password?"] = "Ați uitat parola?";
+$a->strings["Website Terms of Service"] = "Condiții de Utilizare Site Web";
+$a->strings["terms of service"] = "condiții de utilizare";
+$a->strings["Website Privacy Policy"] = "Politica de Confidențialitate Site Web";
+$a->strings["privacy policy"] = "politica de confidențialitate";
+$a->strings["Requested account is not available."] = "Contul solicitat nu este disponibil.";
+$a->strings["Edit profile"] = "Editare profil";
+$a->strings["Message"] = "Mesaj";
+$a->strings["Profiles"] = "Profile";
+$a->strings["Manage/edit profiles"] = "Gestionare/editare profile";
+$a->strings["g A l F d"] = "g A l F d";
+$a->strings["F d"] = "F d";
+$a->strings["[today]"] = "[azi]";
+$a->strings["Birthday Reminders"] = "Memento Zile naştere ";
+$a->strings["Birthdays this week:"] = "Zi;e Naştere această săptămînă:";
+$a->strings["[No description]"] = "[Fără descriere]";
+$a->strings["Event Reminders"] = "Memento Eveniment";
+$a->strings["Events this week:"] = "Evenimente în această săptămână:";
+$a->strings["Status"] = "Status";
+$a->strings["Status Messages and Posts"] = "Status Mesaje şi Postări";
+$a->strings["Profile Details"] = "Detalii Profil";
+$a->strings["Videos"] = "Clipuri video";
+$a->strings["Events and Calendar"] = "Evenimente şi Calendar";
+$a->strings["Only You Can See This"] = "Numai Dvs. Puteţi Vizualiza";
+$a->strings["General Features"] = "Caracteristici Generale";
+$a->strings["Multiple Profiles"] = "Profile Multiple";
+$a->strings["Ability to create multiple profiles"] = "Capacitatea de a crea profile multiple";
+$a->strings["Post Composition Features"] = "Caracteristici Compoziţie Postare";
+$a->strings["Richtext Editor"] = "Editor Text Îmbogățit";
+$a->strings["Enable richtext editor"] = "Activare editor text îmbogățit";
+$a->strings["Post Preview"] = "Previzualizare Postare";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Permiteți previzualizarea postărilor şi comentariilor înaintea publicării lor";
+$a->strings["Auto-mention Forums"] = "Auto-menţionare Forumuri";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Adăugaţi/eliminaţi mențiunea când o pagină de forum  este selectată/deselectată în fereastra ACL.";
+$a->strings["Network Sidebar Widgets"] = "Aplicaţii widget de Rețea în Bara Laterală";
+$a->strings["Search by Date"] = "Căutare după Dată";
+$a->strings["Ability to select posts by date ranges"] = "Abilitatea de a selecta postări după intervalele de timp";
+$a->strings["Group Filter"] = "Filtru Grup";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Permiteți aplicației widget să afișeze postări din Rețea, numai din grupul selectat";
+$a->strings["Network Filter"] = "Filtru Reţea";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Permiteți aplicației widget să afișeze postări din Rețea, numai din rețeaua selectată";
+$a->strings["Save search terms for re-use"] = "Salvați termenii de căutare pentru reutilizare";
+$a->strings["Network Tabs"] = "File Reţea";
+$a->strings["Network Personal Tab"] = "Filă Personală de Reţea";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Permiteți filei să afişeze numai postările Reţelei cu care ați interacţionat";
+$a->strings["Network New Tab"] = "Filă Nouă de Reţea";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Permiteți filei să afişeze numai postările noi din Reţea (din ultimele 12 ore)";
+$a->strings["Network Shared Links Tab"] = "Filă Legături Distribuite în Rețea";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Permiteți filei să afişeze numai postările din Reţea ce conțin legături";
+$a->strings["Post/Comment Tools"] = "Instrumente Postare/Comentariu";
+$a->strings["Multiple Deletion"] = "Ştergere Multiplă";
+$a->strings["Select and delete multiple posts/comments at once"] = "Selectaţi şi ştergeţi postări/comentarii multiple simultan";
+$a->strings["Edit Sent Posts"] = "Editare Postări Trimise";
+$a->strings["Edit and correct posts and comments after sending"] = "Editarea şi corectarea postărilor şi comentariilor după postarea lor";
+$a->strings["Tagging"] = "Etichetare";
+$a->strings["Ability to tag existing posts"] = "Capacitatea de a eticheta postările existente";
+$a->strings["Post Categories"] = "Categorii Postări";
+$a->strings["Add categories to your posts"] = "Adăugaţi categorii la postările dvs.";
+$a->strings["Saved Folders"] = "Dosare Salvate";
+$a->strings["Ability to file posts under folders"] = "Capacitatea de a atribui postări în dosare";
+$a->strings["Dislike Posts"] = "Respingere Postări";
+$a->strings["Ability to dislike posts/comments"] = "Capacitatea de a marca postări/comentarii ca fiind neplăcute";
+$a->strings["Star Posts"] = "Postări cu Steluță";
+$a->strings["Ability to mark special posts with a star indicator"] = "Capacitatea de a marca posturile speciale cu o stea ca şi indicator";
+$a->strings["Logged out."] = "Deconectat.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Am întâmpinat o problemă în timpul autentificării cu datele OpenID  pe care le-ați furnizat.";
+$a->strings["The error message was:"] = "Mesajul de eroare a fost:";
+$a->strings["Starts:"] = "Începe:";
+$a->strings["Finishes:"] = "Se finalizează:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Zile Naştere :";
+$a->strings["Age:"] = "Vârsta:";
+$a->strings["for %1\$d %2\$s"] = "pentru %1\$d %2\$s";
+$a->strings["Tags:"] = "Etichete:";
+$a->strings["Religion:"] = "Religie:";
+$a->strings["Hobbies/Interests:"] = "Hobby/Interese:";
+$a->strings["Contact information and Social Networks:"] = "Informaţii de Contact şi Reţele Sociale:";
+$a->strings["Musical interests:"] = "Preferințe muzicale:";
+$a->strings["Books, literature:"] = "Cărti, literatură:";
+$a->strings["Television:"] = "Programe TV:";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultură/divertisment:";
+$a->strings["Love/Romance:"] = "Dragoste/Romantism:";
+$a->strings["Work/employment:"] = "Loc de Muncă/Slujbă:";
+$a->strings["School/education:"] = "Școală/educatie:";
+$a->strings["[no subject]"] = "[fără subiect]";
+$a->strings[" on Last.fm"] = "pe Last.fm";
+$a->strings["newer"] = "mai noi";
+$a->strings["older"] = "mai vechi";
+$a->strings["prev"] = "preced";
+$a->strings["first"] = "prima";
+$a->strings["last"] = "ultima";
+$a->strings["next"] = "următor";
+$a->strings["No contacts"] = "Nici-un contact";
+$a->strings["%d Contact"] = array(
+       0 => "%d Contact",
+       1 => "%d Contacte",
+       2 => "%d de Contacte",
+);
+$a->strings["poke"] = "abordare";
+$a->strings["poked"] = "a fost abordat(ă)";
+$a->strings["ping"] = "ping";
+$a->strings["pinged"] = "i s-a trimis ping";
+$a->strings["prod"] = "prod";
+$a->strings["prodded"] = "i s-a atras atenția";
+$a->strings["slap"] = "plesnire";
+$a->strings["slapped"] = "a fost plesnit(ă)";
+$a->strings["finger"] = "indicare";
+$a->strings["fingered"] = "a fost indicat(ă)";
+$a->strings["rebuff"] = "respingere";
+$a->strings["rebuffed"] = "a fost respins(ă)";
+$a->strings["happy"] = "fericit(ă)";
+$a->strings["sad"] = "trist(ă)";
+$a->strings["mellow"] = "trist(ă)";
+$a->strings["tired"] = "obosit(ă)";
+$a->strings["perky"] = "arogant(ă)";
+$a->strings["angry"] = "supărat(ă)";
+$a->strings["stupified"] = "stupefiat(ă)";
+$a->strings["puzzled"] = "nedumerit(ă)";
+$a->strings["interested"] = "interesat(ă)";
+$a->strings["bitter"] = "amarnic";
+$a->strings["cheerful"] = "vesel(ă)";
+$a->strings["alive"] = "plin(ă) de viață";
+$a->strings["annoyed"] = "enervat(ă)";
+$a->strings["anxious"] = "neliniştit(ă)";
+$a->strings["cranky"] = "irascibil(ă)";
+$a->strings["disturbed"] = "perturbat(ă)";
+$a->strings["frustrated"] = "frustrat(ă)";
+$a->strings["motivated"] = "motivat(ă)";
+$a->strings["relaxed"] = "relaxat(ă)";
+$a->strings["surprised"] = "surprins(ă)";
+$a->strings["Monday"] = "Luni";
+$a->strings["Tuesday"] = "Marţi";
+$a->strings["Wednesday"] = "Miercuri";
+$a->strings["Thursday"] = "Joi";
+$a->strings["Friday"] = "Vineri";
+$a->strings["Saturday"] = "Sâmbătă";
+$a->strings["Sunday"] = "Duminică";
+$a->strings["January"] = "Ianuarie";
+$a->strings["February"] = "Februarie";
+$a->strings["March"] = "Martie";
+$a->strings["April"] = "Aprilie";
+$a->strings["May"] = "Mai";
+$a->strings["June"] = "Iunie";
+$a->strings["July"] = "Iulie";
+$a->strings["August"] = "August";
+$a->strings["September"] = "Septembrie";
+$a->strings["October"] = "Octombrie";
+$a->strings["November"] = "Noiembrie";
+$a->strings["December"] = "Decembrie";
+$a->strings["bytes"] = "octeţi";
+$a->strings["Click to open/close"] = "Apăsați pentru a deschide/închide";
+$a->strings["default"] = "implicit";
+$a->strings["Select an alternate language"] = "Selectați o limbă alternativă";
+$a->strings["activity"] = "activitate";
+$a->strings["post"] = "postare";
+$a->strings["Item filed"] = "Element îndosariat";
+$a->strings["User not found."] = "Utilizatorul nu a fost găsit.";
+$a->strings["There is no status with this id."] = "Nu există nici-un status cu acest id.";
+$a->strings["There is no conversation with this id."] = "Nu există nici-o conversație cu acest id.";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Nu se pot localiza informațiile DNS  pentru serverul de bază de date '%s'";
+$a->strings["%s's birthday"] = "%s's  zi de naştere";
+$a->strings["Happy Birthday %s"] = "La mulţi ani %s";
+$a->strings["A new person is sharing with you at "] = "O nouă persoană împărtășește cu dvs. la";
+$a->strings["You have a new follower at "] = "Aveţi un nou susținător la";
+$a->strings["Do you really want to delete this item?"] = "Sigur doriți să ștergeți acest element?";
+$a->strings["Archives"] = "Arhive";
+$a->strings["(no subject)"] = "(fără subiect)";
+$a->strings["noreply"] = "nu-răspundeţi";
+$a->strings["Sharing notification from Diaspora network"] = "Partajarea notificării din reţeaua Diaspora";
+$a->strings["Attachments:"] = "Atașări:";
+$a->strings["Connect URL missing."] = "Lipseşte URL-ul de conectare.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Acest site nu este configurat pentru a permite comunicarea cu alte reţele.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Nu au fost descoperite protocoale de comunicaţii sau fluxuri compatibile.";
+$a->strings["The profile address specified does not provide adequate information."] = "Adresa de profil specificată nu furnizează informații adecvate.";
+$a->strings["An author or name was not found."] = "Un autor sau nume nu a fost găsit.";
+$a->strings["No browser URL could be matched to this address."] = "Nici un URL de browser nu a putut fi corelat cu această adresă.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Nu se poate corela @-stilul pentru Adresa de Identitatea cu un protocol cunoscut sau contact de email.";
+$a->strings["Use mailto: in front of address to force email check."] = "Utilizaţi mailto: în faţa adresei pentru a forţa verificarea de email.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Adresa de profil specificată aparţine unei reţele care a fost dezactivată pe acest site.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limitat. Această persoană nu va putea primi notificări directe/personale, de la dvs.";
+$a->strings["Unable to retrieve contact information."] = "Nu se pot localiza informaţiile de contact.";
+$a->strings["following"] = "urmărire";
+$a->strings["Welcome "] = "Bine ați venit";
+$a->strings["Please upload a profile photo."] = "Vă rugăm să încărcaţi o fotografie de profil.";
+$a->strings["Welcome back "] = "Bine ați revenit";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Formarea codului de securitate, nu a fost corectă. Aceasta probabil s-a întâmplat pentru că formularul a fost deschis pentru prea mult timp ( >3 ore) înainte de a-l transmite.";
+$a->strings["Male"] = "Bărbat";
+$a->strings["Female"] = "Femeie";
+$a->strings["Currently Male"] = "În prezent Bărbat";
+$a->strings["Currently Female"] = "În prezent Femeie";
+$a->strings["Mostly Male"] = "Mai mult Bărbat";
+$a->strings["Mostly Female"] = "Mai mult Femeie";
+$a->strings["Transgender"] = "Transsexual";
+$a->strings["Intersex"] = "Intersexual";
+$a->strings["Transsexual"] = "Transsexual";
+$a->strings["Hermaphrodite"] = "Hermafrodit";
+$a->strings["Neuter"] = "Neutru";
+$a->strings["Non-specific"] = "Non-specific";
+$a->strings["Other"] = "Alta";
+$a->strings["Undecided"] = "Indecisă";
+$a->strings["Males"] = "Bărbați";
+$a->strings["Females"] = "Femei";
+$a->strings["Gay"] = "Gay";
+$a->strings["Lesbian"] = "Lesbiană";
+$a->strings["No Preference"] = "Fără Preferințe";
+$a->strings["Bisexual"] = "Bisexual";
+$a->strings["Autosexual"] = "Autosexual";
+$a->strings["Abstinent"] = "Abstinent(ă)";
+$a->strings["Virgin"] = "Virgin(ă)";
+$a->strings["Deviant"] = "Deviant";
+$a->strings["Fetish"] = "Fetish";
+$a->strings["Oodles"] = "La grămadă";
+$a->strings["Nonsexual"] = "Nonsexual";
+$a->strings["Single"] = "Necăsătorit(ă)";
+$a->strings["Lonely"] = "Singur(ă)";
+$a->strings["Available"] = "Disponibil(ă)";
+$a->strings["Unavailable"] = "Indisponibil(ă)";
+$a->strings["Has crush"] = "Îndrăgostit(ă)";
+$a->strings["Infatuated"] = "Îndrăgostit(ă) nebunește";
+$a->strings["Dating"] = "Am întâlniri";
+$a->strings["Unfaithful"] = "Infidel(ă)";
+$a->strings["Sex Addict"] = "Dependent(ă) de Sex";
+$a->strings["Friends"] = "Prieteni";
+$a->strings["Friends/Benefits"] = "Prietenii/Prestaţii";
+$a->strings["Casual"] = "Ocazional";
+$a->strings["Engaged"] = "Cuplat";
+$a->strings["Married"] = "Căsătorit(ă)";
+$a->strings["Imaginarily married"] = "Căsătorit(ă) imaginar";
+$a->strings["Partners"] = "Parteneri";
+$a->strings["Cohabiting"] = "În conviețuire";
+$a->strings["Common law"] = "Drept Comun";
+$a->strings["Happy"] = "Fericit(ă)";
+$a->strings["Not looking"] = "Nu caut";
+$a->strings["Swinger"] = "Swinger";
+$a->strings["Betrayed"] = "Înșelat(ă)";
+$a->strings["Separated"] = "Separat(ă)";
+$a->strings["Unstable"] = "Instabil(ă)";
+$a->strings["Divorced"] = "Divorţat(ă)";
+$a->strings["Imaginarily divorced"] = "Divorţat(ă) imaginar";
+$a->strings["Widowed"] = "Văduv(ă)";
+$a->strings["Uncertain"] = "Incert";
+$a->strings["It's complicated"] = "E complicat";
+$a->strings["Don't care"] = "Nu-mi pasă";
+$a->strings["Ask me"] = "Întreabă-mă";
+$a->strings["Error decoding account file"] = "Eroare la decodarea fişierului de cont";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Eroare! Nu există data versiunii în fişier! Acesta nu este un fișier de cont Friendica?";
+$a->strings["Error! Cannot check nickname"] = "Eroare! Nu pot verifica pseudonimul";
+$a->strings["User '%s' already exists on this server!"] = "Utilizatorul '%s' există deja pe acest server!";
+$a->strings["User creation error"] = "Eroare la crearea utilizatorului";
+$a->strings["User profile creation error"] = "Eroare la crearea profilului utilizatorului";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d contact neimportat",
+       1 => "%d contacte neimportate",
+       2 => "%d de contacte neimportate",
+);
+$a->strings["Done. You can now login with your username and password"] = "Realizat. Vă puteţi conecta acum cu parola şi numele dumneavoastră de utilizator";
+$a->strings["Click here to upgrade."] = "Apăsați aici pentru a actualiza.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Această acţiune depăşeşte limitele stabilite de planul abonamentului dvs.";
+$a->strings["This action is not available under your subscription plan."] = "Această acţiune nu este disponibilă în planul abonamentului dvs.";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s a abordat pe %2\$s";
+$a->strings["post/item"] = "post/element";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marcat %3\$s de la %2\$s ca favorit";
+$a->strings["remove"] = "eliminare";
+$a->strings["Delete Selected Items"] = "Ștergeți Elementele Selectate";
+$a->strings["Follow Thread"] = "Urmăriți Firul Conversației";
+$a->strings["View Status"] = "Vizualizare Status";
+$a->strings["View Profile"] = "Vizualizare Profil";
+$a->strings["View Photos"] = "Vizualizare Fotografii";
+$a->strings["Network Posts"] = "Postări din Rețea";
+$a->strings["Edit Contact"] = "Edit Contact";
+$a->strings["Send PM"] = "Trimiteți mesaj personal";
+$a->strings["Poke"] = "Abordare";
+$a->strings["%s likes this."] = "%s apreciază aceasta.";
+$a->strings["%s doesn't like this."] = "%s nu apreciază aceasta.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d persoane</span> apreciază aceasta";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d persoane</span>nu apreciază aceasta";
+$a->strings["and"] = "şi";
+$a->strings[", and %d other people"] = ", şi %d alte persoane";
+$a->strings["%s like this."] = "%s apreciază aceasta.";
+$a->strings["%s don't like this."] = "%s nu apreciază aceasta.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Vizibil pentru <strong>toți</strong>";
+$a->strings["Please enter a video link/URL:"] = "Vă rugăm să introduceți un URL/legătură pentru clip video";
+$a->strings["Please enter an audio link/URL:"] = "Vă rugăm să introduceți un URL/legătură pentru clip audio";
+$a->strings["Tag term:"] = "Termen etichetare:";
+$a->strings["Where are you right now?"] = "Unde vă aflați acum?";
+$a->strings["Delete item(s)?"] = "Ștergeți element(e)?";
+$a->strings["Post to Email"] = "Postați prin Email";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectorii au fost dezactivați, din moment ce  \"%s\" este activat.";
+$a->strings["permissions"] = "permisiuni";
+$a->strings["Post to Groups"] = "Postați în Grupuri";
+$a->strings["Post to Contacts"] = "Post către  Contacte";
+$a->strings["Private post"] = "Articol privat";
+$a->strings["Add New Contact"] = "Add Contact Nou";
+$a->strings["Enter address or web location"] = "Introduceţi adresa sau locaţia web";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemplu: bob@example.com, http://example.com/barbara";
+$a->strings["%d invitation available"] = array(
+       0 => "%d invitație disponibilă",
+       1 => "%d invitații disponibile",
+       2 => "%d de invitații disponibile",
+);
+$a->strings["Find People"] = "Căutați Persoane";
+$a->strings["Enter name or interest"] = "Introduceţi numele sau interesul";
+$a->strings["Connect/Follow"] = "Conectare/Urmărire";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemple: Robert Morgenstein, Pescuit";
+$a->strings["Random Profile"] = "Profil Aleatoriu";
+$a->strings["Networks"] = "Rețele";
+$a->strings["All Networks"] = "Toate Reţelele";
+$a->strings["Everything"] = "Totul";
+$a->strings["Categories"] = "Categorii";
+$a->strings["End this session"] = "Finalizați această sesiune";
+$a->strings["Sign in"] = "Autentificare";
+$a->strings["Home Page"] = "Home Pagina";
+$a->strings["Create an account"] = "Creați un cont";
+$a->strings["Help and documentation"] = "Ajutor şi documentaţie";
+$a->strings["Apps"] = "Aplicații";
+$a->strings["Addon applications, utilities, games"] = "Suplimente la aplicații, utilitare, jocuri";
+$a->strings["Search site content"] = "Căutare în conținut site";
+$a->strings["Conversations on this site"] = "Conversaţii pe acest site";
+$a->strings["Directory"] = "Director";
+$a->strings["People directory"] = "Director persoane";
+$a->strings["Information"] = "Informaţii";
+$a->strings["Information about this friendica instance"] = "Informaţii despre această instanță friendica";
+$a->strings["Conversations from your friends"] = "Conversaţiile prieteniilor dvs.";
+$a->strings["Network Reset"] = "Resetare Reţea";
+$a->strings["Load Network page with no filters"] = "Încărcare pagina de Reţea fără filtre";
+$a->strings["Friend Requests"] = "Solicitări Prietenie";
+$a->strings["See all notifications"] = "Consultaţi toate notificările";
+$a->strings["Mark all system notifications seen"] = "Marcaţi toate notificările de sistem, ca și vizualizate";
+$a->strings["Private mail"] = "Mail privat";
+$a->strings["Inbox"] = "Mesaje primite";
+$a->strings["Outbox"] = "Căsuță de Ieșire";
+$a->strings["Manage"] = "Gestionare";
+$a->strings["Manage other pages"] = "Gestionează alte pagini";
+$a->strings["Account settings"] = "Configurări Cont";
+$a->strings["Manage/Edit Profiles"] = "Gestionare/Editare Profile";
+$a->strings["Manage/edit friends and contacts"] = "Gestionare/Editare prieteni şi contacte";
+$a->strings["Site setup and configuration"] = "Instalare şi configurare site";
+$a->strings["Navigation"] = "Navigare";
+$a->strings["Site map"] = "Hartă Site";
+$a->strings["Unknown | Not categorised"] = "Necunoscut | Fără categorie";
+$a->strings["Block immediately"] = "Blocare Imediată";
+$a->strings["Shady, spammer, self-marketer"] = "Dubioșii, spammerii, auto-promoterii";
+$a->strings["Known to me, but no opinion"] = "Cunoscut mie, dar fără o opinie";
+$a->strings["OK, probably harmless"] = "OK, probabil inofensiv";
+$a->strings["Reputable, has my trust"] = "Cu reputație, are încrederea mea";
+$a->strings["Weekly"] = "Săptămânal";
+$a->strings["Monthly"] = "Lunar";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Conector Diaspora";
+$a->strings["Statusnet"] = "Statusnet";
+$a->strings["Friendica Notification"] = "Notificare Friendica";
+$a->strings["Thank You,"] = "Vă mulțumim,";
+$a->strings["%s Administrator"] = "%s Administrator";
+$a->strings["%s <!item_type!>"] = "%s <!tip_element!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificare] Mail nou primit la %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s v-a trimis un nou mesaj privat la %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s v-a trimis %2\$s";
+$a->strings["a private message"] = "un mesaj privat";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la mesaje private.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s a comentat la [url=%2\$s]a %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s a comentat la [url=%2\$s]%4\$s postat de %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s a comentat la [url=%2\$s]%3\$s dvs.[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notificare] Comentariu la conversaţia #%1\$d postată de %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s a comentat la un element/conversaţie pe care o urmăriți.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la conversație.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notificare] %s a postat pe peretele dvs. de profil";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a postat pe peretele dvs. de profil la %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a postat pe [url=%2\$s]peretele dvs.[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notificare] %s v-a etichetat";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s v-a etichetat la %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]v-a etichetat[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notificare] %s a distribuit o nouă postare";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s a distribuit o nouă postare la %2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s] a distribuit o postare[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notificare] %1\$s v-a abordat";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s v-a abordat la %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]v-a abordat[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificare] %s v-a etichetat postarea";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$sv-a etichetat postarea la %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s a etichetat [url=%2\$s]postarea dvs.[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificare] Prezentare primită";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Aţi primit o prezentare de la '%1\$s' at %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Aţi primit [url=%1\$s]o prezentare[/url] de la %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Le puteți vizita profilurile, online pe %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge prezentarea.";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notificare] Ați primit o sugestie de prietenie";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Ați primit o sugestie de prietenie de la '%1\$s' la %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Aţi primit [url=%1\$s]o sugestie de prietenie[/url] pentru %2\$s de la %3\$s.";
+$a->strings["Name:"] = "Nume:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge sugestia.";
+$a->strings["An invitation is required."] = "O invitaţie este necesară.";
+$a->strings["Invitation could not be verified."] = "Invitația nu s-a putut verifica.";
+$a->strings["Invalid OpenID url"] = "URL OpenID invalid";
+$a->strings["Please enter the required information."] = "Vă rugăm să introduceți informațiile solicitate.";
+$a->strings["Please use a shorter name."] = "Vă rugăm să utilizaţi un nume mai scurt.";
+$a->strings["Name too short."] = "Numele este prea scurt.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Acesta nu pare a fi Numele (Prenumele) dvs. complet";
+$a->strings["Your email domain is not among those allowed on this site."] = "Domeniul dvs. de email nu este printre cele permise pe acest site.";
+$a->strings["Not a valid email address."] = "Nu este o adresă vaildă de email.";
+$a->strings["Cannot use that email."] = "Nu se poate utiliza acest email.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = " \"Pseudonimul\" dvs.  poate conţine numai  \"a-z\", \"0-9\", \"-\",, şi  \"_\", şi trebuie de asemenea să înceapă cu o literă.";
+$a->strings["Nickname is already registered. Please choose another."] = "Pseudonimul este deja înregistrat. Vă rugăm, alegeți un altul.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Pseudonimul a fost înregistrat aici, şi e posibil să nu mai poată fi reutilizat. Vă rugăm, alegeți altul.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "EROARE GRAVĂ: Generarea de chei de securitate a eşuat.";
+$a->strings["An error occurred during registration. Please try again."] = "A intervenit o eroare în timpul înregistrării. Vă rugăm să reîncercați.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "A intervenit o eroare la crearea profilului dvs. implicit. Vă rugăm să reîncercați.";
+$a->strings["Visible to everybody"] = "Vizibil pentru toata lumea";
+$a->strings["Image/photo"] = "Imagine/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> a scris următoarea <a href=\"%s\" target=\"_blank\">postare</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 a scris:";
+$a->strings["Encrypted content"] = "Conţinut criptat";
+$a->strings["Embedded content"] = "Conţinut încorporat";
+$a->strings["Embedding disabled"] = "Încorporarea conținuturilor este dezactivată";
+$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."] = "Un grup şters cu acest nume a fost restabilit. Permisiunile existente ale elementului, <strong>pot</strong>fi aplicate acestui grup şi oricăror viitori membrii. Dacă aceasta nu este ceea ați intenționat să faceți, vă rugăm să creaţi un alt grup cu un un nume diferit.";
+$a->strings["Default privacy group for new contacts"] = "Confidenţialitatea implicită a grupului pentru noi contacte";
+$a->strings["Everybody"] = "Toată lumea";
+$a->strings["edit"] = "editare";
+$a->strings["Edit group"] = "Editare grup";
+$a->strings["Create a new group"] = "Creați un nou grup";
+$a->strings["Contacts not in any group"] = "Contacte ce nu se află în orice grup";
+$a->strings["stopped following"] = "urmărire întreruptă";
+$a->strings["Drop Contact"] = "Eliminare Contact";
+$a->strings["Miscellaneous"] = "Diverse";
+$a->strings["year"] = "an";
+$a->strings["month"] = "lună";
+$a->strings["day"] = "zi";
+$a->strings["never"] = "niciodată";
+$a->strings["less than a second ago"] = "acum mai puțin de o secundă";
+$a->strings["years"] = "ani";
+$a->strings["months"] = "luni";
+$a->strings["week"] = "săptămână";
+$a->strings["weeks"] = "săptămâni";
+$a->strings["days"] = "zile";
+$a->strings["hour"] = "oră";
+$a->strings["hours"] = "ore";
+$a->strings["minute"] = "minut";
+$a->strings["minutes"] = "minute";
+$a->strings["second"] = "secundă";
+$a->strings["seconds"] = "secunde";
+$a->strings["%1\$d %2\$s ago"] = "acum %1\$d %2\$s";
+$a->strings["view full size"] = "vezi intreaga mărime";
index 6a1e7167038e7159fc6e3ad78e6da28112c5ed2f..589a7db5e2aa6c7e3ef0850932701769928d12ad 100644 (file)
        var localUser = {{if $local_user}}{{$local_user}}{{else}}false{{/if}};
 
        function confirmDelete() { return confirm("{{$delitem}}"); }
+       function commentExpand(id) {
+               $("#comment-edit-text-" + id).value = '';
+               $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
+               $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
+               $("#mod-cmnt-wrap-" + id).show();
+               openMenu("comment-edit-submit-wrapper-" + id);
+               return true;
+       }
        function commentOpen(obj,id) {
                if(obj.value == '{{$comment}}') {
                        obj.value = '';
index bdfa11509fb972dbceae657c5cf7dc685147e4a3..214f67f721504d5da02cdc0701bf9eea0ac4b674 100644 (file)
@@ -3,7 +3,7 @@
  *     DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
  *
  *}}
-<a href='{{$embedurl}}' onclick='this.innerHTML=Base64.decode("{{$escapedhtml}}"); return false;' style='float:left; margin: 1em; position: relative;'>
+<a class="embed_video" href='{{$embedurl}}' onclick='this.innerHTML=Base64.decode("{{$escapedhtml}}"); return false;'>
        <img width='{{$tw}}' height='{{$th}}' src='{{$turl}}' >
        <div style='position: absolute; top: 0px; left: 0px; width: {{$twpx}}; height: {{$thpx}}; background: url({{$baseurl}}/images/icons/48/play.png) no-repeat center center;'></div>
 </a>
index c1dc3ac6b3850727199491d7de9bae2d7de6c05c..17f07766c423cec58c42a630d7f01e29c5938ade 100644 (file)
-[class^="icon-"],
-[class*=" icon-"] {
-  font-family: FontAwesome;
-  font-style: normal;
-  font-weight: normal;
-}
-.btn.dropdown-toggle [class^="icon-"],
-.btn.dropdown-toggle [class*=" icon-"] {
-  /* keeps button heights with and without icons the same */
-
-  line-height: 1.4em;
-}
+/*!
+ *  Font Awesome 3.2.1
+ *  the iconic font designed for Bootstrap
+ *  ------------------------------------------------------------------------------
+ *  The full suite of pictographic icons, examples, and documentation can be
+ *  found at http://fontawesome.io.  Stay up to date on Twitter at
+ *  http://twitter.com/fontawesome.
+ *
+ *  License
+ *  ------------------------------------------------------------------------------
+ *  - The Font Awesome font is licensed under SIL OFL 1.1 -
+ *    http://scripts.sil.org/OFL
+ *  - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
+ *    http://opensource.org/licenses/mit-license.html
+ *  - Font Awesome documentation licensed under CC BY 3.0 -
+ *    http://creativecommons.org/licenses/by/3.0/
+ *  - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
+ *    "Font Awesome by Dave Gandy - http://fontawesome.io"
+ *
+ *  Author - Dave Gandy
+ *  ------------------------------------------------------------------------------
+ *  Email: dave@fontawesome.io
+ *  Twitter: http://twitter.com/davegandy
+ *  Work: Lead Product Designer @ Kyruus - http://kyruus.com
+ */
 .icon-large {
-  font-size: 1.3333em;
+  font-size: 1.3333333333333333em;
+  margin-top: -4px;
+  padding-top: 3px;
+  margin-bottom: -4px;
+  padding-bottom: 3px;
+  vertical-align: middle;
+}
+.nav [class^="icon-"],
+.nav [class*=" icon-"] {
+  vertical-align: inherit;
+  margin-top: -4px;
+  padding-top: 3px;
+  margin-bottom: -4px;
+  padding-bottom: 3px;
+}
+.nav [class^="icon-"].icon-large,
+.nav [class*=" icon-"].icon-large {
+  vertical-align: -25%;
+}
+.nav-pills [class^="icon-"].icon-large,
+.nav-tabs [class^="icon-"].icon-large,
+.nav-pills [class*=" icon-"].icon-large,
+.nav-tabs [class*=" icon-"].icon-large {
+  line-height: .75em;
+  margin-top: -7px;
+  padding-top: 5px;
+  margin-bottom: -5px;
+  padding-bottom: 4px;
+}
+.btn [class^="icon-"].pull-left,
+.btn [class*=" icon-"].pull-left,
+.btn [class^="icon-"].pull-right,
+.btn [class*=" icon-"].pull-right {
+  vertical-align: inherit;
+}
+.btn [class^="icon-"].icon-large,
+.btn [class*=" icon-"].icon-large {
+  margin-top: -0.5em;
+}
+a [class^="icon-"],
+a [class*=" icon-"] {
+  cursor: pointer;
 }
 .icon-glass {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf000;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf000;');
 }
 .icon-music {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf001;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf001;');
 }
 .icon-search {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf002;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf002;');
 }
-.icon-envelope {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf003;&nbsp;');
+.icon-envelope-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf003;');
 }
 .icon-heart {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf004;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf004;');
 }
 .icon-star {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf005;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf005;');
 }
 .icon-star-empty {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf006;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf006;');
 }
 .icon-user {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf007;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf007;');
 }
 .icon-film {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf008;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf008;');
 }
 .icon-th-large {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf009;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf009;');
 }
 .icon-th {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00a;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00a;');
 }
 .icon-th-list {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00b;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00b;');
 }
 .icon-ok {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00c;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00c;');
 }
 .icon-remove {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00d;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00d;');
 }
 .icon-zoom-in {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00e;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00e;');
 }
 .icon-zoom-out {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf010;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf010;');
 }
 .icon-off {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf011;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf011;');
+}
+.icon-power-off {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf011;');
 }
 .icon-signal {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf012;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf012;');
 }
 .icon-cog {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf013;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf013;');
+}
+.icon-gear {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf013;');
 }
 .icon-trash {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf014;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf014;');
 }
 .icon-home {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf015;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf015;');
 }
-.icon-file {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf016;&nbsp;');
+.icon-file-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf016;');
 }
 .icon-time {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf017;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf017;');
 }
 .icon-road {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf018;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf018;');
 }
 .icon-download-alt {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf019;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf019;');
 }
 .icon-download {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01a;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01a;');
 }
 .icon-upload {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01b;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01b;');
 }
 .icon-inbox {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01c;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01c;');
 }
 .icon-play-circle {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01d;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01d;');
 }
 .icon-repeat {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01e;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01e;');
+}
+.icon-rotate-right {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01e;');
 }
 .icon-refresh {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf021;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf021;');
 }
 .icon-list-alt {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf022;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf022;');
 }
 .icon-lock {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf023;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf023;');
 }
 .icon-flag {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf024;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf024;');
 }
 .icon-headphones {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf025;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf025;');
 }
 .icon-volume-off {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf026;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf026;');
 }
 .icon-volume-down {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf027;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf027;');
 }
 .icon-volume-up {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf028;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf028;');
 }
 .icon-qrcode {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf029;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf029;');
 }
 .icon-barcode {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02a;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02a;');
 }
 .icon-tag {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02b;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02b;');
 }
 .icon-tags {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02c;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02c;');
 }
 .icon-book {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02d;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02d;');
 }
 .icon-bookmark {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02e;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02e;');
 }
 .icon-print {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02f;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02f;');
 }
 .icon-camera {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf030;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf030;');
 }
 .icon-font {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf031;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf031;');
 }
 .icon-bold {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf032;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf032;');
 }
 .icon-italic {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf033;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf033;');
 }
 .icon-text-height {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf034;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf034;');
 }
 .icon-text-width {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf035;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf035;');
 }
 .icon-align-left {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf036;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf036;');
 }
 .icon-align-center {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf037;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf037;');
 }
 .icon-align-right {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf038;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf038;');
 }
 .icon-align-justify {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf039;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf039;');
 }
 .icon-list {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03a;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03a;');
 }
 .icon-indent-left {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03b;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03b;');
 }
 .icon-indent-right {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03c;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03c;');
 }
 .icon-facetime-video {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03d;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03d;');
 }
 .icon-picture {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03e;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03e;');
 }
 .icon-pencil {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf040;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf040;');
 }
 .icon-map-marker {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf041;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf041;');
 }
 .icon-adjust {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf042;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf042;');
 }
 .icon-tint {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf043;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf043;');
 }
 .icon-edit {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf044;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf044;');
 }
 .icon-share {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf045;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf045;');
 }
 .icon-check {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf046;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf046;');
 }
 .icon-move {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf047;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf047;');
 }
 .icon-step-backward {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf048;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf048;');
 }
 .icon-fast-backward {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf049;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf049;');
 }
 .icon-backward {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04a;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04a;');
 }
 .icon-play {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04b;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04b;');
 }
 .icon-pause {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04c;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04c;');
 }
 .icon-stop {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04d;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04d;');
 }
 .icon-forward {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04e;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04e;');
 }
 .icon-fast-forward {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf050;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf050;');
 }
 .icon-step-forward {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf051;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf051;');
 }
 .icon-eject {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf052;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf052;');
 }
 .icon-chevron-left {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf053;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf053;');
 }
 .icon-chevron-right {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf054;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf054;');
 }
 .icon-plus-sign {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf055;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf055;');
 }
 .icon-minus-sign {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf056;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf056;');
 }
 .icon-remove-sign {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf057;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf057;');
 }
 .icon-ok-sign {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf058;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf058;');
 }
 .icon-question-sign {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf059;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf059;');
 }
 .icon-info-sign {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05a;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05a;');
 }
 .icon-screenshot {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05b;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05b;');
 }
 .icon-remove-circle {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05c;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05c;');
 }
 .icon-ok-circle {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05d;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05d;');
 }
 .icon-ban-circle {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05e;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05e;');
 }
 .icon-arrow-left {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf060;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf060;');
 }
 .icon-arrow-right {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf061;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf061;');
 }
 .icon-arrow-up {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf062;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf062;');
 }
 .icon-arrow-down {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf063;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf063;');
 }
 .icon-share-alt {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf064;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf064;');
+}
+.icon-mail-forward {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf064;');
 }
 .icon-resize-full {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf065;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf065;');
 }
 .icon-resize-small {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf066;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf066;');
 }
 .icon-plus {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf067;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf067;');
 }
 .icon-minus {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf068;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf068;');
 }
 .icon-asterisk {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf069;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf069;');
 }
 .icon-exclamation-sign {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06a;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06a;');
 }
 .icon-gift {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06b;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06b;');
 }
 .icon-leaf {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06c;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06c;');
 }
 .icon-fire {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06d;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06d;');
 }
 .icon-eye-open {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06e;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06e;');
 }
 .icon-eye-close {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf070;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf070;');
 }
 .icon-warning-sign {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf071;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf071;');
 }
 .icon-plane {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf072;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf072;');
 }
 .icon-calendar {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf073;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf073;');
 }
 .icon-random {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf074;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf074;');
 }
 .icon-comment {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf075;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf075;');
 }
 .icon-magnet {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf076;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf076;');
 }
 .icon-chevron-up {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf077;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf077;');
 }
 .icon-chevron-down {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf078;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf078;');
 }
 .icon-retweet {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf079;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf079;');
 }
 .icon-shopping-cart {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07a;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07a;');
 }
 .icon-folder-close {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07b;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07b;');
 }
 .icon-folder-open {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07c;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07c;');
 }
 .icon-resize-vertical {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07d;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07d;');
 }
 .icon-resize-horizontal {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07e;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07e;');
 }
 .icon-bar-chart {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf080;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf080;');
 }
 .icon-twitter-sign {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf081;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf081;');
 }
 .icon-facebook-sign {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf082;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf082;');
 }
 .icon-camera-retro {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf083;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf083;');
 }
 .icon-key {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf084;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf084;');
 }
 .icon-cogs {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf085;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf085;');
+}
+.icon-gears {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf085;');
 }
 .icon-comments {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf086;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf086;');
 }
-.icon-thumbs-up {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf087;&nbsp;');
+.icon-thumbs-up-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf087;');
 }
-.icon-thumbs-down {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf088;&nbsp;');
+.icon-thumbs-down-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf088;');
 }
 .icon-star-half {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf089;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf089;');
 }
 .icon-heart-empty {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08a;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08a;');
 }
 .icon-signout {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08b;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08b;');
 }
 .icon-linkedin-sign {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08c;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08c;');
 }
 .icon-pushpin {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08d;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08d;');
 }
 .icon-external-link {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08e;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08e;');
 }
 .icon-signin {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf090;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf090;');
 }
 .icon-trophy {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf091;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf091;');
 }
 .icon-github-sign {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf092;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf092;');
 }
 .icon-upload-alt {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf093;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf093;');
 }
 .icon-lemon {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf094;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf094;');
 }
 .icon-phone {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf095;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf095;');
 }
 .icon-check-empty {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf096;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf096;');
+}
+.icon-unchecked {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf096;');
 }
 .icon-bookmark-empty {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf097;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf097;');
 }
 .icon-phone-sign {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf098;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf098;');
 }
 .icon-twitter {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf099;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf099;');
 }
 .icon-facebook {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09a;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09a;');
 }
 .icon-github {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09b;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09b;');
 }
 .icon-unlock {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09c;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09c;');
 }
 .icon-credit-card {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09d;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09d;');
 }
 .icon-rss {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09e;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09e;');
 }
 .icon-hdd {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a0;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a0;');
 }
 .icon-bullhorn {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a1;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a1;');
 }
 .icon-bell {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a2;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a2;');
 }
 .icon-certificate {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a3;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a3;');
 }
 .icon-hand-right {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a4;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a4;');
 }
 .icon-hand-left {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a5;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a5;');
 }
 .icon-hand-up {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a6;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a6;');
 }
 .icon-hand-down {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a7;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a7;');
 }
 .icon-circle-arrow-left {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a8;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a8;');
 }
 .icon-circle-arrow-right {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a9;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a9;');
 }
 .icon-circle-arrow-up {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0aa;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0aa;');
 }
 .icon-circle-arrow-down {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ab;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ab;');
 }
 .icon-globe {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ac;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ac;');
 }
 .icon-wrench {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ad;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ad;');
 }
 .icon-tasks {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ae;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ae;');
 }
 .icon-filter {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b0;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b0;');
 }
 .icon-briefcase {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b1;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b1;');
 }
 .icon-fullscreen {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b2;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b2;');
 }
 .icon-group {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c0;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c0;');
 }
 .icon-link {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c1;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c1;');
 }
 .icon-cloud {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c2;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c2;');
 }
 .icon-beaker {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c3;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c3;');
 }
 .icon-cut {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c4;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c4;');
 }
 .icon-copy {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c5;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c5;');
 }
 .icon-paper-clip {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c6;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c6;');
+}
+.icon-paperclip {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c6;');
 }
 .icon-save {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c7;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c7;');
 }
 .icon-sign-blank {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c8;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c8;');
 }
 .icon-reorder {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c9;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c9;');
 }
 .icon-list-ul {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ca;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ca;');
 }
 .icon-list-ol {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0cb;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0cb;');
 }
 .icon-strikethrough {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0cc;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0cc;');
 }
 .icon-underline {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0cd;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0cd;');
 }
 .icon-table {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ce;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ce;');
 }
 .icon-magic {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d0;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d0;');
 }
 .icon-truck {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d1;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d1;');
 }
 .icon-pinterest {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d2;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d2;');
 }
 .icon-pinterest-sign {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d3;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d3;');
 }
 .icon-google-plus-sign {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d4;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d4;');
 }
 .icon-google-plus {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d5;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d5;');
 }
 .icon-money {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d6;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d6;');
 }
 .icon-caret-down {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d7;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d7;');
 }
 .icon-caret-up {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d8;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d8;');
 }
 .icon-caret-left {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d9;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d9;');
 }
 .icon-caret-right {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0da;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0da;');
 }
 .icon-columns {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0db;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0db;');
 }
 .icon-sort {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dc;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dc;');
 }
 .icon-sort-down {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dd;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dd;');
 }
 .icon-sort-up {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0de;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0de;');
 }
-.icon-envelope-alt {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e0;&nbsp;');
+.icon-envelope {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e0;');
 }
 .icon-linkedin {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e1;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e1;');
 }
 .icon-undo {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e2;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e2;');
+}
+.icon-rotate-left {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e2;');
 }
 .icon-legal {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e3;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e3;');
 }
 .icon-dashboard {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e4;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e4;');
 }
 .icon-comment-alt {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e5;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e5;');
 }
 .icon-comments-alt {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e6;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e6;');
 }
 .icon-bolt {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e7;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e7;');
 }
 .icon-sitemap {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e8;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e8;');
 }
 .icon-umbrella {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e9;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e9;');
 }
 .icon-paste {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ea;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ea;');
+}
+.icon-lightbulb {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0eb;');
+}
+.icon-exchange {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ec;');
+}
+.icon-cloud-download {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ed;');
+}
+.icon-cloud-upload {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ee;');
 }
 .icon-user-md {
-  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf200;&nbsp;');
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f0;');
+}
+.icon-stethoscope {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f1;');
+}
+.icon-suitcase {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f2;');
+}
+.icon-bell-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f3;');
+}
+.icon-coffee {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f4;');
+}
+.icon-food {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f5;');
+}
+.icon-file-text-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f6;');
+}
+.icon-building {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f7;');
+}
+.icon-hospital {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f8;');
+}
+.icon-ambulance {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f9;');
+}
+.icon-medkit {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fa;');
+}
+.icon-fighter-jet {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fb;');
+}
+.icon-beer {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fc;');
+}
+.icon-h-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fd;');
+}
+.icon-plus-sign-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fe;');
+}
+.icon-double-angle-left {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf100;');
+}
+.icon-double-angle-right {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf101;');
+}
+.icon-double-angle-up {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf102;');
+}
+.icon-double-angle-down {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf103;');
+}
+.icon-angle-left {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf104;');
+}
+.icon-angle-right {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf105;');
+}
+.icon-angle-up {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf106;');
+}
+.icon-angle-down {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf107;');
+}
+.icon-desktop {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf108;');
+}
+.icon-laptop {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf109;');
+}
+.icon-tablet {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10a;');
+}
+.icon-mobile-phone {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10b;');
+}
+.icon-circle-blank {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10c;');
+}
+.icon-quote-left {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10d;');
+}
+.icon-quote-right {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10e;');
+}
+.icon-spinner {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf110;');
+}
+.icon-circle {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf111;');
+}
+.icon-reply {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf112;');
+}
+.icon-mail-reply {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf112;');
+}
+.icon-github-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf113;');
+}
+.icon-folder-close-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf114;');
+}
+.icon-folder-open-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf115;');
+}
+.icon-expand-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf116;');
+}
+.icon-collapse-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf117;');
+}
+.icon-smile {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf118;');
+}
+.icon-frown {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf119;');
+}
+.icon-meh {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf11a;');
+}
+.icon-gamepad {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf11b;');
+}
+.icon-keyboard {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf11c;');
+}
+.icon-flag-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf11d;');
+}
+.icon-flag-checkered {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf11e;');
+}
+.icon-terminal {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf120;');
+}
+.icon-code {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf121;');
+}
+.icon-reply-all {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf122;');
+}
+.icon-mail-reply-all {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf122;');
+}
+.icon-star-half-empty {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf123;');
+}
+.icon-star-half-full {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf123;');
+}
+.icon-location-arrow {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf124;');
+}
+.icon-crop {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf125;');
+}
+.icon-code-fork {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf126;');
+}
+.icon-unlink {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf127;');
+}
+.icon-question {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf128;');
+}
+.icon-info {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf129;');
+}
+.icon-exclamation {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12a;');
+}
+.icon-superscript {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12b;');
+}
+.icon-subscript {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12c;');
+}
+.icon-eraser {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12d;');
+}
+.icon-puzzle-piece {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12e;');
+}
+.icon-microphone {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf130;');
+}
+.icon-microphone-off {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf131;');
+}
+.icon-shield {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf132;');
+}
+.icon-calendar-empty {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf133;');
+}
+.icon-fire-extinguisher {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf134;');
+}
+.icon-rocket {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf135;');
+}
+.icon-maxcdn {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf136;');
+}
+.icon-chevron-sign-left {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf137;');
+}
+.icon-chevron-sign-right {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf138;');
+}
+.icon-chevron-sign-up {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf139;');
+}
+.icon-chevron-sign-down {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13a;');
+}
+.icon-html5 {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13b;');
+}
+.icon-css3 {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13c;');
+}
+.icon-anchor {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13d;');
+}
+.icon-unlock-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13e;');
+}
+.icon-bullseye {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf140;');
+}
+.icon-ellipsis-horizontal {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf141;');
+}
+.icon-ellipsis-vertical {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf142;');
+}
+.icon-rss-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf143;');
+}
+.icon-play-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf144;');
+}
+.icon-ticket {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf145;');
+}
+.icon-minus-sign-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf146;');
+}
+.icon-check-minus {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf147;');
+}
+.icon-level-up {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf148;');
+}
+.icon-level-down {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf149;');
+}
+.icon-check-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14a;');
+}
+.icon-edit-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14b;');
+}
+.icon-external-link-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14c;');
+}
+.icon-share-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14d;');
+}
+.icon-compass {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14e;');
+}
+.icon-collapse {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf150;');
+}
+.icon-collapse-top {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf151;');
+}
+.icon-expand {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf152;');
+}
+.icon-eur {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf153;');
+}
+.icon-euro {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf153;');
+}
+.icon-gbp {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf154;');
+}
+.icon-usd {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf155;');
+}
+.icon-dollar {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf155;');
+}
+.icon-inr {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf156;');
+}
+.icon-rupee {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf156;');
+}
+.icon-jpy {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf157;');
+}
+.icon-yen {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf157;');
+}
+.icon-cny {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf158;');
+}
+.icon-renminbi {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf158;');
+}
+.icon-krw {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf159;');
+}
+.icon-won {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf159;');
+}
+.icon-btc {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15a;');
+}
+.icon-bitcoin {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15a;');
+}
+.icon-file {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15b;');
+}
+.icon-file-text {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15c;');
+}
+.icon-sort-by-alphabet {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15d;');
+}
+.icon-sort-by-alphabet-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15e;');
+}
+.icon-sort-by-attributes {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf160;');
+}
+.icon-sort-by-attributes-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf161;');
+}
+.icon-sort-by-order {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf162;');
+}
+.icon-sort-by-order-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf163;');
+}
+.icon-thumbs-up {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf164;');
+}
+.icon-thumbs-down {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf165;');
+}
+.icon-youtube-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf166;');
+}
+.icon-youtube {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf167;');
+}
+.icon-xing {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf168;');
+}
+.icon-xing-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf169;');
+}
+.icon-youtube-play {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16a;');
+}
+.icon-dropbox {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16b;');
+}
+.icon-stackexchange {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16c;');
+}
+.icon-instagram {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16d;');
+}
+.icon-flickr {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16e;');
+}
+.icon-adn {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf170;');
+}
+.icon-bitbucket {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf171;');
+}
+.icon-bitbucket-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf172;');
+}
+.icon-tumblr {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf173;');
+}
+.icon-tumblr-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf174;');
+}
+.icon-long-arrow-down {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf175;');
+}
+.icon-long-arrow-up {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf176;');
+}
+.icon-long-arrow-left {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf177;');
+}
+.icon-long-arrow-right {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf178;');
+}
+.icon-apple {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf179;');
+}
+.icon-windows {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17a;');
+}
+.icon-android {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17b;');
+}
+.icon-linux {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17c;');
+}
+.icon-dribbble {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17d;');
+}
+.icon-skype {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17e;');
+}
+.icon-foursquare {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf180;');
+}
+.icon-trello {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf181;');
+}
+.icon-female {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf182;');
+}
+.icon-male {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf183;');
+}
+.icon-gittip {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf184;');
+}
+.icon-sun {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf185;');
+}
+.icon-moon {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf186;');
+}
+.icon-archive {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf187;');
+}
+.icon-bug {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf188;');
+}
+.icon-vk {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf189;');
+}
+.icon-weibo {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf18a;');
+}
+.icon-renren {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf18b;');
 }
diff --git a/view/theme/vier/css/font-awesome-ie7.min.css b/view/theme/vier/css/font-awesome-ie7.min.css
new file mode 100644 (file)
index 0000000..d3dae63
--- /dev/null
@@ -0,0 +1,384 @@
+.icon-large{font-size:1.3333333333333333em;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px;vertical-align:middle;}
+.nav [class^="icon-"],.nav [class*=" icon-"]{vertical-align:inherit;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px;}.nav [class^="icon-"].icon-large,.nav [class*=" icon-"].icon-large{vertical-align:-25%;}
+.nav-pills [class^="icon-"].icon-large,.nav-tabs [class^="icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large{line-height:.75em;margin-top:-7px;padding-top:5px;margin-bottom:-5px;padding-bottom:4px;}
+.btn [class^="icon-"].pull-left,.btn [class*=" icon-"].pull-left,.btn [class^="icon-"].pull-right,.btn [class*=" icon-"].pull-right{vertical-align:inherit;}
+.btn [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large{margin-top:-0.5em;}
+a [class^="icon-"],a [class*=" icon-"]{cursor:pointer;}
+.icon-glass{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf000;');}
+.icon-music{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf001;');}
+.icon-search{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf002;');}
+.icon-envelope-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf003;');}
+.icon-heart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf004;');}
+.icon-star{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf005;');}
+.icon-star-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf006;');}
+.icon-user{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf007;');}
+.icon-film{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf008;');}
+.icon-th-large{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf009;');}
+.icon-th{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00a;');}
+.icon-th-list{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00b;');}
+.icon-ok{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00c;');}
+.icon-remove{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00d;');}
+.icon-zoom-in{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00e;');}
+.icon-zoom-out{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf010;');}
+.icon-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf011;');}
+.icon-power-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf011;');}
+.icon-signal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf012;');}
+.icon-cog{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf013;');}
+.icon-gear{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf013;');}
+.icon-trash{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf014;');}
+.icon-home{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf015;');}
+.icon-file-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf016;');}
+.icon-time{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf017;');}
+.icon-road{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf018;');}
+.icon-download-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf019;');}
+.icon-download{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01a;');}
+.icon-upload{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01b;');}
+.icon-inbox{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01c;');}
+.icon-play-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01d;');}
+.icon-repeat{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01e;');}
+.icon-rotate-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01e;');}
+.icon-refresh{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf021;');}
+.icon-list-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf022;');}
+.icon-lock{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf023;');}
+.icon-flag{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf024;');}
+.icon-headphones{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf025;');}
+.icon-volume-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf026;');}
+.icon-volume-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf027;');}
+.icon-volume-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf028;');}
+.icon-qrcode{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf029;');}
+.icon-barcode{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02a;');}
+.icon-tag{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02b;');}
+.icon-tags{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02c;');}
+.icon-book{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02d;');}
+.icon-bookmark{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02e;');}
+.icon-print{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02f;');}
+.icon-camera{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf030;');}
+.icon-font{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf031;');}
+.icon-bold{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf032;');}
+.icon-italic{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf033;');}
+.icon-text-height{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf034;');}
+.icon-text-width{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf035;');}
+.icon-align-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf036;');}
+.icon-align-center{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf037;');}
+.icon-align-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf038;');}
+.icon-align-justify{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf039;');}
+.icon-list{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03a;');}
+.icon-indent-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03b;');}
+.icon-indent-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03c;');}
+.icon-facetime-video{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03d;');}
+.icon-picture{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03e;');}
+.icon-pencil{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf040;');}
+.icon-map-marker{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf041;');}
+.icon-adjust{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf042;');}
+.icon-tint{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf043;');}
+.icon-edit{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf044;');}
+.icon-share{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf045;');}
+.icon-check{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf046;');}
+.icon-move{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf047;');}
+.icon-step-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf048;');}
+.icon-fast-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf049;');}
+.icon-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04a;');}
+.icon-play{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04b;');}
+.icon-pause{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04c;');}
+.icon-stop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04d;');}
+.icon-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04e;');}
+.icon-fast-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf050;');}
+.icon-step-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf051;');}
+.icon-eject{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf052;');}
+.icon-chevron-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf053;');}
+.icon-chevron-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf054;');}
+.icon-plus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf055;');}
+.icon-minus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf056;');}
+.icon-remove-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf057;');}
+.icon-ok-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf058;');}
+.icon-question-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf059;');}
+.icon-info-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05a;');}
+.icon-screenshot{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05b;');}
+.icon-remove-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05c;');}
+.icon-ok-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05d;');}
+.icon-ban-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05e;');}
+.icon-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf060;');}
+.icon-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf061;');}
+.icon-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf062;');}
+.icon-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf063;');}
+.icon-share-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf064;');}
+.icon-mail-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf064;');}
+.icon-resize-full{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf065;');}
+.icon-resize-small{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf066;');}
+.icon-plus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf067;');}
+.icon-minus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf068;');}
+.icon-asterisk{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf069;');}
+.icon-exclamation-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06a;');}
+.icon-gift{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06b;');}
+.icon-leaf{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06c;');}
+.icon-fire{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06d;');}
+.icon-eye-open{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06e;');}
+.icon-eye-close{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf070;');}
+.icon-warning-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf071;');}
+.icon-plane{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf072;');}
+.icon-calendar{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf073;');}
+.icon-random{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf074;');}
+.icon-comment{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf075;');}
+.icon-magnet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf076;');}
+.icon-chevron-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf077;');}
+.icon-chevron-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf078;');}
+.icon-retweet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf079;');}
+.icon-shopping-cart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07a;');}
+.icon-folder-close{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07b;');}
+.icon-folder-open{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07c;');}
+.icon-resize-vertical{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07d;');}
+.icon-resize-horizontal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07e;');}
+.icon-bar-chart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf080;');}
+.icon-twitter-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf081;');}
+.icon-facebook-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf082;');}
+.icon-camera-retro{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf083;');}
+.icon-key{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf084;');}
+.icon-cogs{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf085;');}
+.icon-gears{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf085;');}
+.icon-comments{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf086;');}
+.icon-thumbs-up-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf087;');}
+.icon-thumbs-down-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf088;');}
+.icon-star-half{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf089;');}
+.icon-heart-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08a;');}
+.icon-signout{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08b;');}
+.icon-linkedin-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08c;');}
+.icon-pushpin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08d;');}
+.icon-external-link{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08e;');}
+.icon-signin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf090;');}
+.icon-trophy{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf091;');}
+.icon-github-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf092;');}
+.icon-upload-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf093;');}
+.icon-lemon{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf094;');}
+.icon-phone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf095;');}
+.icon-check-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf096;');}
+.icon-unchecked{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf096;');}
+.icon-bookmark-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf097;');}
+.icon-phone-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf098;');}
+.icon-twitter{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf099;');}
+.icon-facebook{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09a;');}
+.icon-github{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09b;');}
+.icon-unlock{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09c;');}
+.icon-credit-card{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09d;');}
+.icon-rss{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09e;');}
+.icon-hdd{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a0;');}
+.icon-bullhorn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a1;');}
+.icon-bell{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a2;');}
+.icon-certificate{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a3;');}
+.icon-hand-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a4;');}
+.icon-hand-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a5;');}
+.icon-hand-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a6;');}
+.icon-hand-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a7;');}
+.icon-circle-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a8;');}
+.icon-circle-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a9;');}
+.icon-circle-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0aa;');}
+.icon-circle-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ab;');}
+.icon-globe{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ac;');}
+.icon-wrench{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ad;');}
+.icon-tasks{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ae;');}
+.icon-filter{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b0;');}
+.icon-briefcase{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b1;');}
+.icon-fullscreen{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b2;');}
+.icon-group{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c0;');}
+.icon-link{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c1;');}
+.icon-cloud{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c2;');}
+.icon-beaker{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c3;');}
+.icon-cut{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c4;');}
+.icon-copy{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c5;');}
+.icon-paper-clip{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c6;');}
+.icon-paperclip{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c6;');}
+.icon-save{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c7;');}
+.icon-sign-blank{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c8;');}
+.icon-reorder{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c9;');}
+.icon-list-ul{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ca;');}
+.icon-list-ol{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0cb;');}
+.icon-strikethrough{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0cc;');}
+.icon-underline{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0cd;');}
+.icon-table{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ce;');}
+.icon-magic{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d0;');}
+.icon-truck{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d1;');}
+.icon-pinterest{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d2;');}
+.icon-pinterest-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d3;');}
+.icon-google-plus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d4;');}
+.icon-google-plus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d5;');}
+.icon-money{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d6;');}
+.icon-caret-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d7;');}
+.icon-caret-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d8;');}
+.icon-caret-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d9;');}
+.icon-caret-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0da;');}
+.icon-columns{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0db;');}
+.icon-sort{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dc;');}
+.icon-sort-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dd;');}
+.icon-sort-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0de;');}
+.icon-envelope{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e0;');}
+.icon-linkedin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e1;');}
+.icon-undo{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e2;');}
+.icon-rotate-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e2;');}
+.icon-legal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e3;');}
+.icon-dashboard{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e4;');}
+.icon-comment-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e5;');}
+.icon-comments-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e6;');}
+.icon-bolt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e7;');}
+.icon-sitemap{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e8;');}
+.icon-umbrella{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e9;');}
+.icon-paste{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ea;');}
+.icon-lightbulb{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0eb;');}
+.icon-exchange{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ec;');}
+.icon-cloud-download{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ed;');}
+.icon-cloud-upload{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ee;');}
+.icon-user-md{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f0;');}
+.icon-stethoscope{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f1;');}
+.icon-suitcase{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f2;');}
+.icon-bell-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f3;');}
+.icon-coffee{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f4;');}
+.icon-food{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f5;');}
+.icon-file-text-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f6;');}
+.icon-building{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f7;');}
+.icon-hospital{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f8;');}
+.icon-ambulance{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0f9;');}
+.icon-medkit{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fa;');}
+.icon-fighter-jet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fb;');}
+.icon-beer{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fc;');}
+.icon-h-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fd;');}
+.icon-plus-sign-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0fe;');}
+.icon-double-angle-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf100;');}
+.icon-double-angle-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf101;');}
+.icon-double-angle-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf102;');}
+.icon-double-angle-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf103;');}
+.icon-angle-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf104;');}
+.icon-angle-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf105;');}
+.icon-angle-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf106;');}
+.icon-angle-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf107;');}
+.icon-desktop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf108;');}
+.icon-laptop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf109;');}
+.icon-tablet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10a;');}
+.icon-mobile-phone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10b;');}
+.icon-circle-blank{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10c;');}
+.icon-quote-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10d;');}
+.icon-quote-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf10e;');}
+.icon-spinner{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf110;');}
+.icon-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf111;');}
+.icon-reply{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf112;');}
+.icon-mail-reply{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf112;');}
+.icon-github-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf113;');}
+.icon-folder-close-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf114;');}
+.icon-folder-open-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf115;');}
+.icon-expand-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf116;');}
+.icon-collapse-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf117;');}
+.icon-smile{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf118;');}
+.icon-frown{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf119;');}
+.icon-meh{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf11a;');}
+.icon-gamepad{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf11b;');}
+.icon-keyboard{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf11c;');}
+.icon-flag-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf11d;');}
+.icon-flag-checkered{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf11e;');}
+.icon-terminal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf120;');}
+.icon-code{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf121;');}
+.icon-reply-all{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf122;');}
+.icon-mail-reply-all{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf122;');}
+.icon-star-half-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf123;');}
+.icon-star-half-full{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf123;');}
+.icon-location-arrow{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf124;');}
+.icon-crop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf125;');}
+.icon-code-fork{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf126;');}
+.icon-unlink{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf127;');}
+.icon-question{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf128;');}
+.icon-info{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf129;');}
+.icon-exclamation{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12a;');}
+.icon-superscript{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12b;');}
+.icon-subscript{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12c;');}
+.icon-eraser{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12d;');}
+.icon-puzzle-piece{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12e;');}
+.icon-microphone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf130;');}
+.icon-microphone-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf131;');}
+.icon-shield{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf132;');}
+.icon-calendar-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf133;');}
+.icon-fire-extinguisher{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf134;');}
+.icon-rocket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf135;');}
+.icon-maxcdn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf136;');}
+.icon-chevron-sign-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf137;');}
+.icon-chevron-sign-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf138;');}
+.icon-chevron-sign-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf139;');}
+.icon-chevron-sign-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13a;');}
+.icon-html5{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13b;');}
+.icon-css3{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13c;');}
+.icon-anchor{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13d;');}
+.icon-unlock-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13e;');}
+.icon-bullseye{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf140;');}
+.icon-ellipsis-horizontal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf141;');}
+.icon-ellipsis-vertical{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf142;');}
+.icon-rss-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf143;');}
+.icon-play-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf144;');}
+.icon-ticket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf145;');}
+.icon-minus-sign-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf146;');}
+.icon-check-minus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf147;');}
+.icon-level-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf148;');}
+.icon-level-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf149;');}
+.icon-check-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14a;');}
+.icon-edit-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14b;');}
+.icon-external-link-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14c;');}
+.icon-share-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14d;');}
+.icon-compass{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf14e;');}
+.icon-collapse{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf150;');}
+.icon-collapse-top{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf151;');}
+.icon-expand{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf152;');}
+.icon-eur{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf153;');}
+.icon-euro{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf153;');}
+.icon-gbp{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf154;');}
+.icon-usd{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf155;');}
+.icon-dollar{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf155;');}
+.icon-inr{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf156;');}
+.icon-rupee{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf156;');}
+.icon-jpy{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf157;');}
+.icon-yen{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf157;');}
+.icon-cny{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf158;');}
+.icon-renminbi{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf158;');}
+.icon-krw{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf159;');}
+.icon-won{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf159;');}
+.icon-btc{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15a;');}
+.icon-bitcoin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15a;');}
+.icon-file{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15b;');}
+.icon-file-text{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15c;');}
+.icon-sort-by-alphabet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15d;');}
+.icon-sort-by-alphabet-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf15e;');}
+.icon-sort-by-attributes{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf160;');}
+.icon-sort-by-attributes-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf161;');}
+.icon-sort-by-order{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf162;');}
+.icon-sort-by-order-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf163;');}
+.icon-thumbs-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf164;');}
+.icon-thumbs-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf165;');}
+.icon-youtube-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf166;');}
+.icon-youtube{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf167;');}
+.icon-xing{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf168;');}
+.icon-xing-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf169;');}
+.icon-youtube-play{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16a;');}
+.icon-dropbox{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16b;');}
+.icon-stackexchange{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16c;');}
+.icon-instagram{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16d;');}
+.icon-flickr{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf16e;');}
+.icon-adn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf170;');}
+.icon-bitbucket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf171;');}
+.icon-bitbucket-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf172;');}
+.icon-tumblr{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf173;');}
+.icon-tumblr-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf174;');}
+.icon-long-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf175;');}
+.icon-long-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf176;');}
+.icon-long-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf177;');}
+.icon-long-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf178;');}
+.icon-apple{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf179;');}
+.icon-windows{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17a;');}
+.icon-android{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17b;');}
+.icon-linux{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17c;');}
+.icon-dribbble{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17d;');}
+.icon-skype{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf17e;');}
+.icon-foursquare{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf180;');}
+.icon-trello{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf181;');}
+.icon-female{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf182;');}
+.icon-male{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf183;');}
+.icon-gittip{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf184;');}
+.icon-sun{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf185;');}
+.icon-moon{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf186;');}
+.icon-archive{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf187;');}
+.icon-bug{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf188;');}
+.icon-vk{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf189;');}
+.icon-weibo{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf18a;');}
+.icon-renren{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf18b;');}
index 4697599c7389b77428e7c15a339a90ebad12b86f..7ede1828a78bfec88156294dbb810c23ed85ca9d 100644 (file)
-/*  Font Awesome
-    the iconic font designed for use with Twitter Bootstrap
-    -------------------------------------------------------
-    The full suite of pictographic icons, examples, and documentation
-    can be found at: http://fortawesome.github.com/Font-Awesome/
-
-    License
-    -------------------------------------------------------
-    The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0:
-    http://creativecommons.org/licenses/by/3.0/ A mention of
-    'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable
-    source code is considered acceptable attribution (most common on the web).
-    If human readable source code is not available to the end user, a mention in
-    an 'About' or 'Credits' screen is considered acceptable (most common in desktop
-    or mobile software).
-
-    Contact
-    -------------------------------------------------------
-    Email: dave@davegandy.com
-    Twitter: http://twitter.com/fortaweso_me
-    Work: http://lemonwi.se co-founder
-
-    */
+/*!
+ *  Font Awesome 3.2.1
+ *  the iconic font designed for Bootstrap
+ *  ------------------------------------------------------------------------------
+ *  The full suite of pictographic icons, examples, and documentation can be
+ *  found at http://fontawesome.io.  Stay up to date on Twitter at
+ *  http://twitter.com/fontawesome.
+ *
+ *  License
+ *  ------------------------------------------------------------------------------
+ *  - The Font Awesome font is licensed under SIL OFL 1.1 -
+ *    http://scripts.sil.org/OFL
+ *  - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
+ *    http://opensource.org/licenses/mit-license.html
+ *  - Font Awesome documentation licensed under CC BY 3.0 -
+ *    http://creativecommons.org/licenses/by/3.0/
+ *  - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
+ *    "Font Awesome by Dave Gandy - http://fontawesome.io"
+ *
+ *  Author - Dave Gandy
+ *  ------------------------------------------------------------------------------
+ *  Email: dave@fontawesome.io
+ *  Twitter: http://twitter.com/davegandy
+ *  Work: Lead Product Designer @ Kyruus - http://kyruus.com
+ */
+/* FONT PATH
+ * -------------------------- */
 @font-face {
-  font-family: "FontAwesome";
-  src: url('../font/fontawesome-webfont.eot');
-  src: url('../font/fontawesome-webfont.eot?#iefix') format('eot'), url('../font/fontawesome-webfont.woff') format('woff'), url('../font/fontawesome-webfont.ttf') format('truetype'), url('../font/fontawesome-webfont.svg#FontAwesome') format('svg');
+  font-family: 'FontAwesome';
+  src: url('../font/fontawesome-webfont.eot?v=3.2.1');
+  src: url('../font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'), url('../font/fontawesome-webfont.woff?v=3.2.1') format('woff'), url('../font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'), url('../font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');
   font-weight: normal;
   font-style: normal;
 }
-
-/*  Font Awesome styles
-    ------------------------------------------------------- */
-[class^="icon-"]:before, [class*=" icon-"]:before {
+/* FONT AWESOME CORE
+ * -------------------------- */
+[class^="icon-"],
+[class*=" icon-"] {
   font-family: FontAwesome;
   font-weight: normal;
   font-style: normal;
-  display: inline-block;
   text-decoration: inherit;
+  -webkit-font-smoothing: antialiased;
+  *margin-right: .3em;
 }
-a [class^="icon-"], a [class*=" icon-"] {
-  display: inline-block;
+[class^="icon-"]:before,
+[class*=" icon-"]:before {
   text-decoration: inherit;
+  display: inline-block;
+  speak: none;
 }
 /* makes the font 33% larger relative to the icon container */
 .icon-large:before {
-  vertical-align: top;
+  vertical-align: -10%;
   font-size: 1.3333333333333333em;
 }
-.btn [class^="icon-"], .btn [class*=" icon-"] {
-  /* keeps button heights with and without icons the same */
-
-  line-height: .9em;
+/* makes sure icons active on rollover in links */
+a [class^="icon-"],
+a [class*=" icon-"] {
+  display: inline;
 }
-li [class^="icon-"], li [class*=" icon-"] {
+/* increased font size for icon-large */
+[class^="icon-"].icon-fixed-width,
+[class*=" icon-"].icon-fixed-width {
   display: inline-block;
-  width: 1.25em;
-  text-align: center;
+  width: 1.1428571428571428em;
+  text-align: right;
+  padding-right: 0.2857142857142857em;
 }
-li .icon-large[class^="icon-"], li .icon-large[class*=" icon-"] {
-  /* 1.5 increased font size for icon-large * 1.25 width */
-
-  width: 1.875em;
+[class^="icon-"].icon-fixed-width.icon-large,
+[class*=" icon-"].icon-fixed-width.icon-large {
+  width: 1.4285714285714286em;
 }
-li[class^="icon-"], li[class*=" icon-"] {
-  margin-left: 0;
+.icons-ul {
+  margin-left: 2.142857142857143em;
   list-style-type: none;
 }
-li[class^="icon-"]:before, li[class*=" icon-"]:before {
-  text-indent: -2em;
+.icons-ul > li {
+  position: relative;
+}
+.icons-ul .icon-li {
+  position: absolute;
+  left: -2.142857142857143em;
+  width: 2.142857142857143em;
   text-align: center;
+  line-height: inherit;
+}
+[class^="icon-"].hide,
+[class*=" icon-"].hide {
+  display: none;
+}
+.icon-muted {
+  color: #eeeeee;
+}
+.icon-light {
+  color: #ffffff;
+}
+.icon-dark {
+  color: #333333;
+}
+.icon-border {
+  border: solid 1px #eeeeee;
+  padding: .2em .25em .15em;
+  -webkit-border-radius: 3px;
+  -moz-border-radius: 3px;
+  border-radius: 3px;
+}
+.icon-2x {
+  font-size: 2em;
+}
+.icon-2x.icon-border {
+  border-width: 2px;
+  -webkit-border-radius: 4px;
+  -moz-border-radius: 4px;
+  border-radius: 4px;
+}
+.icon-3x {
+  font-size: 3em;
+}
+.icon-3x.icon-border {
+  border-width: 3px;
+  -webkit-border-radius: 5px;
+  -moz-border-radius: 5px;
+  border-radius: 5px;
+}
+.icon-4x {
+  font-size: 4em;
+}
+.icon-4x.icon-border {
+  border-width: 4px;
+  -webkit-border-radius: 6px;
+  -moz-border-radius: 6px;
+  border-radius: 6px;
+}
+.icon-5x {
+  font-size: 5em;
+}
+.icon-5x.icon-border {
+  border-width: 5px;
+  -webkit-border-radius: 7px;
+  -moz-border-radius: 7px;
+  border-radius: 7px;
+}
+.pull-right {
+  float: right;
+}
+.pull-left {
+  float: left;
+}
+[class^="icon-"].pull-left,
+[class*=" icon-"].pull-left {
+  margin-right: .3em;
+}
+[class^="icon-"].pull-right,
+[class*=" icon-"].pull-right {
+  margin-left: .3em;
+}
+/* BOOTSTRAP SPECIFIC CLASSES
+ * -------------------------- */
+/* Bootstrap 2.0 sprites.less reset */
+[class^="icon-"],
+[class*=" icon-"] {
+  display: inline;
+  width: auto;
+  height: auto;
+  line-height: normal;
+  vertical-align: baseline;
+  background-image: none;
+  background-position: 0% 0%;
+  background-repeat: repeat;
+  margin-top: 0;
+}
+/* more sprites.less reset */
+.icon-white,
+.nav-pills > .active > a > [class^="icon-"],
+.nav-pills > .active > a > [class*=" icon-"],
+.nav-list > .active > a > [class^="icon-"],
+.nav-list > .active > a > [class*=" icon-"],
+.navbar-inverse .nav > .active > a > [class^="icon-"],
+.navbar-inverse .nav > .active > a > [class*=" icon-"],
+.dropdown-menu > li > a:hover > [class^="icon-"],
+.dropdown-menu > li > a:hover > [class*=" icon-"],
+.dropdown-menu > .active > a > [class^="icon-"],
+.dropdown-menu > .active > a > [class*=" icon-"],
+.dropdown-submenu:hover > a > [class^="icon-"],
+.dropdown-submenu:hover > a > [class*=" icon-"] {
+  background-image: none;
+}
+/* keeps Bootstrap styles with and without icons the same */
+.btn [class^="icon-"].icon-large,
+.nav [class^="icon-"].icon-large,
+.btn [class*=" icon-"].icon-large,
+.nav [class*=" icon-"].icon-large {
+  line-height: .9em;
+}
+.btn [class^="icon-"].icon-spin,
+.nav [class^="icon-"].icon-spin,
+.btn [class*=" icon-"].icon-spin,
+.nav [class*=" icon-"].icon-spin {
+  display: inline-block;
+}
+.nav-tabs [class^="icon-"],
+.nav-pills [class^="icon-"],
+.nav-tabs [class*=" icon-"],
+.nav-pills [class*=" icon-"],
+.nav-tabs [class^="icon-"].icon-large,
+.nav-pills [class^="icon-"].icon-large,
+.nav-tabs [class*=" icon-"].icon-large,
+.nav-pills [class*=" icon-"].icon-large {
+  line-height: .9em;
+}
+.btn [class^="icon-"].pull-left.icon-2x,
+.btn [class*=" icon-"].pull-left.icon-2x,
+.btn [class^="icon-"].pull-right.icon-2x,
+.btn [class*=" icon-"].pull-right.icon-2x {
+  margin-top: .18em;
+}
+.btn [class^="icon-"].icon-spin.icon-large,
+.btn [class*=" icon-"].icon-spin.icon-large {
+  line-height: .8em;
+}
+.btn.btn-small [class^="icon-"].pull-left.icon-2x,
+.btn.btn-small [class*=" icon-"].pull-left.icon-2x,
+.btn.btn-small [class^="icon-"].pull-right.icon-2x,
+.btn.btn-small [class*=" icon-"].pull-right.icon-2x {
+  margin-top: .25em;
+}
+.btn.btn-large [class^="icon-"],
+.btn.btn-large [class*=" icon-"] {
+  margin-top: 0;
+}
+.btn.btn-large [class^="icon-"].pull-left.icon-2x,
+.btn.btn-large [class*=" icon-"].pull-left.icon-2x,
+.btn.btn-large [class^="icon-"].pull-right.icon-2x,
+.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
+  margin-top: .05em;
+}
+.btn.btn-large [class^="icon-"].pull-left.icon-2x,
+.btn.btn-large [class*=" icon-"].pull-left.icon-2x {
+  margin-right: .2em;
+}
+.btn.btn-large [class^="icon-"].pull-right.icon-2x,
+.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
+  margin-left: .2em;
+}
+/* Fixes alignment in nav lists */
+.nav-list [class^="icon-"],
+.nav-list [class*=" icon-"] {
+  line-height: inherit;
+}
+/* EXTRAS
+ * -------------------------- */
+/* Stacked and layered icon */
+.icon-stack {
+  position: relative;
+  display: inline-block;
+  width: 2em;
+  height: 2em;
+  line-height: 2em;
+  vertical-align: -35%;
+}
+.icon-stack [class^="icon-"],
+.icon-stack [class*=" icon-"] {
+  display: block;
+  text-align: center;
+  position: absolute;
+  width: 100%;
+  height: 100%;
+  font-size: 1em;
+  line-height: inherit;
+  *line-height: 2em;
+}
+.icon-stack .icon-stack-base {
+  font-size: 2em;
+  *line-height: 1em;
+}
+/* Animated rotating icon */
+.icon-spin {
+  display: inline-block;
+  -moz-animation: spin 2s infinite linear;
+  -o-animation: spin 2s infinite linear;
+  -webkit-animation: spin 2s infinite linear;
+  animation: spin 2s infinite linear;
+}
+/* Prevent stack and spinners from being taken inline when inside a link */
+a .icon-stack,
+a .icon-spin {
+  display: inline-block;
+  text-decoration: none;
+}
+@-moz-keyframes spin {
+  0% {
+    -moz-transform: rotate(0deg);
+  }
+  100% {
+    -moz-transform: rotate(359deg);
+  }
+}
+@-webkit-keyframes spin {
+  0% {
+    -webkit-transform: rotate(0deg);
+  }
+  100% {
+    -webkit-transform: rotate(359deg);
+  }
+}
+@-o-keyframes spin {
+  0% {
+    -o-transform: rotate(0deg);
+  }
+  100% {
+    -o-transform: rotate(359deg);
+  }
+}
+@-ms-keyframes spin {
+  0% {
+    -ms-transform: rotate(0deg);
+  }
+  100% {
+    -ms-transform: rotate(359deg);
+  }
+}
+@keyframes spin {
+  0% {
+    transform: rotate(0deg);
+  }
+  100% {
+    transform: rotate(359deg);
+  }
+}
+/* Icon rotations and mirroring */
+.icon-rotate-90:before {
+  -webkit-transform: rotate(90deg);
+  -moz-transform: rotate(90deg);
+  -ms-transform: rotate(90deg);
+  -o-transform: rotate(90deg);
+  transform: rotate(90deg);
+  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
+}
+.icon-rotate-180:before {
+  -webkit-transform: rotate(180deg);
+  -moz-transform: rotate(180deg);
+  -ms-transform: rotate(180deg);
+  -o-transform: rotate(180deg);
+  transform: rotate(180deg);
+  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
+}
+.icon-rotate-270:before {
+  -webkit-transform: rotate(270deg);
+  -moz-transform: rotate(270deg);
+  -ms-transform: rotate(270deg);
+  -o-transform: rotate(270deg);
+  transform: rotate(270deg);
+  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
+}
+.icon-flip-horizontal:before {
+  -webkit-transform: scale(-1, 1);
+  -moz-transform: scale(-1, 1);
+  -ms-transform: scale(-1, 1);
+  -o-transform: scale(-1, 1);
+  transform: scale(-1, 1);
+}
+.icon-flip-vertical:before {
+  -webkit-transform: scale(1, -1);
+  -moz-transform: scale(1, -1);
+  -ms-transform: scale(1, -1);
+  -o-transform: scale(1, -1);
+  transform: scale(1, -1);
+}
+/* ensure rotation occurs inside anchor tags */
+a .icon-rotate-90:before,
+a .icon-rotate-180:before,
+a .icon-rotate-270:before,
+a .icon-flip-horizontal:before,
+a .icon-flip-vertical:before {
+  display: inline-block;
+}
+/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
+   readers do not read off random characters that represent icons */
+.icon-glass:before {
+  content: "\f000";
+}
+.icon-music:before {
+  content: "\f001";
+}
+.icon-search:before {
+  content: "\f002";
+}
+.icon-envelope-alt:before {
+  content: "\f003";
+}
+.icon-heart:before {
+  content: "\f004";
+}
+.icon-star:before {
+  content: "\f005";
+}
+.icon-star-empty:before {
+  content: "\f006";
+}
+.icon-user:before {
+  content: "\f007";
+}
+.icon-film:before {
+  content: "\f008";
+}
+.icon-th-large:before {
+  content: "\f009";
+}
+.icon-th:before {
+  content: "\f00a";
+}
+.icon-th-list:before {
+  content: "\f00b";
+}
+.icon-ok:before {
+  content: "\f00c";
+}
+.icon-remove:before {
+  content: "\f00d";
+}
+.icon-zoom-in:before {
+  content: "\f00e";
+}
+.icon-zoom-out:before {
+  content: "\f010";
+}
+.icon-power-off:before,
+.icon-off:before {
+  content: "\f011";
+}
+.icon-signal:before {
+  content: "\f012";
+}
+.icon-gear:before,
+.icon-cog:before {
+  content: "\f013";
+}
+.icon-trash:before {
+  content: "\f014";
+}
+.icon-home:before {
+  content: "\f015";
+}
+.icon-file-alt:before {
+  content: "\f016";
+}
+.icon-time:before {
+  content: "\f017";
+}
+.icon-road:before {
+  content: "\f018";
+}
+.icon-download-alt:before {
+  content: "\f019";
+}
+.icon-download:before {
+  content: "\f01a";
+}
+.icon-upload:before {
+  content: "\f01b";
+}
+.icon-inbox:before {
+  content: "\f01c";
+}
+.icon-play-circle:before {
+  content: "\f01d";
+}
+.icon-rotate-right:before,
+.icon-repeat:before {
+  content: "\f01e";
+}
+.icon-refresh:before {
+  content: "\f021";
+}
+.icon-list-alt:before {
+  content: "\f022";
+}
+.icon-lock:before {
+  content: "\f023";
+}
+.icon-flag:before {
+  content: "\f024";
+}
+.icon-headphones:before {
+  content: "\f025";
+}
+.icon-volume-off:before {
+  content: "\f026";
+}
+.icon-volume-down:before {
+  content: "\f027";
+}
+.icon-volume-up:before {
+  content: "\f028";
+}
+.icon-qrcode:before {
+  content: "\f029";
+}
+.icon-barcode:before {
+  content: "\f02a";
+}
+.icon-tag:before {
+  content: "\f02b";
+}
+.icon-tags:before {
+  content: "\f02c";
+}
+.icon-book:before {
+  content: "\f02d";
+}
+.icon-bookmark:before {
+  content: "\f02e";
+}
+.icon-print:before {
+  content: "\f02f";
+}
+.icon-camera:before {
+  content: "\f030";
+}
+.icon-font:before {
+  content: "\f031";
+}
+.icon-bold:before {
+  content: "\f032";
+}
+.icon-italic:before {
+  content: "\f033";
+}
+.icon-text-height:before {
+  content: "\f034";
+}
+.icon-text-width:before {
+  content: "\f035";
+}
+.icon-align-left:before {
+  content: "\f036";
+}
+.icon-align-center:before {
+  content: "\f037";
+}
+.icon-align-right:before {
+  content: "\f038";
+}
+.icon-align-justify:before {
+  content: "\f039";
+}
+.icon-list:before {
+  content: "\f03a";
+}
+.icon-indent-left:before {
+  content: "\f03b";
+}
+.icon-indent-right:before {
+  content: "\f03c";
+}
+.icon-facetime-video:before {
+  content: "\f03d";
+}
+.icon-picture:before {
+  content: "\f03e";
+}
+.icon-pencil:before {
+  content: "\f040";
+}
+.icon-map-marker:before {
+  content: "\f041";
+}
+.icon-adjust:before {
+  content: "\f042";
+}
+.icon-tint:before {
+  content: "\f043";
+}
+.icon-edit:before {
+  content: "\f044";
+}
+.icon-share:before {
+  content: "\f045";
+}
+.icon-check:before {
+  content: "\f046";
+}
+.icon-move:before {
+  content: "\f047";
+}
+.icon-step-backward:before {
+  content: "\f048";
+}
+.icon-fast-backward:before {
+  content: "\f049";
+}
+.icon-backward:before {
+  content: "\f04a";
+}
+.icon-play:before {
+  content: "\f04b";
+}
+.icon-pause:before {
+  content: "\f04c";
+}
+.icon-stop:before {
+  content: "\f04d";
+}
+.icon-forward:before {
+  content: "\f04e";
+}
+.icon-fast-forward:before {
+  content: "\f050";
+}
+.icon-step-forward:before {
+  content: "\f051";
+}
+.icon-eject:before {
+  content: "\f052";
+}
+.icon-chevron-left:before {
+  content: "\f053";
+}
+.icon-chevron-right:before {
+  content: "\f054";
+}
+.icon-plus-sign:before {
+  content: "\f055";
+}
+.icon-minus-sign:before {
+  content: "\f056";
+}
+.icon-remove-sign:before {
+  content: "\f057";
+}
+.icon-ok-sign:before {
+  content: "\f058";
+}
+.icon-question-sign:before {
+  content: "\f059";
+}
+.icon-info-sign:before {
+  content: "\f05a";
+}
+.icon-screenshot:before {
+  content: "\f05b";
+}
+.icon-remove-circle:before {
+  content: "\f05c";
+}
+.icon-ok-circle:before {
+  content: "\f05d";
+}
+.icon-ban-circle:before {
+  content: "\f05e";
+}
+.icon-arrow-left:before {
+  content: "\f060";
+}
+.icon-arrow-right:before {
+  content: "\f061";
+}
+.icon-arrow-up:before {
+  content: "\f062";
+}
+.icon-arrow-down:before {
+  content: "\f063";
+}
+.icon-mail-forward:before,
+.icon-share-alt:before {
+  content: "\f064";
+}
+.icon-resize-full:before {
+  content: "\f065";
+}
+.icon-resize-small:before {
+  content: "\f066";
+}
+.icon-plus:before {
+  content: "\f067";
+}
+.icon-minus:before {
+  content: "\f068";
+}
+.icon-asterisk:before {
+  content: "\f069";
+}
+.icon-exclamation-sign:before {
+  content: "\f06a";
+}
+.icon-gift:before {
+  content: "\f06b";
+}
+.icon-leaf:before {
+  content: "\f06c";
+}
+.icon-fire:before {
+  content: "\f06d";
+}
+.icon-eye-open:before {
+  content: "\f06e";
+}
+.icon-eye-close:before {
+  content: "\f070";
+}
+.icon-warning-sign:before {
+  content: "\f071";
+}
+.icon-plane:before {
+  content: "\f072";
+}
+.icon-calendar:before {
+  content: "\f073";
+}
+.icon-random:before {
+  content: "\f074";
+}
+.icon-comment:before {
+  content: "\f075";
+}
+.icon-magnet:before {
+  content: "\f076";
+}
+.icon-chevron-up:before {
+  content: "\f077";
+}
+.icon-chevron-down:before {
+  content: "\f078";
+}
+.icon-retweet:before {
+  content: "\f079";
+}
+.icon-shopping-cart:before {
+  content: "\f07a";
+}
+.icon-folder-close:before {
+  content: "\f07b";
+}
+.icon-folder-open:before {
+  content: "\f07c";
+}
+.icon-resize-vertical:before {
+  content: "\f07d";
+}
+.icon-resize-horizontal:before {
+  content: "\f07e";
+}
+.icon-bar-chart:before {
+  content: "\f080";
+}
+.icon-twitter-sign:before {
+  content: "\f081";
+}
+.icon-facebook-sign:before {
+  content: "\f082";
+}
+.icon-camera-retro:before {
+  content: "\f083";
+}
+.icon-key:before {
+  content: "\f084";
+}
+.icon-gears:before,
+.icon-cogs:before {
+  content: "\f085";
+}
+.icon-comments:before {
+  content: "\f086";
+}
+.icon-thumbs-up-alt:before {
+  content: "\f087";
+}
+.icon-thumbs-down-alt:before {
+  content: "\f088";
+}
+.icon-star-half:before {
+  content: "\f089";
+}
+.icon-heart-empty:before {
+  content: "\f08a";
+}
+.icon-signout:before {
+  content: "\f08b";
+}
+.icon-linkedin-sign:before {
+  content: "\f08c";
+}
+.icon-pushpin:before {
+  content: "\f08d";
+}
+.icon-external-link:before {
+  content: "\f08e";
+}
+.icon-signin:before {
+  content: "\f090";
+}
+.icon-trophy:before {
+  content: "\f091";
+}
+.icon-github-sign:before {
+  content: "\f092";
+}
+.icon-upload-alt:before {
+  content: "\f093";
+}
+.icon-lemon:before {
+  content: "\f094";
+}
+.icon-phone:before {
+  content: "\f095";
+}
+.icon-unchecked:before,
+.icon-check-empty:before {
+  content: "\f096";
+}
+.icon-bookmark-empty:before {
+  content: "\f097";
+}
+.icon-phone-sign:before {
+  content: "\f098";
+}
+.icon-twitter:before {
+  content: "\f099";
+}
+.icon-facebook:before {
+  content: "\f09a";
+}
+.icon-github:before {
+  content: "\f09b";
+}
+.icon-unlock:before {
+  content: "\f09c";
+}
+.icon-credit-card:before {
+  content: "\f09d";
+}
+.icon-rss:before {
+  content: "\f09e";
+}
+.icon-hdd:before {
+  content: "\f0a0";
+}
+.icon-bullhorn:before {
+  content: "\f0a1";
+}
+.icon-bell:before {
+  content: "\f0a2";
+}
+.icon-certificate:before {
+  content: "\f0a3";
+}
+.icon-hand-right:before {
+  content: "\f0a4";
+}
+.icon-hand-left:before {
+  content: "\f0a5";
+}
+.icon-hand-up:before {
+  content: "\f0a6";
+}
+.icon-hand-down:before {
+  content: "\f0a7";
+}
+.icon-circle-arrow-left:before {
+  content: "\f0a8";
+}
+.icon-circle-arrow-right:before {
+  content: "\f0a9";
+}
+.icon-circle-arrow-up:before {
+  content: "\f0aa";
+}
+.icon-circle-arrow-down:before {
+  content: "\f0ab";
+}
+.icon-globe:before {
+  content: "\f0ac";
+}
+.icon-wrench:before {
+  content: "\f0ad";
+}
+.icon-tasks:before {
+  content: "\f0ae";
+}
+.icon-filter:before {
+  content: "\f0b0";
+}
+.icon-briefcase:before {
+  content: "\f0b1";
+}
+.icon-fullscreen:before {
+  content: "\f0b2";
+}
+.icon-group:before {
+  content: "\f0c0";
+}
+.icon-link:before {
+  content: "\f0c1";
+}
+.icon-cloud:before {
+  content: "\f0c2";
+}
+.icon-beaker:before {
+  content: "\f0c3";
+}
+.icon-cut:before {
+  content: "\f0c4";
+}
+.icon-copy:before {
+  content: "\f0c5";
+}
+.icon-paperclip:before,
+.icon-paper-clip:before {
+  content: "\f0c6";
+}
+.icon-save:before {
+  content: "\f0c7";
+}
+.icon-sign-blank:before {
+  content: "\f0c8";
+}
+.icon-reorder:before {
+  content: "\f0c9";
+}
+.icon-list-ul:before {
+  content: "\f0ca";
+}
+.icon-list-ol:before {
+  content: "\f0cb";
+}
+.icon-strikethrough:before {
+  content: "\f0cc";
+}
+.icon-underline:before {
+  content: "\f0cd";
+}
+.icon-table:before {
+  content: "\f0ce";
+}
+.icon-magic:before {
+  content: "\f0d0";
+}
+.icon-truck:before {
+  content: "\f0d1";
+}
+.icon-pinterest:before {
+  content: "\f0d2";
+}
+.icon-pinterest-sign:before {
+  content: "\f0d3";
+}
+.icon-google-plus-sign:before {
+  content: "\f0d4";
+}
+.icon-google-plus:before {
+  content: "\f0d5";
+}
+.icon-money:before {
+  content: "\f0d6";
+}
+.icon-caret-down:before {
+  content: "\f0d7";
+}
+.icon-caret-up:before {
+  content: "\f0d8";
+}
+.icon-caret-left:before {
+  content: "\f0d9";
+}
+.icon-caret-right:before {
+  content: "\f0da";
+}
+.icon-columns:before {
+  content: "\f0db";
+}
+.icon-sort:before {
+  content: "\f0dc";
+}
+.icon-sort-down:before {
+  content: "\f0dd";
+}
+.icon-sort-up:before {
+  content: "\f0de";
+}
+.icon-envelope:before {
+  content: "\f0e0";
+}
+.icon-linkedin:before {
+  content: "\f0e1";
+}
+.icon-rotate-left:before,
+.icon-undo:before {
+  content: "\f0e2";
+}
+.icon-legal:before {
+  content: "\f0e3";
+}
+.icon-dashboard:before {
+  content: "\f0e4";
+}
+.icon-comment-alt:before {
+  content: "\f0e5";
+}
+.icon-comments-alt:before {
+  content: "\f0e6";
+}
+.icon-bolt:before {
+  content: "\f0e7";
+}
+.icon-sitemap:before {
+  content: "\f0e8";
+}
+.icon-umbrella:before {
+  content: "\f0e9";
+}
+.icon-paste:before {
+  content: "\f0ea";
+}
+.icon-lightbulb:before {
+  content: "\f0eb";
+}
+.icon-exchange:before {
+  content: "\f0ec";
+}
+.icon-cloud-download:before {
+  content: "\f0ed";
+}
+.icon-cloud-upload:before {
+  content: "\f0ee";
+}
+.icon-user-md:before {
+  content: "\f0f0";
+}
+.icon-stethoscope:before {
+  content: "\f0f1";
+}
+.icon-suitcase:before {
+  content: "\f0f2";
+}
+.icon-bell-alt:before {
+  content: "\f0f3";
+}
+.icon-coffee:before {
+  content: "\f0f4";
+}
+.icon-food:before {
+  content: "\f0f5";
+}
+.icon-file-text-alt:before {
+  content: "\f0f6";
+}
+.icon-building:before {
+  content: "\f0f7";
+}
+.icon-hospital:before {
+  content: "\f0f8";
+}
+.icon-ambulance:before {
+  content: "\f0f9";
+}
+.icon-medkit:before {
+  content: "\f0fa";
+}
+.icon-fighter-jet:before {
+  content: "\f0fb";
+}
+.icon-beer:before {
+  content: "\f0fc";
+}
+.icon-h-sign:before {
+  content: "\f0fd";
+}
+.icon-plus-sign-alt:before {
+  content: "\f0fe";
+}
+.icon-double-angle-left:before {
+  content: "\f100";
+}
+.icon-double-angle-right:before {
+  content: "\f101";
+}
+.icon-double-angle-up:before {
+  content: "\f102";
+}
+.icon-double-angle-down:before {
+  content: "\f103";
+}
+.icon-angle-left:before {
+  content: "\f104";
+}
+.icon-angle-right:before {
+  content: "\f105";
+}
+.icon-angle-up:before {
+  content: "\f106";
+}
+.icon-angle-down:before {
+  content: "\f107";
+}
+.icon-desktop:before {
+  content: "\f108";
+}
+.icon-laptop:before {
+  content: "\f109";
+}
+.icon-tablet:before {
+  content: "\f10a";
+}
+.icon-mobile-phone:before {
+  content: "\f10b";
+}
+.icon-circle-blank:before {
+  content: "\f10c";
+}
+.icon-quote-left:before {
+  content: "\f10d";
+}
+.icon-quote-right:before {
+  content: "\f10e";
+}
+.icon-spinner:before {
+  content: "\f110";
+}
+.icon-circle:before {
+  content: "\f111";
+}
+.icon-mail-reply:before,
+.icon-reply:before {
+  content: "\f112";
+}
+.icon-github-alt:before {
+  content: "\f113";
+}
+.icon-folder-close-alt:before {
+  content: "\f114";
+}
+.icon-folder-open-alt:before {
+  content: "\f115";
+}
+.icon-expand-alt:before {
+  content: "\f116";
+}
+.icon-collapse-alt:before {
+  content: "\f117";
+}
+.icon-smile:before {
+  content: "\f118";
+}
+.icon-frown:before {
+  content: "\f119";
+}
+.icon-meh:before {
+  content: "\f11a";
+}
+.icon-gamepad:before {
+  content: "\f11b";
+}
+.icon-keyboard:before {
+  content: "\f11c";
+}
+.icon-flag-alt:before {
+  content: "\f11d";
+}
+.icon-flag-checkered:before {
+  content: "\f11e";
+}
+.icon-terminal:before {
+  content: "\f120";
+}
+.icon-code:before {
+  content: "\f121";
+}
+.icon-reply-all:before {
+  content: "\f122";
+}
+.icon-mail-reply-all:before {
+  content: "\f122";
+}
+.icon-star-half-full:before,
+.icon-star-half-empty:before {
+  content: "\f123";
+}
+.icon-location-arrow:before {
+  content: "\f124";
+}
+.icon-crop:before {
+  content: "\f125";
+}
+.icon-code-fork:before {
+  content: "\f126";
+}
+.icon-unlink:before {
+  content: "\f127";
+}
+.icon-question:before {
+  content: "\f128";
+}
+.icon-info:before {
+  content: "\f129";
+}
+.icon-exclamation:before {
+  content: "\f12a";
+}
+.icon-superscript:before {
+  content: "\f12b";
+}
+.icon-subscript:before {
+  content: "\f12c";
+}
+.icon-eraser:before {
+  content: "\f12d";
+}
+.icon-puzzle-piece:before {
+  content: "\f12e";
+}
+.icon-microphone:before {
+  content: "\f130";
+}
+.icon-microphone-off:before {
+  content: "\f131";
+}
+.icon-shield:before {
+  content: "\f132";
+}
+.icon-calendar-empty:before {
+  content: "\f133";
+}
+.icon-fire-extinguisher:before {
+  content: "\f134";
+}
+.icon-rocket:before {
+  content: "\f135";
+}
+.icon-maxcdn:before {
+  content: "\f136";
+}
+.icon-chevron-sign-left:before {
+  content: "\f137";
+}
+.icon-chevron-sign-right:before {
+  content: "\f138";
+}
+.icon-chevron-sign-up:before {
+  content: "\f139";
+}
+.icon-chevron-sign-down:before {
+  content: "\f13a";
+}
+.icon-html5:before {
+  content: "\f13b";
+}
+.icon-css3:before {
+  content: "\f13c";
+}
+.icon-anchor:before {
+  content: "\f13d";
+}
+.icon-unlock-alt:before {
+  content: "\f13e";
+}
+.icon-bullseye:before {
+  content: "\f140";
+}
+.icon-ellipsis-horizontal:before {
+  content: "\f141";
+}
+.icon-ellipsis-vertical:before {
+  content: "\f142";
+}
+.icon-rss-sign:before {
+  content: "\f143";
+}
+.icon-play-sign:before {
+  content: "\f144";
+}
+.icon-ticket:before {
+  content: "\f145";
+}
+.icon-minus-sign-alt:before {
+  content: "\f146";
+}
+.icon-check-minus:before {
+  content: "\f147";
+}
+.icon-level-up:before {
+  content: "\f148";
+}
+.icon-level-down:before {
+  content: "\f149";
+}
+.icon-check-sign:before {
+  content: "\f14a";
+}
+.icon-edit-sign:before {
+  content: "\f14b";
+}
+.icon-external-link-sign:before {
+  content: "\f14c";
+}
+.icon-share-sign:before {
+  content: "\f14d";
+}
+.icon-compass:before {
+  content: "\f14e";
+}
+.icon-collapse:before {
+  content: "\f150";
+}
+.icon-collapse-top:before {
+  content: "\f151";
+}
+.icon-expand:before {
+  content: "\f152";
+}
+.icon-euro:before,
+.icon-eur:before {
+  content: "\f153";
+}
+.icon-gbp:before {
+  content: "\f154";
+}
+.icon-dollar:before,
+.icon-usd:before {
+  content: "\f155";
+}
+.icon-rupee:before,
+.icon-inr:before {
+  content: "\f156";
+}
+.icon-yen:before,
+.icon-jpy:before {
+  content: "\f157";
+}
+.icon-renminbi:before,
+.icon-cny:before {
+  content: "\f158";
+}
+.icon-won:before,
+.icon-krw:before {
+  content: "\f159";
+}
+.icon-bitcoin:before,
+.icon-btc:before {
+  content: "\f15a";
+}
+.icon-file:before {
+  content: "\f15b";
+}
+.icon-file-text:before {
+  content: "\f15c";
+}
+.icon-sort-by-alphabet:before {
+  content: "\f15d";
+}
+.icon-sort-by-alphabet-alt:before {
+  content: "\f15e";
+}
+.icon-sort-by-attributes:before {
+  content: "\f160";
+}
+.icon-sort-by-attributes-alt:before {
+  content: "\f161";
+}
+.icon-sort-by-order:before {
+  content: "\f162";
+}
+.icon-sort-by-order-alt:before {
+  content: "\f163";
+}
+.icon-thumbs-up:before {
+  content: "\f164";
+}
+.icon-thumbs-down:before {
+  content: "\f165";
+}
+.icon-youtube-sign:before {
+  content: "\f166";
+}
+.icon-youtube:before {
+  content: "\f167";
+}
+.icon-xing:before {
+  content: "\f168";
+}
+.icon-xing-sign:before {
+  content: "\f169";
+}
+.icon-youtube-play:before {
+  content: "\f16a";
+}
+.icon-dropbox:before {
+  content: "\f16b";
+}
+.icon-stackexchange:before {
+  content: "\f16c";
+}
+.icon-instagram:before {
+  content: "\f16d";
+}
+.icon-flickr:before {
+  content: "\f16e";
+}
+.icon-adn:before {
+  content: "\f170";
+}
+.icon-bitbucket:before {
+  content: "\f171";
+}
+.icon-bitbucket-sign:before {
+  content: "\f172";
+}
+.icon-tumblr:before {
+  content: "\f173";
+}
+.icon-tumblr-sign:before {
+  content: "\f174";
+}
+.icon-long-arrow-down:before {
+  content: "\f175";
+}
+.icon-long-arrow-up:before {
+  content: "\f176";
+}
+.icon-long-arrow-left:before {
+  content: "\f177";
+}
+.icon-long-arrow-right:before {
+  content: "\f178";
+}
+.icon-apple:before {
+  content: "\f179";
+}
+.icon-windows:before {
+  content: "\f17a";
+}
+.icon-android:before {
+  content: "\f17b";
+}
+.icon-linux:before {
+  content: "\f17c";
+}
+.icon-dribbble:before {
+  content: "\f17d";
+}
+.icon-skype:before {
+  content: "\f17e";
+}
+.icon-foursquare:before {
+  content: "\f180";
+}
+.icon-trello:before {
+  content: "\f181";
+}
+.icon-female:before {
+  content: "\f182";
+}
+.icon-male:before {
+  content: "\f183";
+}
+.icon-gittip:before {
+  content: "\f184";
+}
+.icon-sun:before {
+  content: "\f185";
+}
+.icon-moon:before {
+  content: "\f186";
+}
+.icon-archive:before {
+  content: "\f187";
+}
+.icon-bug:before {
+  content: "\f188";
+}
+.icon-vk:before {
+  content: "\f189";
+}
+.icon-weibo:before {
+  content: "\f18a";
+}
+.icon-renren:before {
+  content: "\f18b";
 }
-li[class^="icon-"].icon-large:before, li[class*=" icon-"].icon-large:before {
-  text-indent: -1.3333333333333333em;
-}
-/*  Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
-    readers do not read off random characters that represent icons */
-.icon-glass:before                { content: "\f000"; }
-.icon-music:before                { content: "\f001"; }
-.icon-search:before               { content: "\f002"; }
-.icon-envelope:before             { content: "\f003"; }
-.icon-heart:before                { content: "\f004"; }
-.icon-star:before                 { content: "\f005"; }
-.icon-star-empty:before           { content: "\f006"; }
-.icon-user:before                 { content: "\f007"; }
-.icon-film:before                 { content: "\f008"; }
-.icon-th-large:before             { content: "\f009"; }
-.icon-th:before                   { content: "\f00a"; }
-.icon-th-list:before              { content: "\f00b"; }
-.icon-ok:before                   { content: "\f00c"; }
-.icon-remove:before               { content: "\f00d"; }
-.icon-zoom-in:before              { content: "\f00e"; }
-
-.icon-zoom-out:before             { content: "\f010"; }
-.icon-off:before                  { content: "\f011"; }
-.icon-signal:before               { content: "\f012"; }
-.icon-cog:before                  { content: "\f013"; }
-.icon-trash:before                { content: "\f014"; }
-.icon-home:before                 { content: "\f015"; }
-.icon-file:before                 { content: "\f016"; }
-.icon-time:before                 { content: "\f017"; }
-.icon-road:before                 { content: "\f018"; }
-.icon-download-alt:before         { content: "\f019"; }
-.icon-download:before             { content: "\f01a"; }
-.icon-upload:before               { content: "\f01b"; }
-.icon-inbox:before                { content: "\f01c"; }
-.icon-play-circle:before          { content: "\f01d"; }
-.icon-repeat:before               { content: "\f01e"; }
-
-/* \f020 doesn't work in Safari. all shifted one down */
-.icon-refresh:before              { content: "\f021"; }
-.icon-list-alt:before             { content: "\f022"; }
-.icon-lock:before                 { content: "\f023"; }
-.icon-flag:before                 { content: "\f024"; }
-.icon-headphones:before           { content: "\f025"; }
-.icon-volume-off:before           { content: "\f026"; }
-.icon-volume-down:before          { content: "\f027"; }
-.icon-volume-up:before            { content: "\f028"; }
-.icon-qrcode:before               { content: "\f029"; }
-.icon-barcode:before              { content: "\f02a"; }
-.icon-tag:before                  { content: "\f02b"; }
-.icon-tags:before                 { content: "\f02c"; }
-.icon-book:before                 { content: "\f02d"; }
-.icon-bookmark:before             { content: "\f02e"; }
-.icon-print:before                { content: "\f02f"; }
-
-.icon-camera:before               { content: "\f030"; }
-.icon-font:before                 { content: "\f031"; }
-.icon-bold:before                 { content: "\f032"; }
-.icon-italic:before               { content: "\f033"; }
-.icon-text-height:before          { content: "\f034"; }
-.icon-text-width:before           { content: "\f035"; }
-.icon-align-left:before           { content: "\f036"; }
-.icon-align-center:before         { content: "\f037"; }
-.icon-align-right:before          { content: "\f038"; }
-.icon-align-justify:before        { content: "\f039"; }
-.icon-list:before                 { content: "\f03a"; }
-.icon-indent-left:before          { content: "\f03b"; }
-.icon-indent-right:before         { content: "\f03c"; }
-.icon-facetime-video:before       { content: "\f03d"; }
-.icon-picture:before              { content: "\f03e"; }
-
-.icon-pencil:before               { content: "\f040"; }
-.icon-map-marker:before           { content: "\f041"; }
-.icon-adjust:before               { content: "\f042"; }
-.icon-tint:before                 { content: "\f043"; }
-.icon-edit:before                 { content: "\f044"; }
-.icon-share:before                { content: "\f045"; }
-.icon-check:before                { content: "\f046"; }
-.icon-move:before                 { content: "\f047"; }
-.icon-step-backward:before        { content: "\f048"; }
-.icon-fast-backward:before        { content: "\f049"; }
-.icon-backward:before             { content: "\f04a"; }
-.icon-play:before                 { content: "\f04b"; }
-.icon-pause:before                { content: "\f04c"; }
-.icon-stop:before                 { content: "\f04d"; }
-.icon-forward:before              { content: "\f04e"; }
-
-.icon-fast-forward:before         { content: "\f050"; }
-.icon-step-forward:before         { content: "\f051"; }
-.icon-eject:before                { content: "\f052"; }
-.icon-chevron-left:before         { content: "\f053"; }
-.icon-chevron-right:before        { content: "\f054"; }
-.icon-plus-sign:before            { content: "\f055"; }
-.icon-minus-sign:before           { content: "\f056"; }
-.icon-remove-sign:before          { content: "\f057"; }
-.icon-ok-sign:before              { content: "\f058"; }
-.icon-question-sign:before        { content: "\f059"; }
-.icon-info-sign:before            { content: "\f05a"; }
-.icon-screenshot:before           { content: "\f05b"; }
-.icon-remove-circle:before        { content: "\f05c"; }
-.icon-ok-circle:before            { content: "\f05d"; }
-.icon-ban-circle:before           { content: "\f05e"; }
-
-.icon-arrow-left:before           { content: "\f060"; }
-.icon-arrow-right:before          { content: "\f061"; }
-.icon-arrow-up:before             { content: "\f062"; }
-.icon-arrow-down:before           { content: "\f063"; }
-.icon-share-alt:before            { content: "\f064"; }
-.icon-resize-full:before          { content: "\f065"; }
-.icon-resize-small:before         { content: "\f066"; }
-.icon-plus:before                 { content: "\f067"; }
-.icon-minus:before                { content: "\f068"; }
-.icon-asterisk:before             { content: "\f069"; }
-.icon-exclamation-sign:before     { content: "\f06a"; }
-.icon-gift:before                 { content: "\f06b"; }
-.icon-leaf:before                 { content: "\f06c"; }
-.icon-fire:before                 { content: "\f06d"; }
-.icon-eye-open:before             { content: "\f06e"; }
-
-.icon-eye-close:before            { content: "\f070"; }
-.icon-warning-sign:before         { content: "\f071"; }
-.icon-plane:before                { content: "\f072"; }
-.icon-calendar:before             { content: "\f073"; }
-.icon-random:before               { content: "\f074"; }
-.icon-comment:before              { content: "\f075"; }
-.icon-magnet:before               { content: "\f076"; }
-.icon-chevron-up:before           { content: "\f077"; }
-.icon-chevron-down:before         { content: "\f078"; }
-.icon-retweet:before              { content: "\f079"; }
-.icon-shopping-cart:before        { content: "\f07a"; }
-.icon-folder-close:before         { content: "\f07b"; }
-.icon-folder-open:before          { content: "\f07c"; }
-.icon-resize-vertical:before      { content: "\f07d"; }
-.icon-resize-horizontal:before    { content: "\f07e"; }
-
-.icon-bar-chart:before            { content: "\f080"; }
-.icon-twitter-sign:before         { content: "\f081"; }
-.icon-facebook-sign:before        { content: "\f082"; }
-.icon-camera-retro:before         { content: "\f083"; }
-.icon-key:before                  { content: "\f084"; }
-.icon-cogs:before                 { content: "\f085"; }
-.icon-comments:before             { content: "\f086"; }
-.icon-thumbs-up:before            { content: "\f087"; }
-.icon-thumbs-down:before          { content: "\f088"; }
-.icon-star-half:before            { content: "\f089"; }
-.icon-heart-empty:before          { content: "\f08a"; }
-.icon-signout:before              { content: "\f08b"; }
-.icon-linkedin-sign:before        { content: "\f08c"; }
-.icon-pushpin:before              { content: "\f08d"; }
-.icon-external-link:before        { content: "\f08e"; }
-
-.icon-signin:before               { content: "\f090"; }
-.icon-trophy:before               { content: "\f091"; }
-.icon-github-sign:before          { content: "\f092"; }
-.icon-upload-alt:before           { content: "\f093"; }
-.icon-lemon:before                { content: "\f094"; }
-.icon-phone:before                { content: "\f095"; }
-.icon-check-empty:before          { content: "\f096"; }
-.icon-bookmark-empty:before       { content: "\f097"; }
-.icon-phone-sign:before           { content: "\f098"; }
-.icon-twitter:before              { content: "\f099"; }
-.icon-facebook:before             { content: "\f09a"; }
-.icon-github:before               { content: "\f09b"; }
-.icon-unlock:before               { content: "\f09c"; }
-.icon-credit-card:before          { content: "\f09d"; }
-.icon-rss:before                  { content: "\f09e"; }
-
-.icon-hdd:before                  { content: "\f0a0"; }
-.icon-bullhorn:before             { content: "\f0a1"; }
-.icon-bell:before                 { content: "\f0a2"; }
-.icon-certificate:before          { content: "\f0a3"; }
-.icon-hand-right:before           { content: "\f0a4"; }
-.icon-hand-left:before            { content: "\f0a5"; }
-.icon-hand-up:before              { content: "\f0a6"; }
-.icon-hand-down:before            { content: "\f0a7"; }
-.icon-circle-arrow-left:before    { content: "\f0a8"; }
-.icon-circle-arrow-right:before   { content: "\f0a9"; }
-.icon-circle-arrow-up:before      { content: "\f0aa"; }
-.icon-circle-arrow-down:before    { content: "\f0ab"; }
-.icon-globe:before                { content: "\f0ac"; }
-.icon-wrench:before               { content: "\f0ad"; }
-.icon-tasks:before                { content: "\f0ae"; }
-
-.icon-filter:before               { content: "\f0b0"; }
-.icon-briefcase:before            { content: "\f0b1"; }
-.icon-fullscreen:before           { content: "\f0b2"; }
-
-.icon-group:before                { content: "\f0c0"; }
-.icon-link:before                 { content: "\f0c1"; }
-.icon-cloud:before                { content: "\f0c2"; }
-.icon-beaker:before               { content: "\f0c3"; }
-.icon-cut:before                  { content: "\f0c4"; }
-.icon-copy:before                 { content: "\f0c5"; }
-.icon-paper-clip:before           { content: "\f0c6"; }
-.icon-save:before                 { content: "\f0c7"; }
-.icon-sign-blank:before           { content: "\f0c8"; }
-.icon-reorder:before              { content: "\f0c9"; }
-.icon-list-ul:before              { content: "\f0ca"; }
-.icon-list-ol:before              { content: "\f0cb"; }
-.icon-strikethrough:before        { content: "\f0cc"; }
-.icon-underline:before            { content: "\f0cd"; }
-.icon-table:before                { content: "\f0ce"; }
-
-.icon-magic:before                { content: "\f0d0"; }
-.icon-truck:before                { content: "\f0d1"; }
-.icon-pinterest:before            { content: "\f0d2"; }
-.icon-pinterest-sign:before       { content: "\f0d3"; }
-.icon-google-plus-sign:before     { content: "\f0d4"; }
-.icon-google-plus:before          { content: "\f0d5"; }
-.icon-money:before                { content: "\f0d6"; }
-.icon-caret-down:before           { content: "\f0d7"; }
-.icon-caret-up:before             { content: "\f0d8"; }
-.icon-caret-left:before           { content: "\f0d9"; }
-.icon-caret-right:before          { content: "\f0da"; }
-.icon-columns:before              { content: "\f0db"; }
-.icon-sort:before                 { content: "\f0dc"; }
-.icon-sort-down:before            { content: "\f0dd"; }
-.icon-sort-up:before              { content: "\f0de"; }
-
-.icon-envelope-alt:before         { content: "\f0e0"; }
-.icon-linkedin:before             { content: "\f0e1"; }
-.icon-undo:before                 { content: "\f0e2"; }
-.icon-legal:before                { content: "\f0e3"; }
-.icon-dashboard:before            { content: "\f0e4"; }
-.icon-comment-alt:before          { content: "\f0e5"; }
-.icon-comments-alt:before         { content: "\f0e6"; }
-.icon-bolt:before                 { content: "\f0e7"; }
-.icon-sitemap:before              { content: "\f0e8"; }
-.icon-umbrella:before             { content: "\f0e9"; }
-.icon-paste:before                { content: "\f0ea"; }
-
-.icon-user-md:before              { content: "\f200"; }
diff --git a/view/theme/vier/css/font-awesome.min.css b/view/theme/vier/css/font-awesome.min.css
new file mode 100644 (file)
index 0000000..866437f
--- /dev/null
@@ -0,0 +1,403 @@
+@font-face{font-family:'FontAwesome';src:url('../font/fontawesome-webfont.eot?v=3.2.1');src:url('../font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'),url('../font/fontawesome-webfont.woff?v=3.2.1') format('woff'),url('../font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'),url('../font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');font-weight:normal;font-style:normal;}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;}
+[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none;}
+.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em;}
+a [class^="icon-"],a [class*=" icon-"]{display:inline;}
+[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.1428571428571428em;text-align:right;padding-right:0.2857142857142857em;}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.4285714285714286em;}
+.icons-ul{margin-left:2.142857142857143em;list-style-type:none;}.icons-ul>li{position:relative;}
+.icons-ul .icon-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;text-align:center;line-height:inherit;}
+[class^="icon-"].hide,[class*=" icon-"].hide{display:none;}
+.icon-muted{color:#eeeeee;}
+.icon-light{color:#ffffff;}
+.icon-dark{color:#333333;}
+.icon-border{border:solid 1px #eeeeee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
+.icon-2x{font-size:2em;}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
+.icon-3x{font-size:3em;}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
+.icon-4x{font-size:4em;}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
+.icon-5x{font-size:5em;}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;}
+.pull-right{float:right;}
+.pull-left{float:left;}
+[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em;}
+[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em;}
+[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0% 0%;background-repeat:repeat;margin-top:0;}
+.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none;}
+.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em;}
+.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block;}
+.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em;}
+.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em;}
+.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em;}
+.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em;}
+.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0;}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em;}
+.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em;}
+.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em;}
+.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{line-height:inherit;}
+.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%;}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em;}
+.icon-stack .icon-stack-base{font-size:2em;*line-height:1em;}
+.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;}
+a .icon-stack,a .icon-spin{display:inline-block;text-decoration:none;}
+@-moz-keyframes spin{0%{-moz-transform:rotate(0deg);} 100%{-moz-transform:rotate(359deg);}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);} 100%{-webkit-transform:rotate(359deg);}}@-o-keyframes spin{0%{-o-transform:rotate(0deg);} 100%{-o-transform:rotate(359deg);}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg);} 100%{-ms-transform:rotate(359deg);}}@keyframes spin{0%{transform:rotate(0deg);} 100%{transform:rotate(359deg);}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);}
+.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);}
+.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);}
+.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1);}
+.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1);}
+a .icon-rotate-90:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a .icon-flip-horizontal:before,a .icon-flip-vertical:before{display:inline-block;}
+.icon-glass:before{content:"\f000";}
+.icon-music:before{content:"\f001";}
+.icon-search:before{content:"\f002";}
+.icon-envelope-alt:before{content:"\f003";}
+.icon-heart:before{content:"\f004";}
+.icon-star:before{content:"\f005";}
+.icon-star-empty:before{content:"\f006";}
+.icon-user:before{content:"\f007";}
+.icon-film:before{content:"\f008";}
+.icon-th-large:before{content:"\f009";}
+.icon-th:before{content:"\f00a";}
+.icon-th-list:before{content:"\f00b";}
+.icon-ok:before{content:"\f00c";}
+.icon-remove:before{content:"\f00d";}
+.icon-zoom-in:before{content:"\f00e";}
+.icon-zoom-out:before{content:"\f010";}
+.icon-power-off:before,.icon-off:before{content:"\f011";}
+.icon-signal:before{content:"\f012";}
+.icon-gear:before,.icon-cog:before{content:"\f013";}
+.icon-trash:before{content:"\f014";}
+.icon-home:before{content:"\f015";}
+.icon-file-alt:before{content:"\f016";}
+.icon-time:before{content:"\f017";}
+.icon-road:before{content:"\f018";}
+.icon-download-alt:before{content:"\f019";}
+.icon-download:before{content:"\f01a";}
+.icon-upload:before{content:"\f01b";}
+.icon-inbox:before{content:"\f01c";}
+.icon-play-circle:before{content:"\f01d";}
+.icon-rotate-right:before,.icon-repeat:before{content:"\f01e";}
+.icon-refresh:before{content:"\f021";}
+.icon-list-alt:before{content:"\f022";}
+.icon-lock:before{content:"\f023";}
+.icon-flag:before{content:"\f024";}
+.icon-headphones:before{content:"\f025";}
+.icon-volume-off:before{content:"\f026";}
+.icon-volume-down:before{content:"\f027";}
+.icon-volume-up:before{content:"\f028";}
+.icon-qrcode:before{content:"\f029";}
+.icon-barcode:before{content:"\f02a";}
+.icon-tag:before{content:"\f02b";}
+.icon-tags:before{content:"\f02c";}
+.icon-book:before{content:"\f02d";}
+.icon-bookmark:before{content:"\f02e";}
+.icon-print:before{content:"\f02f";}
+.icon-camera:before{content:"\f030";}
+.icon-font:before{content:"\f031";}
+.icon-bold:before{content:"\f032";}
+.icon-italic:before{content:"\f033";}
+.icon-text-height:before{content:"\f034";}
+.icon-text-width:before{content:"\f035";}
+.icon-align-left:before{content:"\f036";}
+.icon-align-center:before{content:"\f037";}
+.icon-align-right:before{content:"\f038";}
+.icon-align-justify:before{content:"\f039";}
+.icon-list:before{content:"\f03a";}
+.icon-indent-left:before{content:"\f03b";}
+.icon-indent-right:before{content:"\f03c";}
+.icon-facetime-video:before{content:"\f03d";}
+.icon-picture:before{content:"\f03e";}
+.icon-pencil:before{content:"\f040";}
+.icon-map-marker:before{content:"\f041";}
+.icon-adjust:before{content:"\f042";}
+.icon-tint:before{content:"\f043";}
+.icon-edit:before{content:"\f044";}
+.icon-share:before{content:"\f045";}
+.icon-check:before{content:"\f046";}
+.icon-move:before{content:"\f047";}
+.icon-step-backward:before{content:"\f048";}
+.icon-fast-backward:before{content:"\f049";}
+.icon-backward:before{content:"\f04a";}
+.icon-play:before{content:"\f04b";}
+.icon-pause:before{content:"\f04c";}
+.icon-stop:before{content:"\f04d";}
+.icon-forward:before{content:"\f04e";}
+.icon-fast-forward:before{content:"\f050";}
+.icon-step-forward:before{content:"\f051";}
+.icon-eject:before{content:"\f052";}
+.icon-chevron-left:before{content:"\f053";}
+.icon-chevron-right:before{content:"\f054";}
+.icon-plus-sign:before{content:"\f055";}
+.icon-minus-sign:before{content:"\f056";}
+.icon-remove-sign:before{content:"\f057";}
+.icon-ok-sign:before{content:"\f058";}
+.icon-question-sign:before{content:"\f059";}
+.icon-info-sign:before{content:"\f05a";}
+.icon-screenshot:before{content:"\f05b";}
+.icon-remove-circle:before{content:"\f05c";}
+.icon-ok-circle:before{content:"\f05d";}
+.icon-ban-circle:before{content:"\f05e";}
+.icon-arrow-left:before{content:"\f060";}
+.icon-arrow-right:before{content:"\f061";}
+.icon-arrow-up:before{content:"\f062";}
+.icon-arrow-down:before{content:"\f063";}
+.icon-mail-forward:before,.icon-share-alt:before{content:"\f064";}
+.icon-resize-full:before{content:"\f065";}
+.icon-resize-small:before{content:"\f066";}
+.icon-plus:before{content:"\f067";}
+.icon-minus:before{content:"\f068";}
+.icon-asterisk:before{content:"\f069";}
+.icon-exclamation-sign:before{content:"\f06a";}
+.icon-gift:before{content:"\f06b";}
+.icon-leaf:before{content:"\f06c";}
+.icon-fire:before{content:"\f06d";}
+.icon-eye-open:before{content:"\f06e";}
+.icon-eye-close:before{content:"\f070";}
+.icon-warning-sign:before{content:"\f071";}
+.icon-plane:before{content:"\f072";}
+.icon-calendar:before{content:"\f073";}
+.icon-random:before{content:"\f074";}
+.icon-comment:before{content:"\f075";}
+.icon-magnet:before{content:"\f076";}
+.icon-chevron-up:before{content:"\f077";}
+.icon-chevron-down:before{content:"\f078";}
+.icon-retweet:before{content:"\f079";}
+.icon-shopping-cart:before{content:"\f07a";}
+.icon-folder-close:before{content:"\f07b";}
+.icon-folder-open:before{content:"\f07c";}
+.icon-resize-vertical:before{content:"\f07d";}
+.icon-resize-horizontal:before{content:"\f07e";}
+.icon-bar-chart:before{content:"\f080";}
+.icon-twitter-sign:before{content:"\f081";}
+.icon-facebook-sign:before{content:"\f082";}
+.icon-camera-retro:before{content:"\f083";}
+.icon-key:before{content:"\f084";}
+.icon-gears:before,.icon-cogs:before{content:"\f085";}
+.icon-comments:before{content:"\f086";}
+.icon-thumbs-up-alt:before{content:"\f087";}
+.icon-thumbs-down-alt:before{content:"\f088";}
+.icon-star-half:before{content:"\f089";}
+.icon-heart-empty:before{content:"\f08a";}
+.icon-signout:before{content:"\f08b";}
+.icon-linkedin-sign:before{content:"\f08c";}
+.icon-pushpin:before{content:"\f08d";}
+.icon-external-link:before{content:"\f08e";}
+.icon-signin:before{content:"\f090";}
+.icon-trophy:before{content:"\f091";}
+.icon-github-sign:before{content:"\f092";}
+.icon-upload-alt:before{content:"\f093";}
+.icon-lemon:before{content:"\f094";}
+.icon-phone:before{content:"\f095";}
+.icon-unchecked:before,.icon-check-empty:before{content:"\f096";}
+.icon-bookmark-empty:before{content:"\f097";}
+.icon-phone-sign:before{content:"\f098";}
+.icon-twitter:before{content:"\f099";}
+.icon-facebook:before{content:"\f09a";}
+.icon-github:before{content:"\f09b";}
+.icon-unlock:before{content:"\f09c";}
+.icon-credit-card:before{content:"\f09d";}
+.icon-rss:before{content:"\f09e";}
+.icon-hdd:before{content:"\f0a0";}
+.icon-bullhorn:before{content:"\f0a1";}
+.icon-bell:before{content:"\f0a2";}
+.icon-certificate:before{content:"\f0a3";}
+.icon-hand-right:before{content:"\f0a4";}
+.icon-hand-left:before{content:"\f0a5";}
+.icon-hand-up:before{content:"\f0a6";}
+.icon-hand-down:before{content:"\f0a7";}
+.icon-circle-arrow-left:before{content:"\f0a8";}
+.icon-circle-arrow-right:before{content:"\f0a9";}
+.icon-circle-arrow-up:before{content:"\f0aa";}
+.icon-circle-arrow-down:before{content:"\f0ab";}
+.icon-globe:before{content:"\f0ac";}
+.icon-wrench:before{content:"\f0ad";}
+.icon-tasks:before{content:"\f0ae";}
+.icon-filter:before{content:"\f0b0";}
+.icon-briefcase:before{content:"\f0b1";}
+.icon-fullscreen:before{content:"\f0b2";}
+.icon-group:before{content:"\f0c0";}
+.icon-link:before{content:"\f0c1";}
+.icon-cloud:before{content:"\f0c2";}
+.icon-beaker:before{content:"\f0c3";}
+.icon-cut:before{content:"\f0c4";}
+.icon-copy:before{content:"\f0c5";}
+.icon-paperclip:before,.icon-paper-clip:before{content:"\f0c6";}
+.icon-save:before{content:"\f0c7";}
+.icon-sign-blank:before{content:"\f0c8";}
+.icon-reorder:before{content:"\f0c9";}
+.icon-list-ul:before{content:"\f0ca";}
+.icon-list-ol:before{content:"\f0cb";}
+.icon-strikethrough:before{content:"\f0cc";}
+.icon-underline:before{content:"\f0cd";}
+.icon-table:before{content:"\f0ce";}
+.icon-magic:before{content:"\f0d0";}
+.icon-truck:before{content:"\f0d1";}
+.icon-pinterest:before{content:"\f0d2";}
+.icon-pinterest-sign:before{content:"\f0d3";}
+.icon-google-plus-sign:before{content:"\f0d4";}
+.icon-google-plus:before{content:"\f0d5";}
+.icon-money:before{content:"\f0d6";}
+.icon-caret-down:before{content:"\f0d7";}
+.icon-caret-up:before{content:"\f0d8";}
+.icon-caret-left:before{content:"\f0d9";}
+.icon-caret-right:before{content:"\f0da";}
+.icon-columns:before{content:"\f0db";}
+.icon-sort:before{content:"\f0dc";}
+.icon-sort-down:before{content:"\f0dd";}
+.icon-sort-up:before{content:"\f0de";}
+.icon-envelope:before{content:"\f0e0";}
+.icon-linkedin:before{content:"\f0e1";}
+.icon-rotate-left:before,.icon-undo:before{content:"\f0e2";}
+.icon-legal:before{content:"\f0e3";}
+.icon-dashboard:before{content:"\f0e4";}
+.icon-comment-alt:before{content:"\f0e5";}
+.icon-comments-alt:before{content:"\f0e6";}
+.icon-bolt:before{content:"\f0e7";}
+.icon-sitemap:before{content:"\f0e8";}
+.icon-umbrella:before{content:"\f0e9";}
+.icon-paste:before{content:"\f0ea";}
+.icon-lightbulb:before{content:"\f0eb";}
+.icon-exchange:before{content:"\f0ec";}
+.icon-cloud-download:before{content:"\f0ed";}
+.icon-cloud-upload:before{content:"\f0ee";}
+.icon-user-md:before{content:"\f0f0";}
+.icon-stethoscope:before{content:"\f0f1";}
+.icon-suitcase:before{content:"\f0f2";}
+.icon-bell-alt:before{content:"\f0f3";}
+.icon-coffee:before{content:"\f0f4";}
+.icon-food:before{content:"\f0f5";}
+.icon-file-text-alt:before{content:"\f0f6";}
+.icon-building:before{content:"\f0f7";}
+.icon-hospital:before{content:"\f0f8";}
+.icon-ambulance:before{content:"\f0f9";}
+.icon-medkit:before{content:"\f0fa";}
+.icon-fighter-jet:before{content:"\f0fb";}
+.icon-beer:before{content:"\f0fc";}
+.icon-h-sign:before{content:"\f0fd";}
+.icon-plus-sign-alt:before{content:"\f0fe";}
+.icon-double-angle-left:before{content:"\f100";}
+.icon-double-angle-right:before{content:"\f101";}
+.icon-double-angle-up:before{content:"\f102";}
+.icon-double-angle-down:before{content:"\f103";}
+.icon-angle-left:before{content:"\f104";}
+.icon-angle-right:before{content:"\f105";}
+.icon-angle-up:before{content:"\f106";}
+.icon-angle-down:before{content:"\f107";}
+.icon-desktop:before{content:"\f108";}
+.icon-laptop:before{content:"\f109";}
+.icon-tablet:before{content:"\f10a";}
+.icon-mobile-phone:before{content:"\f10b";}
+.icon-circle-blank:before{content:"\f10c";}
+.icon-quote-left:before{content:"\f10d";}
+.icon-quote-right:before{content:"\f10e";}
+.icon-spinner:before{content:"\f110";}
+.icon-circle:before{content:"\f111";}
+.icon-mail-reply:before,.icon-reply:before{content:"\f112";}
+.icon-github-alt:before{content:"\f113";}
+.icon-folder-close-alt:before{content:"\f114";}
+.icon-folder-open-alt:before{content:"\f115";}
+.icon-expand-alt:before{content:"\f116";}
+.icon-collapse-alt:before{content:"\f117";}
+.icon-smile:before{content:"\f118";}
+.icon-frown:before{content:"\f119";}
+.icon-meh:before{content:"\f11a";}
+.icon-gamepad:before{content:"\f11b";}
+.icon-keyboard:before{content:"\f11c";}
+.icon-flag-alt:before{content:"\f11d";}
+.icon-flag-checkered:before{content:"\f11e";}
+.icon-terminal:before{content:"\f120";}
+.icon-code:before{content:"\f121";}
+.icon-reply-all:before{content:"\f122";}
+.icon-mail-reply-all:before{content:"\f122";}
+.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123";}
+.icon-location-arrow:before{content:"\f124";}
+.icon-crop:before{content:"\f125";}
+.icon-code-fork:before{content:"\f126";}
+.icon-unlink:before{content:"\f127";}
+.icon-question:before{content:"\f128";}
+.icon-info:before{content:"\f129";}
+.icon-exclamation:before{content:"\f12a";}
+.icon-superscript:before{content:"\f12b";}
+.icon-subscript:before{content:"\f12c";}
+.icon-eraser:before{content:"\f12d";}
+.icon-puzzle-piece:before{content:"\f12e";}
+.icon-microphone:before{content:"\f130";}
+.icon-microphone-off:before{content:"\f131";}
+.icon-shield:before{content:"\f132";}
+.icon-calendar-empty:before{content:"\f133";}
+.icon-fire-extinguisher:before{content:"\f134";}
+.icon-rocket:before{content:"\f135";}
+.icon-maxcdn:before{content:"\f136";}
+.icon-chevron-sign-left:before{content:"\f137";}
+.icon-chevron-sign-right:before{content:"\f138";}
+.icon-chevron-sign-up:before{content:"\f139";}
+.icon-chevron-sign-down:before{content:"\f13a";}
+.icon-html5:before{content:"\f13b";}
+.icon-css3:before{content:"\f13c";}
+.icon-anchor:before{content:"\f13d";}
+.icon-unlock-alt:before{content:"\f13e";}
+.icon-bullseye:before{content:"\f140";}
+.icon-ellipsis-horizontal:before{content:"\f141";}
+.icon-ellipsis-vertical:before{content:"\f142";}
+.icon-rss-sign:before{content:"\f143";}
+.icon-play-sign:before{content:"\f144";}
+.icon-ticket:before{content:"\f145";}
+.icon-minus-sign-alt:before{content:"\f146";}
+.icon-check-minus:before{content:"\f147";}
+.icon-level-up:before{content:"\f148";}
+.icon-level-down:before{content:"\f149";}
+.icon-check-sign:before{content:"\f14a";}
+.icon-edit-sign:before{content:"\f14b";}
+.icon-external-link-sign:before{content:"\f14c";}
+.icon-share-sign:before{content:"\f14d";}
+.icon-compass:before{content:"\f14e";}
+.icon-collapse:before{content:"\f150";}
+.icon-collapse-top:before{content:"\f151";}
+.icon-expand:before{content:"\f152";}
+.icon-euro:before,.icon-eur:before{content:"\f153";}
+.icon-gbp:before{content:"\f154";}
+.icon-dollar:before,.icon-usd:before{content:"\f155";}
+.icon-rupee:before,.icon-inr:before{content:"\f156";}
+.icon-yen:before,.icon-jpy:before{content:"\f157";}
+.icon-renminbi:before,.icon-cny:before{content:"\f158";}
+.icon-won:before,.icon-krw:before{content:"\f159";}
+.icon-bitcoin:before,.icon-btc:before{content:"\f15a";}
+.icon-file:before{content:"\f15b";}
+.icon-file-text:before{content:"\f15c";}
+.icon-sort-by-alphabet:before{content:"\f15d";}
+.icon-sort-by-alphabet-alt:before{content:"\f15e";}
+.icon-sort-by-attributes:before{content:"\f160";}
+.icon-sort-by-attributes-alt:before{content:"\f161";}
+.icon-sort-by-order:before{content:"\f162";}
+.icon-sort-by-order-alt:before{content:"\f163";}
+.icon-thumbs-up:before{content:"\f164";}
+.icon-thumbs-down:before{content:"\f165";}
+.icon-youtube-sign:before{content:"\f166";}
+.icon-youtube:before{content:"\f167";}
+.icon-xing:before{content:"\f168";}
+.icon-xing-sign:before{content:"\f169";}
+.icon-youtube-play:before{content:"\f16a";}
+.icon-dropbox:before{content:"\f16b";}
+.icon-stackexchange:before{content:"\f16c";}
+.icon-instagram:before{content:"\f16d";}
+.icon-flickr:before{content:"\f16e";}
+.icon-adn:before{content:"\f170";}
+.icon-bitbucket:before{content:"\f171";}
+.icon-bitbucket-sign:before{content:"\f172";}
+.icon-tumblr:before{content:"\f173";}
+.icon-tumblr-sign:before{content:"\f174";}
+.icon-long-arrow-down:before{content:"\f175";}
+.icon-long-arrow-up:before{content:"\f176";}
+.icon-long-arrow-left:before{content:"\f177";}
+.icon-long-arrow-right:before{content:"\f178";}
+.icon-apple:before{content:"\f179";}
+.icon-windows:before{content:"\f17a";}
+.icon-android:before{content:"\f17b";}
+.icon-linux:before{content:"\f17c";}
+.icon-dribbble:before{content:"\f17d";}
+.icon-skype:before{content:"\f17e";}
+.icon-foursquare:before{content:"\f180";}
+.icon-trello:before{content:"\f181";}
+.icon-female:before{content:"\f182";}
+.icon-male:before{content:"\f183";}
+.icon-gittip:before{content:"\f184";}
+.icon-sun:before{content:"\f185";}
+.icon-moon:before{content:"\f186";}
+.icon-archive:before{content:"\f187";}
+.icon-bug:before{content:"\f188";}
+.icon-vk:before{content:"\f189";}
+.icon-weibo:before{content:"\f18a";}
+.icon-renren:before{content:"\f18b";}
index 289d75fe3b990819c7223479f26438f450fa1206..47706703cf87f5497448771447a53474f07a7543 100644 (file)
@@ -36,7 +36,7 @@
   font-size: 1.2em;
 }
 .icon.s22 {
-  font-size: 1.37em;
+  font-size: 1.2em;
 }
 .icon.s48 {
   font-size: 2em;
@@ -60,7 +60,8 @@ a .icon {
 /* makes the font 33% larger relative to the icon container */
 .icon-large:before {
   vertical-align: top;
-  font-size: 1.3333333333333333em;
+/*  font-size: 1.3333333333333333em; */
+  font-size: 1.2em;
 }
 .btn .icon {
   /* keeps button heights with and without icons the same */
diff --git a/view/theme/vier/font/FontAwesome.otf b/view/theme/vier/font/FontAwesome.otf
new file mode 100644 (file)
index 0000000..7012545
Binary files /dev/null and b/view/theme/vier/font/FontAwesome.otf differ
index 89070c1e63c2703b2334023922ecc1664f759b55..0662cb96bfb78cb2603df4bc9995314bd6806312 100755 (executable)
Binary files a/view/theme/vier/font/fontawesome-webfont.eot and b/view/theme/vier/font/fontawesome-webfont.eot differ
index 1245f92c2ed23560ac66e37c5e1382e70495e2b9..2edb4ec34cbc0b6559b808a3a1f31e0e587742ff 100755 (executable)
 <svg xmlns="http://www.w3.org/2000/svg">
 <metadata></metadata>
 <defs>
-<font id="FontAwesomeRegular" horiz-adv-x="1843" >
-<font-face units-per-em="2048" ascent="1536" descent="-512" />
-<missing-glyph horiz-adv-x="512" />
-<glyph horiz-adv-x="0" />
-<glyph horiz-adv-x="0" />
-<glyph unicode="&#xd;" horiz-adv-x="512" />
-<glyph unicode=" "  horiz-adv-x="512" />
-<glyph unicode="&#x09;" horiz-adv-x="512" />
-<glyph unicode="&#xa0;" horiz-adv-x="512" />
-<glyph unicode="o" horiz-adv-x="1591" />
-<glyph unicode="&#xa8;" horiz-adv-x="2048" />
-<glyph unicode="&#xa9;" horiz-adv-x="2048" />
-<glyph unicode="&#xae;" horiz-adv-x="2048" />
-<glyph unicode="&#xb4;" horiz-adv-x="2048" />
-<glyph unicode="&#xc6;" horiz-adv-x="2048" />
-<glyph unicode="&#xcd;" horiz-adv-x="2048" />
-<glyph unicode="&#x2000;" horiz-adv-x="784" />
-<glyph unicode="&#x2001;" horiz-adv-x="1569" />
-<glyph unicode="&#x2002;" horiz-adv-x="784" />
-<glyph unicode="&#x2003;" horiz-adv-x="1569" />
-<glyph unicode="&#x2004;" horiz-adv-x="523" />
-<glyph unicode="&#x2005;" horiz-adv-x="392" />
-<glyph unicode="&#x2006;" horiz-adv-x="261" />
-<glyph unicode="&#x2007;" horiz-adv-x="261" />
-<glyph unicode="&#x2008;" horiz-adv-x="196" />
-<glyph unicode="&#x2009;" horiz-adv-x="313" />
-<glyph unicode="&#x200a;" horiz-adv-x="87" />
-<glyph unicode="&#x202f;" horiz-adv-x="313" />
-<glyph unicode="&#x203a;" horiz-adv-x="2048" />
-<glyph unicode="&#x205f;" horiz-adv-x="392" />
-<glyph unicode="&#x2122;" horiz-adv-x="2048" />
-<glyph unicode="&#x221e;" horiz-adv-x="2048" />
-<glyph unicode="&#xe000;" horiz-adv-x="1024" d="M0 0z" />
-<glyph unicode="&#xf000;" horiz-adv-x="1536" d="M6 1489q20 47 70 47h1382q51 0 72 -47q20 -47 -17 -84l-610 -610v-641h248q33 0 55.5 -22.5t22.5 -53.5q0 -33 -22.5 -55.5t-55.5 -22.5h-768q-31 0 -53.5 22.5t-22.5 55.5q0 31 22.5 53.5t53.5 22.5h250v641l-610 610q-37 37 -17 84z" />
-<glyph unicode="&#xf001;" horiz-adv-x="1488" d="M0 213q0 57 27.5 103t72.5 77t98.5 47.5t106.5 16.5q25 0 50.5 -4t50.5 -11v779q0 27 16 48t43 29q23 6 99.5 29t178 52.5t215 62.5t211 60.5t164 46t74.5 18.5q35 0 58.5 -23.5t23.5 -58.5v-1028q0 -59 -27.5 -104.5t-73 -76t-99.5 -47t-105 -16.5t-105.5 16.5t-98.5 47 t-71.5 75.5t-27.5 105q0 57 27.5 103t71.5 77t98.5 47t105.5 16q27 0 52.5 -4t49.5 -10v537l-678 -195v-815q0 -59 -27.5 -104.5t-71.5 -76t-98.5 -47t-105.5 -16.5q-53 0 -106.5 16.5t-98.5 47t-72.5 76t-27.5 104.5z" />
-<glyph unicode="&#xf002;" horiz-adv-x="1597" d="M0 901q0 137 52 258t143.5 212t212 143.5t258.5 52.5q137 0 257.5 -52.5t212 -143.5t143.5 -212t52 -258q0 -98 -28.5 -191.5t-81.5 -174.5l358 -359q18 -18 18 -47q0 -16 -18 -43t-45 -53.5t-53.5 -45t-42.5 -18.5q-29 0 -47 19l-359 358q-82 -53 -175 -81.5t-191 -28.5 q-137 0 -258 52t-212.5 143t-143.5 212t-52 258zM266 901q0 -84 32 -156.5t86 -126t127 -85t155 -31.5t154.5 31.5t126.5 85t86 126t32 156.5q0 82 -32 154.5t-86 127t-126.5 86t-154.5 31.5t-155 -31.5t-127 -86t-86 -127t-32 -154.5zM414 901q0 51 19.5 97t54 81t80 54.5 t98.5 19.5q20 0 34.5 -14.5t14.5 -36.5q0 -20 -14.5 -34.5t-34.5 -14.5q-63 0 -107.5 -44t-44.5 -108q0 -20 -14.5 -34.5t-34.5 -14.5q-23 0 -37 14.5t-14 34.5z" />
-<glyph unicode="&#xf003;" d="M0 115v1306q0 47 34 81t81 34h1614q47 0 80.5 -34t33.5 -81v-1306q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM154 154h1536v852q-31 -31 -58 -50q-106 -80 -212.5 -159.5t-211.5 -163.5q-61 -49 -131.5 -94t-156.5 -45q-82 0 -153 45t-132 94 q-104 84 -211 164t-213 159q-27 18 -57 50v-852zM154 1317q0 -31 14 -65.5t35.5 -66.5t47 -59.5t50.5 -46.5q100 -76 199.5 -150.5t199.5 -152.5q20 -16 48 -37.5t58 -42t59.5 -35t54.5 -14.5h2h2q25 0 54.5 14.5t59 35t57 42t48.5 37.5q100 78 199.5 153t199.5 150 q25 18 50.5 46t47 60t36 66.5t14.5 65.5v65h-1536v-65z" />
-<glyph unicode="&#xf004;" horiz-adv-x="1802" d="M0 1073q0 113 34 205t97.5 155.5t153.5 98.5t202 35q59 0 117 -18.5t110 -48.5t99 -68.5t88 -77.5q39 39 87 77.5t100.5 68.5t109 48.5t115.5 18.5q113 0 204 -35t154.5 -98.5t97 -155.5t33.5 -205q0 -66 -18.5 -130t-51 -124.5t-74.5 -115t-87 -99.5l-615 -612 q-23 -23 -55 -23q-31 0 -57 23l-615 614q-45 45 -87 99.5t-73.5 114t-50 124t-18.5 129.5z" />
-<glyph unicode="&#xf005;" horiz-adv-x="1675" d="M1 959.5q9 27.5 54 33.5l506 74l227 459q20 41 49 41t50 -41l227 -459l506 -74q45 -6 54 -33.5t-23 -60.5l-367 -356l86 -504q8 -45 -15.5 -62.5t-64.5 5.5l-452 237l-453 -237q-41 -23 -64.5 -5.5t-15.5 62.5l86 504l-364 356q-35 33 -26 60.5z" />
-<glyph unicode="&#xf006;" horiz-adv-x="1675" d="M0 948q0 23 18.5 32t36.5 13l506 74l227 459q6 14 20 27.5t30 13.5q18 0 30.5 -13.5t18.5 -27.5l227 -459l506 -74q18 -4 36.5 -13t18.5 -32q0 -14 -7 -26.5t-17 -22.5l-367 -356l86 -504q0 -4 1 -9t1 -12q0 -20 -9 -34.5t-32 -14.5t-41 13l-452 237l-453 -237 q-18 -12 -39 -13q-23 0 -33 14.5t-10 34.5q0 6 1 11.5t1 9.5l86 504l-364 356q-10 10 -18.5 22.5t-8.5 26.5zM289 866l274 -268l-65 -377l340 178l340 -178l-66 377l274 268l-378 56l-170 344l-170 -344z" />
-<glyph unicode="&#xf007;" horiz-adv-x="1566" d="M0 57v387q0 37 18.5 82t48 86t65.5 74t71 43q18 6 66 13.5t102.5 14.5t104.5 13t77 10q-92 59 -144.5 153.5t-52.5 205.5q0 88 34 165.5t91.5 136t135 92.5t165.5 34t166 -34t136.5 -92.5t92 -136t33.5 -165.5q0 -109 -52 -204.5t-144 -154.5q27 -4 77 -10t104 -13 t101 -14.5t68 -13.5q35 -10 70.5 -42t65.5 -74t48.5 -87t18.5 -82v-387q-10 -4 -22.5 -14t-27 -19.5t-27.5 -16.5t-22 -7h-1370q-35 0 -53 21.5t-45 35.5z" />
-<glyph unicode="&#xf008;" d="M0 115v1306q0 47 34 81t81 34h1614q47 0 80.5 -34t33.5 -81v-1306q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM115 154q0 -16 11 -27.5t28 -11.5h153q16 0 27.5 11t11.5 28v153q0 16 -11 27.5t-28 11.5h-153q-16 0 -27.5 -11t-11.5 -28v-153zM115 512 q0 -16 11 -27.5t28 -11.5h153q16 0 27.5 11.5t11.5 27.5v154q0 16 -11 27.5t-28 11.5h-153q-16 0 -27.5 -11.5t-11.5 -27.5v-154zM115 870q0 -16 11 -27.5t28 -11.5h153q16 0 27.5 11.5t11.5 27.5v154q0 16 -11 27.5t-28 11.5h-153q-16 0 -27.5 -11.5t-11.5 -27.5v-154z M115 1229q0 -16 11 -27.5t28 -11.5h153q16 0 27.5 11t11.5 28v153q0 16 -11 27.5t-28 11.5h-153q-16 0 -27.5 -11t-11.5 -28v-153zM461 154q0 -16 11 -27.5t28 -11.5h843q16 0 27.5 11t11.5 28v512q0 16 -11 27.5t-28 11.5h-843q-16 0 -27.5 -11.5t-11.5 -27.5v-512z M461 870q0 -16 11 -27.5t28 -11.5h843q16 0 27.5 11.5t11.5 27.5v512q0 16 -11 27.5t-28 11.5h-843q-16 0 -27.5 -11t-11.5 -28v-512zM1497 154q0 -16 11.5 -27.5t27.5 -11.5h154q16 0 27.5 11t11.5 28v153q0 16 -11.5 27.5t-27.5 11.5h-154q-16 0 -27.5 -11t-11.5 -28v-153 zM1497 512q0 -16 11.5 -27.5t27.5 -11.5h154q16 0 27.5 11.5t11.5 27.5v154q0 16 -11.5 27.5t-27.5 11.5h-154q-16 0 -27.5 -11.5t-11.5 -27.5v-154zM1497 870q0 -16 11.5 -27.5t27.5 -11.5h154q16 0 27.5 11.5t11.5 27.5v154q0 16 -11.5 27.5t-27.5 11.5h-154 q-16 0 -27.5 -11.5t-11.5 -27.5v-154zM1497 1229q0 -16 11.5 -27.5t27.5 -11.5h154q16 0 27.5 11t11.5 28v153q0 16 -11.5 27.5t-27.5 11.5h-154q-16 0 -27.5 -11t-11.5 -28v-153z" />
-<glyph unicode="&#xf009;" d="M0 78v536q0 33 22.5 55.5t55.5 22.5h690q33 0 55.5 -22.5t22.5 -55.5v-536q0 -33 -22.5 -55.5t-55.5 -22.5h-690q-33 0 -55.5 22.5t-22.5 55.5zM0 922v538q0 31 22.5 53.5t55.5 22.5h690q33 0 55.5 -22.5t22.5 -53.5v-538q0 -33 -22.5 -54.5t-55.5 -21.5h-690 q-33 0 -55.5 21.5t-22.5 54.5zM999 78v536q0 33 21.5 55.5t54.5 22.5h692q31 0 53.5 -22.5t22.5 -55.5v-536q0 -33 -22.5 -55.5t-53.5 -22.5h-692q-33 0 -54.5 22.5t-21.5 55.5zM999 922v538q0 31 21.5 53.5t54.5 22.5h692q31 0 53.5 -22.5t22.5 -53.5v-538 q0 -33 -22.5 -54.5t-53.5 -21.5h-692q-33 0 -54.5 21.5t-21.5 54.5z" />
-<glyph unicode="&#xf00a;" d="M0 78v270q0 33 22.5 54.5t55.5 21.5h358q31 0 53.5 -21.5t22.5 -54.5v-270q0 -33 -22.5 -55.5t-53.5 -22.5h-358q-33 0 -55.5 22.5t-22.5 55.5zM0 655v226q0 33 22.5 54t55.5 21h358q31 0 53.5 -21.5t22.5 -53.5v-226q0 -33 -22.5 -55t-53.5 -22h-358q-33 0 -55.5 22.5 t-22.5 54.5zM0 1188v272q0 31 22.5 53.5t55.5 22.5h358q31 0 53.5 -22.5t22.5 -53.5v-272q0 -33 -22.5 -55.5t-53.5 -22.5h-358q-33 0 -55.5 22.5t-22.5 55.5zM666 78v270q0 33 22.5 54.5t54.5 21.5h359q31 0 53.5 -21.5t22.5 -54.5v-270q0 -33 -22.5 -55.5t-53.5 -22.5 h-359q-33 0 -55 22.5t-22 55.5zM666 655v226q0 33 22.5 54t54.5 21h359q31 0 53.5 -21.5t22.5 -53.5v-226q0 -33 -22.5 -55t-53.5 -22h-359q-33 0 -55 22.5t-22 54.5zM666 1188v272q0 31 22.5 53.5t54.5 22.5h359q31 0 53.5 -22.5t22.5 -53.5v-272q0 -33 -22.5 -55.5 t-53.5 -22.5h-359q-33 0 -55 22.5t-22 55.5zM1331 78v270q0 33 22.5 54.5t55.5 21.5h358q31 0 53.5 -21.5t22.5 -54.5v-270q0 -33 -22.5 -55.5t-53.5 -22.5h-358q-33 0 -55.5 22.5t-22.5 55.5zM1331 655v226q0 33 22.5 54t55.5 21h358q31 0 53.5 -21.5t22.5 -53.5v-226 q0 -33 -22.5 -55t-53.5 -22h-358q-33 0 -55.5 22.5t-22.5 54.5zM1331 1188v272q0 31 22.5 53.5t55.5 22.5h358q31 0 53.5 -22.5t22.5 -53.5v-272q0 -33 -22.5 -55.5t-53.5 -22.5h-358q-33 0 -55.5 22.5t-22.5 55.5z" />
-<glyph unicode="&#xf00b;" d="M0 78v270q0 33 22.5 54.5t55.5 21.5h297q31 0 53.5 -21.5t22.5 -54.5v-270q0 -33 -22.5 -55.5t-53.5 -22.5h-297q-33 0 -55.5 22.5t-22.5 55.5zM0 655v226q0 33 22.5 54t55.5 21h297q31 0 53.5 -21.5t22.5 -53.5v-226q0 -33 -22.5 -55t-53.5 -22h-297q-33 0 -55.5 22.5 t-22.5 54.5zM0 1188v272q0 31 22.5 53.5t55.5 22.5h297q31 0 53.5 -22.5t22.5 -53.5v-272q0 -33 -22.5 -55.5t-53.5 -22.5h-297q-33 0 -55.5 22.5t-22.5 55.5zM604 78v270q0 33 22.5 54.5t55.5 21.5h1085q31 0 53.5 -21.5t22.5 -54.5v-270q0 -33 -22.5 -55.5t-53.5 -22.5 h-1085q-33 0 -55.5 22.5t-22.5 55.5zM604 655v226q0 33 22.5 54t55.5 21h1085q31 0 53.5 -21.5t22.5 -53.5v-226q0 -33 -22.5 -55t-53.5 -22h-1085q-33 0 -55.5 22.5t-22.5 54.5zM604 1188v272q0 31 22.5 53.5t55.5 22.5h1085q31 0 53.5 -22.5t22.5 -53.5v-272 q0 -33 -22.5 -55.5t-53.5 -22.5h-1085q-33 0 -55.5 22.5t-22.5 55.5z" />
-<glyph unicode="&#xf00c;" d="M0 732.5q0 33.5 23 55.5l174 175q23 23 56.5 22.5t55.5 -22.5l365 -365q23 -23 56.5 -23t55.5 23l746 745q23 23 56.5 23t56.5 -23l174 -174q23 -23 22.5 -56.5t-22.5 -55.5l-910 -910q-23 -23 -62.5 -39t-72.5 -16h-88q-35 0 -75 16.5t-62 38.5l-526 529 q-23 23 -23 56.5z" />
-<glyph unicode="&#xf00d;" horiz-adv-x="1536" d="M0 192.5q0 38.5 29 67.5l508 510l-508 500q-29 29 -29 67.5t29 67.5l100 100q29 29 68 29t67 -29l504 -504l504 504q29 29 67.5 29t67.5 -29l100 -100q29 -29 29 -68t-29 -67l-508 -510l508 -500q29 -29 29 -66.5t-29 -66.5l-100 -102q-29 -29 -68 -29t-67 29l-504 505 l-506 -505q-29 -29 -66.5 -29t-66.5 29l-100 100q-29 29 -29 67.5z" />
-<glyph unicode="&#xf00e;" horiz-adv-x="1597" d="M0 901q0 137 52 258t143.5 212t212 143.5t258.5 52.5q137 0 259 -52.5t212 -143.5t142 -212t52 -258q0 -102 -28.5 -195.5t-81.5 -170.5l358 -359q18 -18 18 -46t-18 -48l-94 -94q-20 -18 -48 -18.5t-46 18.5l-359 358q-78 -53 -171 -81.5t-195 -28.5q-137 0 -258 52 t-212.5 142t-143.5 211t-52 260zM266 901q0 -84 32 -156.5t86 -126t127 -85t155 -31.5t155.5 31.5t126.5 85t85 126t32 156.5q0 82 -32 154.5t-85 127t-126.5 86t-155.5 31.5t-155 -31.5t-127 -86t-86 -127t-32 -154.5zM399 868v66q0 33 33 33h168v168q0 33 33 32h65 q14 0 24.5 -9t10.5 -23v-168h166q33 0 33 -33v-66q0 -14 -9.5 -24t-23.5 -10h-166v-166q0 -14 -10 -23.5t-25 -9.5h-65q-33 0 -33 33v166h-168q-14 0 -23.5 10t-9.5 24z" />
-<glyph unicode="&#xf010;" horiz-adv-x="1597" d="M0 901q0 137 52 258t143.5 212t212 143.5t258.5 52.5q137 0 259 -52.5t212 -143.5t142 -212t52 -258q0 -102 -28.5 -195.5t-81.5 -170.5l358 -359q18 -18 18 -46t-18 -48l-94 -94q-20 -18 -48 -18.5t-46 18.5l-359 358q-78 -53 -171 -81.5t-195 -28.5q-137 0 -258 52 t-212.5 142t-143.5 211t-52 260zM266 901q0 -84 32 -156.5t86 -126t127 -85t155 -31.5t155.5 31.5t126.5 85t85 126t32 156.5q0 82 -32 154.5t-85 127t-126.5 86t-155.5 31.5t-155 -31.5t-127 -86t-86 -127t-32 -154.5zM399 868v66q0 33 33 33h467q33 0 33 -33v-66 q0 -14 -9.5 -24t-23.5 -10h-467q-14 0 -23.5 10t-9.5 24z" />
-<glyph unicode="&#xf011;" horiz-adv-x="1488" d="M0 713q0 186 86 349t240 267q12 10 28 6q18 -4 25 -16l90 -131q10 -12 6 -27.5t-16 -25.5q-106 -72 -164.5 -182.5t-58.5 -239.5q0 -104 39.5 -197.5t108.5 -162t162 -108.5t197 -40t197.5 40t163.5 108.5t109.5 161.5t39.5 198q0 129 -59 239.5t-164 182.5 q-14 10 -16 24q-4 16 6 29l88 131q10 12 25.5 15t29.5 -5q154 -104 240 -267t86 -349q0 -154 -58.5 -289t-160 -236.5t-237.5 -160t-290 -58.5t-289 58.5t-236 160t-159.5 236.5t-58.5 289zM627 793v704q0 16 11 27.5t28 11.5h157q16 0 27.5 -11.5t11.5 -27.5v-704 q0 -16 -11 -27.5t-28 -11.5h-157q-16 0 -27.5 11t-11.5 28z" />
-<glyph unicode="&#xf012;" d="M0 39v260q0 16 11.5 27.5t27.5 11.5h192q16 0 26.5 -11.5t10.5 -27.5v-260q0 -16 -10 -27.5t-27 -11.5h-192q-39 0 -39 39zM393 39v434q0 16 11.5 27.5t27.5 11.5h193q16 0 26.5 -11.5t10.5 -27.5v-434q0 -16 -10.5 -27.5t-26.5 -11.5h-193q-16 0 -27.5 11.5t-11.5 27.5z M786 39v676q0 16 11.5 27.5t27.5 11.5h193q16 0 27.5 -11.5t11.5 -27.5v-676q0 -16 -11.5 -27.5t-27.5 -11.5h-193q-16 0 -27.5 11.5t-11.5 27.5zM1182 39v995q0 16 10 27.5t27 11.5h192q16 0 27.5 -11t11.5 -28v-995q0 -16 -11.5 -27.5t-27.5 -11.5h-192q-16 0 -26.5 11.5 t-10.5 27.5zM1575 39v1458q0 39 39 39h190q39 0 39 -39v-1458q0 -39 -39 -39h-190q-39 0 -39 39z" />
-<glyph unicode="&#xf013;" horiz-adv-x="1593" d="M0 651v236q0 12 30.5 21.5t68.5 15.5t74 9t48 5q18 61 49 117q-55 82 -120 157l-7 15q0 8 28 38.5t62.5 65.5t66.5 62.5t40 27.5q2 0 26.5 -18.5t54.5 -41t56.5 -43t32.5 -24.5q29 16 58.5 26.5t60.5 20.5q0 12 3 49t9 75t15.5 69t21.5 31h237q14 0 19 -15 q12 -49 17 -103t14 -106q31 -8 59.5 -19t56.5 -28q8 6 34 26.5t55.5 43t53 40t29.5 17.5t37 -27.5t65 -62.5t61.5 -65.5t27.5 -38.5q0 -4 -17.5 -28.5t-39 -53.5t-42 -55.5t-24.5 -32.5q33 -55 51 -123q49 -10 103.5 -13t101.5 -20q16 -4 16 -18v-236q0 -12 -29.5 -21.5 t-68.5 -15.5t-76 -9t-49 -5q-14 -57 -47 -117q55 -82 121 -157l6 -15q0 -8 -27.5 -38.5t-62.5 -65.5t-66.5 -62.5t-40.5 -27.5q-2 0 -26.5 18.5t-54 41t-56 43t-33.5 24.5q-29 -16 -58.5 -27.5t-59.5 -19.5q-2 -12 -5.5 -49.5t-9.5 -76t-14 -69.5t-21 -31h-237q-14 0 -19 17 q-14 49 -19 103t-11 103q-61 18 -117 50q-41 -31 -81 -60.5t-79 -62.5l-12 -4q-6 0 -37 27.5t-64.5 62.5t-61 65.5t-27.5 38.5q0 2 16 26.5t37.5 53.5t42 55.5t26.5 34.5q-33 55 -51 123q-51 10 -104.5 13t-100.5 20q-16 4 -16 18zM557 768q0 -49 18.5 -93t51 -77t77 -52.5 t93.5 -19.5t93 19.5t75.5 52.5t51 77t19.5 93t-19.5 92t-51 76t-75.5 51.5t-93 18.5t-93.5 -18.5t-77 -51.5t-51 -76t-18.5 -92z" />
-<glyph unicode="&#xf014;" horiz-adv-x="1304" d="M0 1175.5v34.5v36t2 36q25 14 71 23.5t98 15.5t102.5 9t78.5 5q-8 82 11.5 128t59.5 68.5t98.5 29t131.5 6.5q55 0 109.5 -3t97.5 -20.5t68.5 -54.5t25.5 -105v-24t-2 -25q29 -2 79 -5t102.5 -9t99.5 -15.5t72 -23.5v-72v-69q-37 -20 -123 -32.5t-185.5 -19t-193.5 -7.5 t-150 -1q-55 0 -150 1t-194.5 7.5t-184.5 18.5t-122 33q-2 16 -2 34.5zM133 154v837q123 -16 244 -21t244 -5h32q129 2 258 6t258 20v-837q0 -63 -44 -108.5t-107 -45.5h-731q-63 0 -108.5 45t-45.5 109zM303 199q0 -16 10.5 -26.5t26.5 -10.5h39q16 0 27.5 10t11.5 27v614 q0 16 -11.5 27.5t-27.5 11.5h-39q-16 0 -26.5 -11.5t-10.5 -27.5v-614zM504 1384q0 -10 1 -22t3 -23q144 2 291 0q0 12 2 23.5t0 21.5v15q-35 10 -74 11t-74 1q-37 0 -75.5 -1t-73.5 -11v-15zM596 199q0 -16 10 -26.5t27 -10.5h39q16 0 27.5 10t11.5 27v614q0 16 -11.5 27.5 t-27.5 11.5h-39q-16 0 -26.5 -11.5t-10.5 -27.5v-614zM887 199q0 -16 11 -26.5t28 -10.5h39q16 0 27.5 10t11.5 27v614q0 16 -11.5 27.5t-27.5 11.5h-39q-16 0 -27.5 -11.5t-11.5 -27.5v-614z" />
-<glyph unicode="&#xf015;" horiz-adv-x="1880" d="M0 809.5q2 15.5 14 26.5l867 710q27 20 59 21q33 0 59 -21l240 -196v102q0 16 11.5 27.5t27.5 11.5h223q16 0 26.5 -11.5t10.5 -27.5v-348l328 -268q12 -10 14 -25.5t-8 -28.5l-45 -53q-10 -14 -29 -14h-65q-16 0 -25 8l-743 608q-25 20 -50 0l-743 -608q-8 -8 -25 -8 h-65q-18 0 -29 14l-45 53q-10 12 -8 27.5zM266 76v622l674 553l674 -553v-622q0 -33 -21.5 -54.5t-54.5 -21.5h-422v498h-352v-498h-422q-33 0 -54.5 21.5t-21.5 54.5z" />
-<glyph unicode="&#xf016;" horiz-adv-x="1228" d="M0 78v1382q0 31 22.5 53.5t55.5 22.5h614q33 0 71 -16.5t60 -38.5l351 -351q23 -23 39 -60.5t16 -70.5v-921q0 -33 -22.5 -55.5t-53.5 -22.5h-1075q-33 0 -55.5 22.5t-22.5 55.5zM154 154h921v692h-459q-31 0 -53 22.5t-22 55.5v458h-387v-1228zM268 326v116h693v-116 h-693zM268 596v115h693v-115h-693zM694 999h381q0 4 -4 13.5t-6 11.5l-350 348q-2 4 -9.5 6t-11.5 4v-383z" />
-<glyph unicode="&#xf017;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -117 44 -218t119.5 -177t177 -120t218.5 -44t218 44t177 120t120 177 t44 218t-44 218t-120 177t-177.5 120t-217.5 44q-117 0 -218.5 -44t-177 -120t-119.5 -177t-44 -218zM635 608v465q0 33 23.5 56.5t56.5 23.5h80q35 0 57 -23.5t22 -56.5v-305h201q33 0 56.5 -23.5t23.5 -56.5v-80q0 -33 -23.5 -56.5t-56.5 -23.5h-360q-33 0 -56.5 23.5 t-23.5 56.5z" />
-<glyph unicode="&#xf018;" d="M2 35l594 1466q6 14 21.5 24.5t31.5 10.5h195l-8 -170h172l-9 170h195q16 0 31.5 -10t21.5 -25l594 -1466q6 -14 -1 -24.5t-23 -10.5h-740l-26 512h-258l-27 -512h-739q-16 0 -23.5 10t-1.5 25zM807 797h229l-20 413h-189z" />
-<glyph unicode="&#xf019;" d="M0 39v614q0 16 11.5 27.5t27.5 11.5h229q16 0 27.5 -11t11.5 -28v-346h1229v346q0 16 11.5 27.5t27.5 11.5h229q16 0 27.5 -11t11.5 -28v-614q0 -39 -39 -39h-1765q-39 0 -39 39zM345.5 944.5q6.5 16.5 39.5 16.5h307v499q0 31 21.5 53.5t54.5 22.5h307q33 0 55.5 -22.5 t22.5 -53.5v-499h307q31 0 37 -16.5t-16 -39.5l-504 -506q-23 -23 -55.5 -22.5t-55.5 22.5l-504 506q-23 23 -16.5 39.5z" />
-<glyph unicode="&#xf01a;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -117 44 -218t119.5 -177t177 -120t218.5 -44t218 44t177 120t120 177 t44 218t-44 218t-120 177t-177.5 120t-217.5 44q-117 0 -218.5 -44t-177 -120t-119.5 -177t-44 -218zM414 743q10 25 37 25h208v358q0 16 11.5 28.5t27.5 12.5h201q16 0 27.5 -12t11.5 -29v-358h209q27 0 37 -25t-10 -43l-347 -346q-14 -10 -28 -10t-29 10l-346 346 q-20 18 -10 43z" />
-<glyph unicode="&#xf01b;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -117 44 -218t119.5 -177t177 -120t218.5 -44t218 44t177 120t120 177 t44 218t-44 218t-120 177t-177 120t-218 44t-218.5 -44t-177 -120t-119.5 -177t-44 -218zM414 793q-10 25 10 43l346 346q14 10 29 10q14 0 28 -10l347 -346q20 -18 10 -43t-37 -25h-209v-360q0 -16 -11.5 -27.5t-27.5 -11.5h-201q-16 0 -27.5 11t-11.5 28v360h-208 q-27 0 -37 25z" />
-<glyph unicode="&#xf01c;" d="M0 78v577q0 33 9 76t22 72l284 663q12 29 44 49.5t63 20.5h999q31 0 63 -20.5t44 -49.5l284 -663q12 -29 21.5 -72t9.5 -76v-577q0 -33 -22.5 -55.5t-53.5 -22.5h-1689q-33 0 -55.5 22.5t-22.5 55.5zM238 694h387l114 -231h383l117 231h367q-2 4 -2 9.5t-2 9.5l-256 594 h-848l-256 -596q-2 -2 -2 -7.5t-2 -9.5z" />
-<glyph unicode="&#xf01d;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -117 44 -218t119.5 -177t177 -120t218.5 -44t218 44t177 120t120 177 t44 218t-44 218t-120 177t-177.5 120t-217.5 44q-117 0 -218.5 -44t-177 -120t-119.5 -177t-44 -218zM582 453v628q0 18 16 29q20 8 31 0l545 -315q16 -6 16 -27q0 -20 -16 -27l-545 -315q-8 -4 -15 -4q-8 0 -16 4q-16 10 -16 27z" />
-<glyph unicode="&#xf01e;" horiz-adv-x="1591" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5q141 0 271 -48.5t239 -140.5l161 162q35 35 58.5 24.5t23.5 -57.5v-463q0 -33 -22 -55q-10 -10 -23.5 -16t-29.5 -6h-463q-47 0 -58.5 23.5t23.5 58.5l160 159q-72 57 -159 88t-181 31q-117 0 -218.5 -44t-177 -120 t-119.5 -177t-44 -218t44 -218t119.5 -177t177 -120t218.5 -44q104 0 198.5 37t169 101.5t123.5 153.5t64 191q0 16 14 27q14 10 31 8l157 -20q16 -4 26.5 -16.5t8.5 -28.5q-20 -147 -89.5 -274.5t-176 -220.5t-242 -145.5t-284.5 -52.5q-166 0 -311.5 62.5t-254 171 t-171 254t-62.5 311.5z" />
-<glyph unicode="&#xf021;" horiz-adv-x="1916" d="M6 311l150 437q10 33 39 45t59 4l438 -150q45 -16 46 -40.5t-42 -47.5l-202 -100q53 -78 123.5 -134.5t160.5 -86.5q111 -37 221.5 -28t207 56t170 129t110.5 193q6 16 20.5 22t30.5 2l152 -51q16 -6 23 -20.5t1 -30.5q-53 -158 -159.5 -274.5t-243.5 -184t-296 -81 t-315 39.5q-135 47 -241.5 134t-179.5 208l-205 -100q-43 -23 -63.5 -5.5t-4.5 64.5zM203 1024q53 156 159.5 273.5t243.5 185t295 81t316 -39.5q133 -47 240.5 -134t180.5 -208l205 100q43 23 63.5 5.5t4.5 -62.5l-150 -439q-10 -33 -39 -45t-59 -4l-438 150 q-45 16 -46 40.5t40 47.5l202 100q-51 78 -122.5 134.5t-159.5 86.5q-111 37 -221.5 28t-207 -56t-170 -129t-110.5 -193q-6 -16 -20.5 -22t-30.5 -2l-152 51q-16 6 -23 20.5t-1 30.5z" />
-<glyph unicode="&#xf022;" d="M0 115v1306q0 47 34 81t81 34h1614q47 0 80.5 -34t33.5 -81v-1306q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM154 154h1536v1075h-1536v-1075zM307 346v76q0 39 39 39h154q16 0 27.5 -11.5t11.5 -27.5v-76q0 -16 -11.5 -27.5t-27.5 -11.5h-154q-39 0 -39 39 zM307 653v76q0 39 39 39h154q16 0 27.5 -11.5t11.5 -27.5v-76q0 -16 -11.5 -27.5t-27.5 -11.5h-154q-39 0 -39 39zM307 961v75q0 39 39 39h154q16 0 27.5 -11t11.5 -28v-75q0 -16 -11.5 -27.5t-27.5 -11.5h-154q-39 0 -39 39zM692 346v76q0 16 10.5 27.5t26.5 11.5h768 q39 0 39 -39v-76q0 -39 -39 -39h-768q-16 0 -26.5 11.5t-10.5 27.5zM692 653v76q0 16 10.5 27.5t26.5 11.5h768q39 0 39 -39v-76q0 -39 -39 -39h-768q-16 0 -26.5 11.5t-10.5 27.5zM692 961v75q0 16 10.5 27.5t26.5 11.5h768q39 0 39 -39v-75q0 -39 -39 -39h-768 q-16 0 -26.5 11t-10.5 28z" />
-<glyph unicode="&#xf023;" horiz-adv-x="1253" d="M0 117v626q0 39 21.5 69t56.5 42v164q0 113 43 213t117.5 175t175 118t213.5 43t213 -43t175 -118t118 -175.5t43 -212.5v-164q35 -12 56 -42t21 -69v-626q0 -47 -34.5 -82t-81.5 -35h-1020q-47 0 -82 35t-35 82zM313 862h627v156q0 66 -24.5 123t-67.5 99t-100.5 66.5 t-120.5 24.5q-66 0 -122 -24.5t-99.5 -66.5t-68 -99.5t-24.5 -122.5v-156zM494 164h266l-66 285q29 18 47.5 48.5t18.5 65.5q0 55 -39 95t-94 40t-94 -40t-39 -95q0 -35 18 -65.5t47 -46.5z" />
-<glyph unicode="&#xf024;" d="M0 1382q0 63 45 108.5t109 45.5q63 0 108 -45.5t45 -108.5q0 -41 -20.5 -74.5t-55.5 -56.5v-1212q0 -16 -11 -27.5t-27 -11.5h-78q-16 0 -26.5 11.5t-10.5 27.5v1212q-35 23 -56.5 56.5t-21.5 74.5zM307 416v745q0 33 19.5 66t48.5 49q104 55 188 86t144 45q70 16 124 18 q68 0 124.5 -11t107.5 -29.5t99 -43t100 -51.5q63 -29 145 -33q70 -4 164 15.5t207 87.5q29 16 47 6t18 -43v-748q0 -31 -18.5 -64.5t-46.5 -49.5q-113 -68 -207 -87.5t-164 -15.5q-82 4 -145 33q-51 27 -99.5 51.5t-99.5 43t-107.5 29.5t-124.5 11q-55 -2 -124 -18 q-59 -14 -143.5 -45t-188.5 -88q-29 -16 -48.5 -4t-19.5 45z" />
-<glyph unicode="&#xf025;" horiz-adv-x="1916" d="M0 729q0 172 85 324.5t221 266.5t307 180.5t345 66.5t345.5 -66.5t307.5 -180.5t221 -266.5t85 -326.5q0 -182 -78 -350l-27 -60l-174 -26q-27 -104 -110.5 -173t-196.5 -69v-41q0 -16 -12 -27.5t-29 -11.5h-80q-16 0 -27.5 11.5t-11.5 27.5v719q0 16 11.5 28.5 t27.5 12.5h80q16 0 28.5 -12.5t12.5 -28.5v-39q88 0 161 -44t114 -116l39 7q33 90 32 192q0 125 -65.5 233.5t-170 190.5t-232.5 129t-251 47t-250.5 -47t-232 -128t-170 -190.5t-65.5 -232.5q0 -104 32 -194l39 -7q41 72 114 116t161 44v39q0 16 12 28.5t29 12.5h80 q16 0 27 -12.5t11 -28.5v-719q0 -16 -11 -27.5t-27 -11.5h-80q-16 0 -28.5 11.5t-12.5 27.5v41q-55 0 -106.5 18.5t-91.5 50.5t-68.5 76t-40.5 97l-175 26l-26 60q-78 168 -78 352z" />
-<glyph unicode="&#xf026;" horiz-adv-x="905" d="M0 578v380q0 16 11.5 27.5t27.5 11.5h420l325 326q49 51 84 37t35 -86v-1012q0 -72 -34.5 -86t-84.5 37l-325 326h-420q-16 0 -27.5 11t-11.5 28z" />
-<glyph unicode="&#xf027;" horiz-adv-x="1277" d="M0 578v380q0 16 11.5 27.5t27.5 11.5h420l325 326q49 51 84 37t35 -86v-1012q0 -72 -34.5 -86t-84.5 37l-325 326h-420q-16 0 -27.5 11t-11.5 28zM1027 406q-9 32 7 61q84 145 84 301t-84 301q-16 29 -7 61t38 48t60.5 8t48.5 -37q104 -182 104 -381q0 -201 -104 -381 q-23 -41 -70 -41q-20 0 -39 12q-29 16 -38 48z" />
-<glyph unicode="&#xf028;" horiz-adv-x="1916" d="M0 578v380q0 16 11.5 27.5t27.5 11.5h420l325 326q49 51 84 37t35 -86v-1012q0 -72 -34.5 -86t-84.5 37l-325 326h-420q-16 0 -27.5 11t-11.5 28zM1027 406q-9 32 7 61q84 145 84 301t-84 301q-16 29 -7 61t38 48t60.5 8t48.5 -37q104 -182 104 -381q0 -201 -104 -381 q-23 -41 -70 -41q-20 0 -39 12q-29 16 -38 48zM1285 219q-7 33 11 62q141 225 142 487q0 262 -142 487q-18 29 -11 62t36 49q29 18 61 11t50 -36q82 -131 123.5 -275t41.5 -298q0 -309 -167 -573q-10 -18 -29 -27.5t-37 -9.5q-25 0 -43 12q-29 16 -36 49zM1540 33 q-6 33 12 59q100 154 152.5 325t52.5 351t-52 351t-153 323q-18 29 -12 61.5t35 50.5q29 16 61 10.5t50 -32.5q115 -174 173 -366.5t58 -397.5t-58.5 -397.5t-172.5 -364.5q-10 -18 -29 -27.5t-37 -9.5q-25 0 -45 13q-29 18 -35 51z" />
-<glyph unicode="&#xf029;" horiz-adv-x="1536" d="M0 0v698h698v-698h-698zM0 838v698h698v-698h-698zM139 139h420v420h-420v-420zM139 977h420v420h-420v-420zM279 279v141h141v-141h-141zM279 1116v139h141v-139h-141zM838 0v698h417v-139h142v139h139v-419h-420v139h-139v-418h-139zM838 838v698h698v-698h-698z M977 977h420v420h-420v-420zM1116 0v139h139v-139h-139zM1116 1116v139h139v-139h-139zM1397 0v139h139v-139h-139z" />
-<glyph unicode="&#xf02a;" d="M0 0v1536h154v-1536h-154zM227 0v1536h37v-1536h-37zM356 0v1536h117v-1536h-117zM545 0v1536h78v-1536h-78zM715 0v1536h76v-1536h-76zM903 0v1536h37v-1536h-37zM1014 0v1536h153v-1536h-153zM1221 0v1536h77v-1536h-77zM1409 0v1536h39v-1536h-39zM1579 0v1536h37 v-1536h-37zM1690 0v1536h153v-1536h-153z" />
-<glyph unicode="&#xf02b;" horiz-adv-x="1488" d="M0 961v454q0 49 35 85t86 36h454q51 0 113 -24.5t94 -61.5l672 -748q33 -39 34 -88t-34 -84l-526 -526q-35 -35 -86 -36t-86 36l-670 750q-35 37 -60.5 96t-25.5 111zM197 1223q0 -49 33.5 -83t82.5 -34t83 34t34 83t-34 82.5t-83 33.5t-82.5 -33.5t-33.5 -82.5z" />
-<glyph unicode="&#xf02c;" horiz-adv-x="1875" d="M0 961v454q0 49 35 85t86 36h454q25 0 53.5 -6t57.5 -18.5t54.5 -28t41.5 -33.5l670 -748q33 -37 34 -86t-34 -84l-526 -524q-35 -35 -86.5 -37t-83.5 37l-670 746q-35 39 -60.5 98t-25.5 109zM195 1223q0 -47 34.5 -82t83.5 -35q47 0 82 35t35 82q0 49 -35 83.5 t-82 34.5q-49 0 -83.5 -34.5t-34.5 -83.5zM791 1534h174q51 0 112.5 -24.5t93.5 -61.5l670 -748q35 -37 35 -87t-35 -85l-524 -524q-35 -35 -86 -36t-86 36l-12 14l514 514q35 35 34.5 84.5t-34.5 85.5l-670 748q-31 35 -84 56.5t-102 27.5z" />
-<glyph unicode="&#xf02d;" horiz-adv-x="1710" d="M10 311q2 16 4 31.5t4 34.5q0 10 -4 20.5t-2 20.5q2 16 15.5 31.5t25.5 35.5q23 37 45.5 90.5t32.5 92.5q4 16 -1 30.5t-1 26.5q4 16 16.5 27.5t20.5 23.5q10 18 21.5 42t21.5 49.5t16 50t8 40.5t-2 33t0 29q6 16 20.5 26.5t24.5 24.5q10 12 21.5 34.5t23 49.5t19.5 52.5 t10 45.5q2 12 -4 24.5t-2 27.5q4 14 18.5 29.5t26.5 31.5q16 25 28.5 58.5t30 61t46 43t77.5 1.5l-2 -4q31 10 54 10h780q78 0 119 -57q41 -53 18 -129l-283 -906q-18 -63 -77.5 -107t-126.5 -44h-893q-10 0 -20.5 -2t-18.5 -12q-12 -20 0 -56q16 -43 60 -75.5t87 -32.5h946 q29 0 57.5 21.5t37.5 47.5l309 987q4 16 5 29.5t-1 28.5q41 -14 61 -43q41 -53 19 -129l-283 -905q-18 -66 -77.5 -109t-127.5 -43h-946q-41 0 -79.5 14.5t-73.5 39t-61.5 58t-41.5 72.5q-25 68 -2 127zM500 961q-10 -39 26 -39h615q16 0 30.5 11t18.5 28l24 75 q4 16 -3 27.5t-23 11.5h-615q-16 0 -31.5 -11t-19.5 -28zM569 1190q-4 -16 3.5 -26.5t23.5 -10.5h614q16 0 30.5 10.5t21.5 26.5l22 78q4 16 -3 27.5t-24 11.5h-614q-16 0 -30.5 -11.5t-20.5 -27.5z" />
-<glyph unicode="&#xf02e;" horiz-adv-x="1253" d="M0 84v1337q0 47 34 81t81 34h1024q47 0 80.5 -34t33.5 -81v-1337q0 -47 -33.5 -81t-80.5 -34t-80 33l-432 432l-432 -432q-33 -33 -80 -33t-81 34t-34 81z" />
-<glyph unicode="&#xf02f;" d="M0 39v346q0 47 18.5 89t50 73t73.5 49t89 18h1383q47 0 89 -18t72.5 -49t49 -73t18.5 -89v-346q0 -39 -39 -39h-1765q-39 0 -39 39zM268 193q0 -16 11.5 -26.5t27.5 -10.5h1229q16 0 27.5 10t11.5 27v38q0 16 -11.5 27.5t-27.5 11.5h-1229q-16 0 -27.5 -11t-11.5 -28v-38 zM307 729v731q0 31 22.5 53.5t55.5 22.5h651v-383q0 -49 34 -83t81 -34h385v-307h-1229zM1151 1153v383l385 -383h-385z" />
-<glyph unicode="&#xf030;" d="M0 115v1075q0 47 34 82t81 35h366l58 125q18 43 66 73.5t95 30.5h443q47 0 95 -30.5t67 -73.5l57 -125h367q47 0 80.5 -35t33.5 -82v-1075q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM442 653q0 -100 38 -187t102.5 -152.5t153 -103.5t186.5 -38t186 38 t152.5 103.5t102.5 152.5t38 187q0 98 -38 186.5t-102.5 153t-152.5 102.5t-186 38t-186.5 -38t-153 -102.5t-102.5 -152.5t-38 -187zM596 653q0 68 25.5 127.5t69.5 103.5t103.5 69.5t127.5 25.5t127 -25.5t103 -69.5t69.5 -103.5t25.5 -127.5t-25.5 -127t-69.5 -104 t-103.5 -70.5t-126.5 -25.5q-68 0 -127.5 25.5t-103.5 70.5t-69.5 104.5t-25.5 126.5z" />
-<glyph unicode="&#xf031;" horiz-adv-x="1644" d="M0 0l2 80q10 4 29.5 8t48.5 8q92 18 108 33q16 10 50 68l233 614l277 725h73h53l11 -20l202 -482q33 -78 64 -151.5t59 -145.5q29 -72 52.5 -130t42.5 -103q12 -29 28.5 -70t36.5 -94q23 -66 64 -150q25 -49 34 -57q20 -18 68 -24q25 -2 49.5 -9.5t52.5 -17.5 q6 -37 7 -55v-10.5t-3 -16.5q-43 0 -90 2t-98 6q-53 4 -99 6t-87 2h-80t-53 -2l-199 -10l-57 -2q0 20 1 39.5t3 38.5l129 26q57 14 67 25q12 8 13 27q0 14 -7 30l-47 115l-90 227l-446 2q-12 -29 -37 -96t-66 -178q-23 -63 -22 -84q0 -27 16 -43q14 -10 40 -17.5t63 -13.5 q14 -4 84 -12v-59q0 -16 -2 -27q-35 0 -121 5t-224 16l-49 -9q-43 -8 -83 -11t-81 -3h-20zM549 655q135 -2 216 -4t105 0l29 2q-18 51 -40.5 111.5t-51.5 130.5t-51.5 122t-38.5 87z" />
-<glyph unicode="&#xf032;" horiz-adv-x="1419" d="M0 0l2 94q27 6 68 12q39 6 69.5 13.5t55.5 17.5q8 14 13 26.5t7 24.5q6 33 8 81t2 112l-2 498q-2 39 -3 139t-5 266q-4 88 -12 109q-4 8 -13 10q-20 14 -69 16q-23 0 -115 13l-4 84l262 6l383 12h45q8 2 15.5 2h13.5t21.5 -1t39.5 -1h76q92 0 193 -27q18 -4 42.5 -13 t53.5 -26q63 -31 104 -75q45 -47 66 -105q10 -29 15 -58.5t5 -62.5q0 -72 -32 -129q-31 -57 -95 -104q-16 -12 -54 -30.5t-97 -47.5q178 -41 268 -145q92 -104 92 -236q0 -72 -28 -162q-23 -66 -72 -116q-66 -72 -141 -109q-78 -35 -205 -59q-70 -12 -199 -11l-199 5 q-63 2 -138 -2.5t-163 -10.5q-25 -2 -93 -4t-181 -6zM537 1419q0 -12 1 -31.5t3 -44.5q2 -51 4 -119.5t0 -158.5v-98v-78q25 -4 52.5 -6t57.5 -2q176 0 267 65q90 66 90 225q0 113 -86 187q-84 76 -258 76q-53 0 -131 -15zM545 457l4 -271q0 -16 10 -43q74 -33 141 -32 q131 0 220 41q82 39 122 112q18 37 28.5 82t10.5 100q0 113 -43 181q-59 94 -141 125q-80 33 -250 32q-37 0 -61.5 -3t-40.5 -7v-143v-174z" />
-<glyph unicode="&#xf033;" horiz-adv-x="1054" d="M0 0l18 84q12 4 32 9t46 11q41 10 71 19.5t50 19.5q29 39 41 103l29 137l57 268l12 64q23 119 41.5 178t18.5 63l30 156l17 64l22 135l9 49v39q-45 23 -148 28q-14 0 -23.5 1.5t-17.5 1.5l21 104l325 -14q31 -2 49.5 -2h26.5q35 0 89 2t132 6q41 4 68.5 6t38.5 2 q-2 -10 -3 -19.5t-3 -19.5q-4 -10 -7.5 -22.5t-7.5 -28.5q-49 -16 -110 -31q-66 -16 -105 -31q-12 -33 -24 -88q-6 -25 -9.5 -45t-5.5 -37q-23 -100 -40 -175.5t-27 -129.5l-64 -311l-39 -158l-43 -235l-14 -45v-10.5t2 -16.5q35 -8 64.5 -13t58.5 -9q4 0 21.5 -2.5 l45.5 -6.5q-2 -18 -3 -32.5t-3 -26.5q-2 -6 -4 -16.5t-6 -22.5q-8 0 -14 -1t-10 -1q-18 -2 -28.5 -2h-14.5h-11.5t-17.5 4q-8 0 -45 4t-105 12l-202 2q-61 0 -181 -12q-39 -4 -63.5 -6t-36.5 -2z" />
-<glyph unicode="&#xf034;" d="M0 1151q14 37 34.5 110.5t45.5 184.5q8 33 13 54.5t9 31.5h58q4 -6 6 -10t4 -9q29 -57 41 -71q16 -4 129 -4q35 0 66.5 1t60.5 1l20 2l113 2l213 -2h289l55 10q10 8 27 53q2 6 4 12.5t6 16.5l43 2h10.5t16.5 -2q2 -39 1 -97.5t1 -138.5v-100v-57q0 -14 -1 -27.5t-3 -23.5 q-20 -8 -37 -11.5t-31 -7.5q-27 51 -53 129q-29 82 -37 92q-12 14 -27 21q-10 4 -60 4h-138h-31t-35 -4q-6 -43 -6 -72l2 -151v-334l2 -359v-147q0 -72 10 -117q8 -4 21.5 -8t34.5 -8q4 0 21 -4t50 -13q27 -10 49 -18q4 -20 4 -33.5v-17.5v-11.5t-2 -17.5h-34q-47 0 -88 2 t-76 6t-95.5 6t-148.5 2q-16 0 -57 -4t-109 -10q-29 -2 -45 -3t-24 -1q0 10 -1.5 16.5t-1.5 10.5l-2 24v10q18 31 80 50q94 27 135 49q4 10 6.5 25.5t4.5 31.5q4 68 6 176.5t0 255.5l-4 428q-2 90 -2 142.5t-4 72.5q0 8 -7 15q-4 6 -12 6q-16 4 -63 4h-127q-90 0 -119 -21 q-41 -29 -121 -153q-23 -35 -35 -35q-23 12 -36 23.5t-19 19.5zM1383 1305.5q-5 13.5 14 33.5l184 185q14 12 33 12q14 0 31 -12l184 -185q18 -20 13 -33.5t-34 -13.5h-118v-1048h118q29 0 34 -13.5t-13 -31.5l-184 -187q-16 -12 -33 -12q-16 0 -31 12l-184 187 q-18 18 -13 31.5t31 13.5h121v1048h-121q-27 0 -32 13.5z" />
-<glyph unicode="&#xf035;" horiz-adv-x="1536" d="M0 233q0 18 12 31l187 185q18 20 31.5 14t13.5 -33v-121h1048v121q0 27 13.5 33t33.5 -14l185 -185q12 -12 12 -31q0 -18 -12 -30l-185 -187q-20 -18 -33.5 -13t-13.5 34v119h-1048v-119q0 -29 -13.5 -34t-31.5 13l-187 187q-12 12 -12 30zM0 1233q14 29 33.5 87 t44.5 146q6 27 11 43.5t9 26.5h56q8 -12 10 -14q27 -47 37 -58q2 0 35.5 -1t77.5 -1h90.5h74.5h123l19 2h108h203h416l53 6q12 10 24 46l4.5 9l6.5 13h39h28v-188v-80v-45q0 -12 -1 -21.5t-3 -19.5q-33 -10 -63 -15q-25 37 -52 103q-27 59 -34 74q-12 10 -27 14q-6 2 -42 3 t-85 1h-103.5h-97.5h-28.5t-34.5 -2q-2 -18 -3 -32.5t-1 -24.5l4 -445l-2 -119q0 -61 12 -92q12 -6 53 -12q4 0 20.5 -4t45.5 -10q14 -4 26.5 -7.5t22.5 -7.5q2 -16 3 -25.5t1 -13.5t-1 -10t-1 -14h-33q-94 0 -157 6q-66 6 -236 6q-14 0 -53 -3t-105 -7q-27 -2 -43 -3 t-24 -1q0 16 -2 20v21v8q20 27 73 39q90 20 132 41q4 8 6 19t4 26q0 18 1 70.5t1 120t-1 142t-2 139t-2 107.5t-1 47q0 8 -6 13q-2 2 -13 6q-14 2 -59 2h-123q-20 0 -62 -1t-85 -2t-78 -4t-41 -7q-41 -25 -117 -123q-20 -29 -33 -29q-23 10 -35 19.5t-18 15.5z" />
-<glyph unicode="&#xf036;" d="M0 78v115q0 31 22.5 53t55.5 22h1689q31 0 53.5 -22.5t22.5 -52.5v-115q0 -33 -22.5 -55.5t-53.5 -22.5h-1689q-33 0 -55.5 22.5t-22.5 55.5zM0 500v114q0 33 22.5 55.5t55.5 22.5h1075q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-1075 q-33 0 -55.5 22.5t-22.5 55.5zM0 922v114q0 33 22.5 55.5t55.5 22.5h1536q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -54.5t-53.5 -21.5h-1536q-33 0 -55.5 21.5t-22.5 54.5zM0 1343v117q0 31 22.5 53.5t55.5 22.5h921q31 0 53.5 -22.5t22.5 -53.5v-117q0 -31 -22.5 -53 t-53.5 -22h-921q-33 0 -55.5 22.5t-22.5 52.5z" />
-<glyph unicode="&#xf037;" d="M0 78v115q0 31 22.5 53t55.5 22h1689q31 0 53.5 -22.5t22.5 -52.5v-115q0 -33 -22.5 -55.5t-53.5 -22.5h-1689q-33 0 -55.5 22.5t-22.5 55.5zM78 922v114q0 33 21.5 55.5t54.5 22.5h1536q33 0 55 -22.5t22 -55.5v-114q0 -33 -22.5 -54.5t-54.5 -21.5h-1536 q-33 0 -54.5 21.5t-21.5 54.5zM307 500v114q0 33 22.5 55.5t55.5 22.5h1075q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-1075q-33 0 -55.5 22.5t-22.5 55.5zM385 1343v117q0 31 21.5 53.5t54.5 22.5h921q33 0 55.5 -22.5t22.5 -53.5v-117 q0 -31 -22.5 -53t-55.5 -22h-921q-33 0 -54.5 22.5t-21.5 52.5z" />
-<glyph unicode="&#xf038;" d="M0 78v115q0 31 22.5 53t55.5 22h1689q31 0 53.5 -22.5t22.5 -52.5v-115q0 -33 -22.5 -55.5t-53.5 -22.5h-1689q-33 0 -55.5 22.5t-22.5 55.5zM154 922v114q0 33 22.5 55.5t54.5 22.5h1536q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -54.5t-53.5 -21.5h-1536 q-33 0 -55 21.5t-22 54.5zM614 500v114q0 33 22.5 55.5t55.5 22.5h1075q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-1075q-33 0 -55.5 22.5t-22.5 55.5zM768 1343v117q0 31 22.5 53.5t55.5 22.5h921q31 0 53.5 -22.5t22.5 -53.5v-117q0 -31 -22.5 -53 t-53.5 -22h-921q-33 0 -55.5 22.5t-22.5 52.5z" />
-<glyph unicode="&#xf039;" d="M0 78v115q0 31 22.5 53t55.5 22h1689q31 0 53.5 -22.5t22.5 -52.5v-115q0 -33 -22.5 -55.5t-53.5 -22.5h-1689q-33 0 -55.5 22.5t-22.5 55.5zM0 500v114q0 33 22.5 55.5t55.5 22.5h1689q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-1689 q-33 0 -55.5 22.5t-22.5 55.5zM0 922v114q0 33 22.5 55.5t55.5 22.5h1689q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -54.5t-53.5 -21.5h-1689q-33 0 -55.5 21.5t-22.5 54.5zM0 1343v117q0 31 22.5 53.5t55.5 22.5h1689q31 0 53.5 -22.5t22.5 -53.5v-117 q0 -31 -22.5 -53t-53.5 -22h-1689q-33 0 -55.5 22.5t-22.5 52.5z" />
-<glyph unicode="&#xf03a;" d="M0 78v115q0 31 22.5 53t55.5 22h153q31 0 53.5 -22.5t22.5 -52.5v-115q0 -33 -22.5 -55.5t-53.5 -22.5h-153q-33 0 -55.5 22.5t-22.5 55.5zM0 500v114q0 33 22.5 55.5t55.5 22.5h153q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-153 q-33 0 -55.5 22.5t-22.5 55.5zM0 922v114q0 33 22.5 55.5t55.5 22.5h153q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -54.5t-53.5 -21.5h-153q-33 0 -55.5 21.5t-22.5 54.5zM0 1343v117q0 31 22.5 53.5t55.5 22.5h153q31 0 53.5 -22.5t22.5 -53.5v-117q0 -31 -22.5 -53 t-53.5 -22h-153q-33 0 -55.5 22.5t-22.5 52.5zM461 78v115q0 31 22.5 53t55.5 22h1228q31 0 53.5 -22.5t22.5 -52.5v-115q0 -33 -22.5 -55.5t-53.5 -22.5h-1228q-33 0 -55.5 22.5t-22.5 55.5zM461 500v114q0 33 22.5 55.5t55.5 22.5h1228q31 0 53.5 -22.5t22.5 -55.5v-114 q0 -33 -22.5 -55.5t-53.5 -22.5h-1228q-33 0 -55.5 22.5t-22.5 55.5zM461 922v114q0 33 22.5 55.5t55.5 22.5h1228q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -54.5t-53.5 -21.5h-1228q-33 0 -55.5 21.5t-22.5 54.5zM461 1343v117q0 31 22.5 53.5t55.5 22.5h1228 q31 0 53.5 -22.5t22.5 -53.5v-117q0 -31 -22.5 -53t-53.5 -22h-1228q-33 0 -55.5 22.5t-22.5 52.5z" />
-<glyph unicode="&#xf03b;" d="M0 756v75q0 39 39 39h213v154q0 31 16.5 37t38.5 -17l215 -215q16 -16 17 -36q0 -18 -17 -35l-215 -215q-23 -23 -39 -17t-16 39v152h-213q-39 0 -39 39zM614 39v1458q0 39 39 39h76q39 0 39 -39v-1458q0 -39 -39 -39h-76q-39 0 -39 39zM922 78v115q0 31 22.5 53t54.5 22 h768q31 0 53.5 -22.5t22.5 -52.5v-115q0 -33 -22.5 -55.5t-53.5 -22.5h-768q-33 0 -55 22.5t-22 55.5zM922 500v114q0 33 22.5 55.5t54.5 22.5h615q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-615q-33 0 -55 22.5t-22 55.5zM922 922v114 q0 33 22.5 55.5t54.5 22.5h691q33 0 55 -22.5t22 -55.5v-114q0 -33 -22.5 -54.5t-54.5 -21.5h-691q-33 0 -55 21.5t-22 54.5zM922 1343v117q0 31 22.5 53.5t54.5 22.5h537q33 0 55.5 -22.5t22.5 -53.5v-117q0 -31 -22.5 -53t-55.5 -22h-537q-33 0 -55 22.5t-22 52.5z" />
-<glyph unicode="&#xf03c;" d="M0 78v115q0 31 22.5 53t53.5 22h768q33 0 55.5 -22.5t22.5 -52.5v-115q0 -33 -22.5 -55.5t-55.5 -22.5h-768q-31 0 -53.5 22.5t-22.5 55.5zM0 500v114q0 33 22.5 55.5t53.5 22.5h614q33 0 55.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-55.5 -22.5h-614 q-31 0 -53.5 22.5t-22.5 55.5zM0 922v114q0 33 22.5 55.5t53.5 22.5h692q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -54.5t-53.5 -21.5h-692q-31 0 -53.5 21.5t-22.5 54.5zM0 1343v117q0 31 22.5 53.5t53.5 22.5h538q31 0 53.5 -22.5t22.5 -53.5v-117q0 -31 -22.5 -53 t-53.5 -22h-538q-31 0 -53.5 22.5t-22.5 52.5zM1075 39v1458q0 39 39 39h76q16 0 27.5 -11.5t11.5 -27.5v-1458q0 -16 -11.5 -27.5t-27.5 -11.5h-76q-39 0 -39 39zM1305 743q0 16 14 35l217 215q23 23 38 17t15 -39v-152h215q16 0 27.5 -11t11.5 -28v-75q0 -16 -11 -27.5 t-28 -11.5h-215v-154q0 -31 -15 -38t-38 15l-217 218q-14 18 -14 36z" />
-<glyph unicode="&#xf03d;" d="M0 324v768q0 47 18.5 89t50 72.5t73.5 49t89 18.5h768q47 0 89 -18.5t73 -49t49.5 -72.5t18.5 -89v-240l483 471q23 23 55 23q13 -1 29 -7q47 -20 47 -69v-1127q0 -49 -47 -69q-16 -6 -29 -6q-33 0 -55 22l-483 471v-237q0 -47 -18.5 -89t-49.5 -74t-72.5 -50.5 t-89.5 -18.5h-768q-47 0 -89 18.5t-73.5 50.5t-50 73.5t-18.5 89.5z" />
-<glyph unicode="&#xf03e;" d="M0 115v1306q0 47 34 81t81 34h1614q47 0 80.5 -34t33.5 -81v-1306q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM154 154h1536v1228h-1536v-1228zM307 307v105l277 360l188 -156l354 537l410 -424v-422h-1229zM307 1073q0 66 45 111t111 45q63 0 108 -45 t45 -111q0 -63 -45 -108t-108 -45q-66 0 -111 45t-45 108z" />
-<glyph unicode="&#xf040;" horiz-adv-x="1536" d="M0 0l137 418l867 866l280 -280l-866 -867zM287 407.5q0 -12.5 10 -22.5q8 -8 22 -8q12 0 21 8l690 690q20 20 0 43q-10 10 -22.5 10t-20.5 -10l-690 -688q-10 -10 -10 -22.5zM1102 1382l119 119q35 35 84 35t84 -35l57 -55l55 -57q35 -35 35 -84.5t-35 -83.5l-119 -119z " />
-<glyph unicode="&#xf041;" horiz-adv-x="1128" d="M0 1001q0 117 44 220.5t121 180.5t180.5 121t219.5 44q117 0 219.5 -44t179 -121t120.5 -180.5t44 -220.5q0 -84 -24.5 -159.5t-65.5 -143.5l-379 -661q-41 -68 -95 -68t-93 68l-381 663q-41 68 -65.5 143t-24.5 158zM285 1001q0 -57 21.5 -108t60.5 -89t89 -59.5 t109 -21.5q57 0 108.5 21.5t89.5 59.5t59.5 89t21.5 108t-21.5 108.5t-59.5 90.5t-89 60.5t-109 21.5q-59 0 -109 -21.5t-89 -60.5t-60.5 -90t-21.5 -109z" />
-<glyph unicode="&#xf042;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -117 44 -218t119.5 -177t177 -120t218.5 -44v1118q-117 0 -218.5 -44 t-177 -120t-119.5 -177t-44 -218z" />
-<glyph unicode="&#xf043;" horiz-adv-x="1130" d="M0 535q0 86 23.5 161.5t66.5 141.5q20 33 69.5 99.5t108 154.5t113.5 193.5t90 217.5q10 35 37 51.5t57 12.5q31 4 57.5 -12.5t36.5 -51.5q33 -113 89.5 -218t115 -193t107.5 -154.5t69 -99.5q43 -66 66.5 -141.5t23.5 -161.5q0 -117 -44 -220.5t-120.5 -180.5t-180 -121 t-220.5 -44t-220 44t-180 121t-121 180.5t-44 220.5zM248 410q0 -59 41 -100.5t100 -41.5t100 41t41 101q0 43 -22 75q-6 8 -18.5 24.5t-26.5 39t-28.5 48.5t-22.5 54q-4 20 -23 17q-18 4 -24 -17q-8 -29 -21.5 -54.5t-28 -48t-27 -38.5t-18.5 -25q-23 -33 -22 -75z" />
-<glyph unicode="&#xf044;" d="M0 307v922q0 63 24.5 119.5t65.5 97.5t97.5 65.5t119.5 24.5h1075q4 0 10.5 -1t10.5 -1l-191 -191h-905q-47 0 -80.5 -33.5t-33.5 -80.5v-922q0 -47 33.5 -80.5t80.5 -33.5h1075q47 0 81 33.5t34 80.5v445l193 192v-637q0 -63 -25 -118.5t-67 -97.5t-97 -66.5t-119 -24.5 h-1075q-63 0 -119.5 24.5t-97.5 66.5t-65.5 97.5t-24.5 118.5zM631 324l108 329l652 652l221 -222l-651 -651zM866 629q6 -8 17 -8q10 0 16 8l512 510q18 18 0 35q-18 16 -35 0l-510 -510q-18 -18 0 -35zM1501 1415l92 94q29 29 68 29t65 -29l46 -45l45 -45 q27 -29 27.5 -66.5t-27.5 -66.5l-95 -92z" />
-<glyph unicode="&#xf045;" d="M0 307v922q0 63 24.5 119.5t65.5 97.5t97.5 65.5t119.5 24.5h836q-6 -31 -6 -63v-52q-164 -20 -310 -78h-520q-47 0 -80.5 -33.5t-33.5 -80.5v-922q0 -47 33.5 -80.5t80.5 -33.5h1075q47 0 81 33.5t34 80.5v111q16 10 31.5 21.5t32.5 27.5l129 127v-287q0 -63 -25 -118.5 t-67 -97.5t-97 -66.5t-119 -24.5h-1075q-63 0 -119.5 24.5t-97.5 66.5t-65.5 97.5t-24.5 118.5zM385 388.5v37.5q0 166 56.5 312.5t173 256t293.5 173t419 65.5v231q0 57 28.5 69.5t69.5 -28.5l392 -391q27 -25 26 -65q0 -39 -26 -64l-392 -391q-41 -41 -69.5 -28.5 t-28.5 69.5v260q-207 0 -364.5 -43t-266 -116.5t-170 -174t-77.5 -215.5q-4 -27 -31 -27q-25 0 -29 27q-4 23 -4 42.5z" />
-<glyph unicode="&#xf046;" d="M0 307v922q0 63 24.5 119.5t65.5 97.5t97.5 65.5t119.5 24.5h1075q27 0 52 -6l-187 -187h-940q-47 0 -80.5 -33.5t-33.5 -80.5v-922q0 -47 33.5 -80.5t80.5 -33.5h1075q47 0 81 33.5t34 80.5v326l193 192v-518q0 -63 -25 -118.5t-67 -97.5t-97 -66.5t-119 -24.5h-1075 q-63 0 -119.5 24.5t-97.5 66.5t-65.5 97.5t-24.5 118.5zM385 966.5q0 32.5 23 55.5l98 98q23 23 55.5 23t54.5 -23l340 -340l654 656q23 23 56.5 22.5t55.5 -22.5l99 -99q23 -23 22.5 -55.5t-22.5 -54.5l-711 -711l-98 -98q-23 -23 -55.5 -23t-55.5 23l-100 98l-393 395 q-23 23 -23 55.5z" />
-<glyph unicode="&#xf047;" horiz-adv-x="1597" d="M0 768q0 25 18 43l256 256q27 27 45.5 19.5t18.5 -46.5v-170h360v359h-172q-37 0 -45 18.5t19 44.5l256 256q18 18 43 19q25 0 43 -19l256 -256q27 -27 19.5 -45t-46.5 -18h-172v-359h361v170q0 39 18 46.5t45 -19.5l256 -256q18 -18 18 -43t-18 -43l-256 -256 q-27 -27 -45 -19.5t-18 46.5v176h-361v-365h172q39 0 47 -18.5t-20 -44.5l-256 -256q-18 -18 -43 -19q-25 0 -43 19l-256 256q-27 27 -20 45t46 18h172v365h-360v-176q0 -39 -18.5 -46.5t-45.5 19.5l-256 256q-18 18 -18 43z" />
-<glyph unicode="&#xf048;" horiz-adv-x="1075" d="M0 76q0 -31 22.5 -53.5t53.5 -22.5h153q33 0 55.5 22.5t22.5 53.5v1382q0 33 -22.5 55.5t-55.5 22.5h-153q-31 0 -53.5 -22.5t-22.5 -55.5v-1382zM307.5 768q-0.5 27 16.5 43l653 707q14 18 41 18q6 0 22 -4q35 -18 35 -59v-1412q0 -41 -35 -57q-39 -14 -63 14l-653 705 q-16 18 -16.5 45z" />
-<glyph unicode="&#xf049;" d="M0 76q0 -31 22.5 -53.5t53.5 -22.5h153q33 0 55.5 22.5t22.5 53.5v1382q0 33 -22.5 55.5t-55.5 22.5h-153q-31 0 -53.5 -22.5t-22.5 -55.5v-1382zM307.5 768q-0.5 27 16.5 43l653 707q14 18 41 18q6 0 22 -4q35 -18 35 -59v-1412q0 -41 -35 -57q-39 -14 -63 14l-653 705 q-16 18 -16.5 45zM1075.5 768q-0.5 27 16.5 43l653 707q14 18 41 18q6 0 22 -4q35 -18 35 -59v-1412q0 -41 -35 -57q-39 -14 -63 14l-653 705q-16 18 -16.5 45z" />
-<glyph unicode="&#xf04a;" horiz-adv-x="1536" d="M0 767q0 26 16 44l654 707q14 18 41 18q10 0 22 -6q35 -14 35 -57v-1412q0 -41 -35 -57q-37 -16 -63 14l-654 705q-16 18 -16 44zM768 767q0 26 16 44l654 707q14 18 41 18q10 0 22 -6q35 -14 35 -57v-1412q0 -41 -35 -57q-37 -16 -63 14l-654 705q-16 18 -16 44z" />
-<glyph unicode="&#xf04b;" horiz-adv-x="1349" d="M0 70v1396q0 39 35 60q37 23 69 0l1211 -697q35 -25 35 -61q0 -37 -35 -61l-1211 -697q-16 -10 -34 -10t-35 10q-35 20 -35 60z" />
-<glyph unicode="&#xf04c;" horiz-adv-x="1536" d="M0 70v1396q0 29 20.5 49.5t49.5 20.5h489q29 0 49.5 -20.5t20.5 -49.5v-1396q0 -29 -20.5 -49.5t-49.5 -20.5h-489q-29 0 -49.5 20.5t-20.5 49.5zM907 70v1396q0 29 20.5 49.5t49.5 20.5h489q29 0 49.5 -20.5t20.5 -49.5v-1396q0 -29 -20.5 -49.5t-49.5 -20.5h-489 q-29 0 -49.5 20.5t-20.5 49.5z" />
-<glyph unicode="&#xf04d;" horiz-adv-x="1536" d="M0 70v1396q0 29 20.5 49.5t49.5 20.5h1396q29 0 49.5 -20.5t20.5 -49.5v-1396q0 -29 -20.5 -49.5t-49.5 -20.5h-1396q-29 0 -49.5 20.5t-20.5 49.5z" />
-<glyph unicode="&#xf04e;" horiz-adv-x="1536" d="M0 61v1414q0 39 35 57q39 14 63 -14l654 -705q16 -18 16 -45t-16 -45l-654 -705q-16 -18 -41 -18q-6 0 -22 4q-35 16 -35 57zM768 61v1414q0 39 35 57q39 14 63 -14l654 -705q16 -18 16 -45t-16 -45l-654 -705q-16 -18 -41 -18q-6 0 -22 4q-35 16 -35 57z" />
-<glyph unicode="&#xf050;" d="M0 61v1414q0 39 35 57q39 14 63 -14l654 -705q16 -18 16 -45t-16 -45l-654 -705q-16 -18 -41 -18q-6 0 -22 4q-35 16 -35 57zM768 61v1414q0 39 35 57q39 14 63 -14l654 -705q16 -18 16 -45t-16 -45l-654 -705q-16 -18 -41 -18q-6 0 -22 4q-35 16 -35 57zM1536 76 q0 -31 22.5 -53.5t53.5 -22.5h153q33 0 55.5 22.5t22.5 53.5v1382q0 33 -22.5 55.5t-55.5 22.5h-153q-31 0 -53.5 -22.5t-22.5 -55.5v-1382z" />
-<glyph unicode="&#xf051;" horiz-adv-x="1075" d="M0 61v1414q0 39 35 57q39 14 63 -14l654 -705q16 -18 16 -45t-16 -45l-654 -705q-16 -18 -41 -18q-6 0 -22 4q-35 16 -35 57zM768 76q0 -31 22.5 -53.5t53.5 -22.5h153q33 0 55.5 22.5t22.5 53.5v1382q0 33 -22.5 55.5t-55.5 22.5h-153q-31 0 -53.5 -22.5t-22.5 -55.5 v-1382z" />
-<glyph unicode="&#xf052;" horiz-adv-x="1536" d="M0 70v198q0 29 20.5 49.5t49.5 20.5h1396q29 0 49.5 -20.5t20.5 -49.5v-198q0 -29 -20.5 -49.5t-49.5 -20.5h-1396q-29 0 -49.5 20.5t-20.5 49.5zM6 594q-18 43 14 76l699 698q20 20 49 20.5t49 -20.5l699 -698q33 -33 14 -76q-16 -43 -64 -43h-1396q-47 0 -64 43z" />
-<glyph unicode="&#xf053;" horiz-adv-x="964" d="M0 765q0 38 29 66l671 674q29 29 68 29t68 -29l100 -100q29 -29 29 -68t-29 -67l-508 -510l508 -500q29 -29 29 -66.5t-29 -66.5l-100 -102q-29 -29 -68 -29t-68 29l-671 673q-29 29 -29 67z" />
-<glyph unicode="&#xf054;" horiz-adv-x="964" d="M0 194.5q0 38.5 29 67.5l508 508l-508 502q-29 29 -29 66.5t29 66.5l100 102q29 29 68 29t67 -29l672 -673q29 -29 29 -68t-29 -68l-672 -671q-29 -29 -67.5 -29t-67.5 29l-100 100q-29 29 -29 67.5z" />
-<glyph unicode="&#xf055;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM338 688q0 -33 33 -33h313v-344q0 -33 33 -32h164q33 0 32 32v344h314 q12 0 22.5 9.5t10.5 23.5v158q0 14 -10.5 23.5t-22.5 9.5h-314v346q0 33 -32 32h-164q-33 0 -33 -32v-346h-313q-33 0 -33 -33v-158z" />
-<glyph unicode="&#xf056;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM338 688q0 -33 33 -33h856q12 0 22.5 9.5t10.5 23.5v158q0 14 -10.5 23.5 t-22.5 9.5h-856q-33 0 -33 -33v-158z" />
-<glyph unicode="&#xf057;" horiz-adv-x="1597" d="M0 770q0 154 58.5 301.5t174.5 263.5q117 117 264.5 175.5t301 58.5t301 -58.5t264.5 -175.5t175 -264t58 -301t-58 -301t-175 -264t-264.5 -175.5t-301 -58.5t-301 58.5t-264.5 175.5t-175 264t-58 301zM385 505q0 -13 10 -24l115 -116q10 -10 23.5 -10.5t23.5 10.5 l244 243l219 -221q10 -10 23.5 -10t23.5 10l113 113q23 23 0 47l-222 219l246 246q23 23 0 47l-117 115q-25 25 -47 0l-243 -244l-222 221q-10 10 -23 10t-24 -10l-110 -113q-25 -23 0 -47l219 -219l-242 -244q-10 -10 -10 -23z" />
-<glyph unicode="&#xf058;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 718q0 -20 14 -34l319 -319q14 -14 38 -24.5t44 -10.5h56q20 0 43.5 10 t38.5 25l550 550q14 14 14.5 34t-14.5 34l-104 107q-16 14 -35.5 14t-34.5 -14l-452 -453q-14 -14 -33.5 -14t-34.5 14l-221 221q-14 14 -33.5 14t-36.5 -14l-104 -106q-14 -14 -14 -34z" />
-<glyph unicode="&#xf059;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM532 1100l95 -115q4 -8 20 -12q12 0 23 6l10 8t27.5 17.5t39 16.5t46.5 7 q41 0 69.5 -22.5t28.5 -57.5q0 -37 -24.5 -64.5t-61.5 -60.5q-23 -18 -46.5 -40.5t-43 -51.5t-31.5 -63.5t-12 -79.5v-64q0 -12 9 -21t21 -9h164q12 0 20.5 9t8.5 21v51q0 39 25.5 66.5t62.5 60.5q25 20 49.5 46t46 57t34.5 69.5t13 90.5q0 68 -27.5 121t-73.5 87.5 t-103.5 53t-114.5 18.5q-63 0 -113.5 -16.5t-85.5 -35.5t-53 -35.5t-20 -18.5q-16 -16 -3 -39zM672 252q0 -12 9 -21.5t21 -9.5h164q12 0 20.5 9.5t8.5 21.5v156q0 12 -8 21t-21 9h-164q-12 0 -21 -9t-9 -21v-156z" />
-<glyph unicode="&#xf05a;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM573 858q0 -29 29 -29h86v-409h-78q-12 0 -21 -8.5t-9 -20.5v-139q0 -12 9 -21.5 t21 -9.5h402q12 0 20 9.5t8 21.5v139q0 29 -28 29h-78v577q0 12 -8 21.5t-21 9.5h-303q-12 0 -20.5 -9t-8.5 -22v-139zM686 1151q0 -12 9.5 -21.5t21.5 -9.5h188q12 0 20.5 9.5t8.5 21.5v166q0 29 -29 29h-188q-12 0 -21.5 -8.5t-9.5 -20.5v-166z" />
-<glyph unicode="&#xf05b;" horiz-adv-x="1536" d="M0 692v154q0 16 11.5 26.5t27.5 10.5h164q18 84 59 158.5t99.5 133t133 99.5t158.5 59v164q0 39 39 39h154q16 0 26.5 -11.5t10.5 -27.5v-164q84 -18 158.5 -59t133 -99.5t99.5 -133t59 -158.5h164q16 0 27.5 -10.5t11.5 -26.5v-154q0 -39 -39 -39h-164 q-18 -84 -59 -158.5t-99.5 -133t-133 -99.5t-158.5 -59v-164q0 -16 -10.5 -27.5t-26.5 -11.5h-154q-39 0 -39 39v164q-84 18 -158.5 59t-133 99.5t-99.5 133t-59 158.5h-164q-39 0 -39 39zM365 653q29 -106 105.5 -183t182.5 -105v174q0 16 11.5 26t27.5 10h154 q16 0 26.5 -10t10.5 -26v-174q106 29 183 105.5t105 182.5h-172q-39 0 -38 39v154q0 16 11 26.5t27 10.5h172q-29 106 -105.5 183t-182.5 105v-172q0 -16 -10.5 -27t-26.5 -11h-154q-39 0 -39 38v172q-106 -29 -183 -105.5t-105 -182.5h174q16 0 26 -10.5t10 -26.5v-154 q0 -16 -10 -27.5t-26 -11.5h-174z" />
-<glyph unicode="&#xf05c;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -117 44 -218t119.5 -177t177 -120t218.5 -44t218 44t177 120t120 177 t44 218t-44 218t-120 177t-177.5 120t-217.5 44q-117 0 -218.5 -44t-177 -120t-119.5 -177t-44 -218zM451 573.5q0 16.5 12 28.5l166 166l-166 166q-12 12 -12 28.5t12 28.5l112 113q29 29 58 0l166 -166l166 166q29 29 57 0l113 -113q29 -29 0 -57l-166 -166l166 -166 q29 -29 0 -57l-113 -113q-12 -12 -28.5 -12t-28.5 12l-166 166l-166 -166q-12 -12 -28.5 -12t-29.5 12l-112 113q-12 12 -12 28.5z" />
-<glyph unicode="&#xf05d;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -117 44 -218t119.5 -177t177 -120t218.5 -44t218 44t177 120t120 177 t44 218t-44 218t-120 177t-177.5 120t-217.5 44q-117 0 -218.5 -44t-177 -120t-119.5 -177t-44 -218zM332 717.5q0 17.5 10 27.5l115 115q10 10 27.5 10t27.5 -10l178 -180q29 -25 58 0l337 340q10 10 27.5 10t28.5 -10l114 -115q10 -10 10.5 -27.5t-10.5 -27.5l-409 -410 q-12 -12 -32.5 -20t-37.5 -8h-114q-16 0 -37 8t-33 20l-250 250q-10 10 -10 27.5z" />
-<glyph unicode="&#xf05e;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -84 23.5 -160t66.5 -141l770 770q-66 43 -141.5 66.5t-159.5 23.5 q-117 0 -218.5 -44t-177 -120t-119.5 -177t-44 -218zM498 297q66 -41 141.5 -64.5t159.5 -23.5q117 0 218 44t177 120t120 177t44 218q0 84 -23.5 160t-64.5 141z" />
-<glyph unicode="&#xf060;" horiz-adv-x="1536" d="M0 768q0 39 29 68l671 673q29 29 68 29t68 -29l100 -100q29 -29 29 -67.5t-29 -67.5l-338 -338h842q41 0 68.5 -27.5t27.5 -68.5v-144q0 -39 -27.5 -66.5t-66.5 -27.5h-844l338 -338q29 -29 29 -67.5t-29 -67.5l-100 -100q-29 -29 -68 -29t-68 29l-671 671q-29 29 -29 68 z" />
-<glyph unicode="&#xf061;" horiz-adv-x="1536" d="M0 698v144q0 39 27.5 66.5t66.5 27.5h844l-338 338q-29 29 -29 67.5t29 67.5l100 100q29 29 68 29t68 -29l671 -673q29 -29 29 -67t-29 -67l-671 -673q-29 -29 -68 -29t-68 29l-100 100q-29 29 -29 68t29 67l338 338h-844q-39 0 -66.5 27.5t-27.5 68.5z" />
-<glyph unicode="&#xf062;" horiz-adv-x="1536" d="M-1 768q-1 39 28 68l673 671q29 29 68 29t68 -29l671 -671q29 -29 29 -68t-29 -68l-100 -100q-29 -29 -66.5 -29t-66.5 29l-340 338v-844q0 -39 -27.5 -66.5t-66.5 -27.5h-144q-41 0 -67.5 27.5t-26.5 66.5v844l-338 -338q-29 -29 -67.5 -29t-67.5 29l-100 100 q-29 29 -30 68z" />
-<glyph unicode="&#xf063;" horiz-adv-x="1536" d="M0 766q0 39 29 68l100 100q29 29 68 29t67 -29l338 -338v844q0 39 27.5 66.5t66.5 27.5h144q41 0 67.5 -27.5t26.5 -66.5v-844l340 338q29 29 66.5 29t66.5 -29l102 -100q29 -29 29 -68t-29 -68l-673 -671q-29 -29 -68 -29t-68 29l-671 671q-29 29 -29 68z" />
-<glyph unicode="&#xf064;" d="M0 135q0 209 71.5 393.5t218 322.5t371 219t531.5 83v293q0 72 36 87t89 -36l491 -493q35 -33 35 -82q0 -47 -35 -82l-491 -494q-51 -51 -88 -35.5t-37 86.5v330q-262 -2 -461 -56.5t-336 -147.5t-215 -219t-98 -271q-4 -33 -37 -33h-2q-33 0 -37 33q-6 51 -6 102z" />
-<glyph unicode="&#xf065;" horiz-adv-x="1536" d="M0 86v522q0 53 26.5 64.5t65.5 -25.5l166 -166l274 275q12 12 31 12t33 -12l160 -160q12 -14 12 -32.5t-12 -31.5l-275 -274l166 -166q39 -39 27 -65.5t-66 -26.5h-520q-37 0 -61 25q-27 27 -27 61zM768 972.5q0 18.5 12 31.5l275 274l-166 166q-39 39 -27 65.5t66 26.5 h520q37 0 61 -25q27 -27 27 -61v-522q0 -53 -26.5 -64.5t-65.5 25.5l-166 166l-274 -273q-12 -14 -31 -14t-33 14l-160 158q-12 14 -12 32.5z" />
-<glyph unicode="&#xf066;" horiz-adv-x="1536" d="M0 202.5q0 18.5 12 33.5l275 272l-166 166q-39 39 -27 65.5t66 26.5h520q38 0 61 -25q27 -27 27 -61v-522q0 -53 -26.5 -64.5t-65.5 27.5l-166 166l-274 -275q-12 -14 -31 -14t-33 14l-160 160q-12 12 -12 30.5zM768 854v522q0 53 26.5 64.5t65.5 -27.5l166 -166l274 275 q12 14 31 14t33 -14l160 -160q12 -12 12 -30.5t-12 -33.5l-275 -272l166 -166q39 -39 27 -65.5t-66 -26.5h-520q-41 0 -61 25q-27 27 -27 61z" />
-<glyph unicode="&#xf067;" horiz-adv-x="1536" d="M0 696v144q0 39 27.5 66.5t66.5 27.5h508v506q0 41 26.5 68.5t67.5 27.5h144q39 0 66.5 -27.5t27.5 -66.5v-508h508q39 0 66.5 -27.5t27.5 -66.5v-144q0 -39 -27.5 -66.5t-66.5 -27.5h-508v-506q0 -41 -27.5 -68.5t-66.5 -27.5h-144q-39 0 -66.5 27.5t-27.5 66.5v508 h-506q-41 0 -68.5 26.5t-27.5 67.5z" />
-<glyph unicode="&#xf068;" horiz-adv-x="1536" d="M0 696v144q0 39 27.5 66.5t66.5 27.5h1348q39 0 66.5 -27.5t27.5 -66.5v-144q0 -39 -27.5 -66.5t-66.5 -27.5h-1346q-41 0 -68.5 26.5t-27.5 67.5z" />
-<glyph unicode="&#xf069;" horiz-adv-x="1427" d="M2 1018q-10 37 10 72l72 124q20 35 58 44.5t73 -9.5l332 -192v383q0 41 27.5 68.5t68.5 27.5h141q41 0 69 -27.5t28 -66.5v-385l331 192q35 18 73 9t58 -44l70 -124q20 -35 11 -72t-44 -57l-333 -193l333 -193q35 -20 44.5 -57t-9.5 -72l-72 -124q-20 -35 -58 -44.5 t-73 9.5l-331 192v-383q0 -41 -28 -68.5t-69 -27.5h-141q-41 0 -68.5 27.5t-27.5 66.5v385l-332 -192q-35 -20 -73 -10t-58 45l-72 124q-18 35 -9 72t44 57l334 193l-334 193q-35 20 -45 57z" />
-<glyph unicode="&#xf06a;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM672 1274l14 -739q4 -29 31 -29h162q12 0 21 8t9 21l17 739q0 10 -8 22q-8 8 -23 9 h-193q-14 0 -22 -9q-8 -12 -8 -22zM680 236q0 -12 8 -21.5t21 -9.5h180q12 0 21.5 9t9.5 22v174q0 12 -9.5 21t-21.5 9h-180q-12 0 -20.5 -9t-8.5 -21v-174z" />
-<glyph unicode="&#xf06b;" horiz-adv-x="1880" d="M0 588v391q0 16 11.5 27.5t27.5 11.5h539q-57 0 -107.5 21.5t-87.5 58.5t-58.5 87t-21.5 107t21.5 107.5t58.5 87.5t87 58.5t108 21.5q61 0 115.5 -24.5t88.5 -69.5l158 -203l158 203q35 45 89 69.5t116 24.5q57 0 107 -21.5t87 -58.5t58.5 -87t21.5 -108 q0 -57 -21.5 -107t-58.5 -87t-87 -58.5t-107 -21.5h538q16 0 27.5 -11.5t11.5 -27.5v-391q0 -16 -11 -27.5t-28 -11.5h-117v-432q0 -47 -34.5 -82t-83.5 -35h-1332q-49 0 -82.5 35t-33.5 82v432h-119q-16 0 -27.5 11t-11.5 28zM461 1292q0 -49 33.5 -82.5t83.5 -33.5h237 l-151 196q-10 10 -32 24.5t-54 14.5q-49 0 -83 -35t-34 -84zM743 221q0 -33 24 -56.5t56 -23.5h234q33 0 56.5 23.5t23.5 56.5v797h-394v-797zM1065 1176h238q49 0 82.5 33.5t33.5 82.5t-33.5 84t-82.5 35q-33 0 -54.5 -14.5t-31.5 -24.5z" />
-<glyph unicode="&#xf06c;" horiz-adv-x="1916" d="M6 135q20 53 56 89t71 65q29 23 50.5 43t27.5 43q2 6 0 12t-10 25q-6 12 -11.5 27.5t-9.5 35.5q-25 160 13 295t120 242.5t195 185.5t235 121q82 29 179.5 34t203.5 7q61 0 127 2t127.5 11t113.5 28.5t85 54.5q20 20 38.5 41t38 36t43 24.5t58.5 9.5q23 0 42.5 -11.5 t29.5 -31.5q66 -133 83 -281.5t-18 -322.5q-90 -487 -579 -740q-231 -123 -467 -123q-154 0 -307 54q-23 8 -45.5 20t-44.5 25q-29 16 -57.5 30.5t-49.5 14.5q-10 -2 -23.5 -17.5t-27.5 -35t-26.5 -41t-20.5 -33.5q-14 -23 -26.5 -41.5t-22.5 -32.5q-25 -31 -64 -31h-4 q-29 2 -49.5 12.5t-33.5 24.5t-20.5 28.5t-9.5 22.5q-27 37 -10 78zM401 507.5q2 -32.5 29 -54.5q20 -18 51 -19q37 0 62 27q90 102 181 175t191.5 117t212 62t242.5 14q33 -4 57.5 19.5t26.5 56.5q2 35 -20.5 58.5t-57.5 25.5q-147 6 -277 -16.5t-247 -73.5t-223.5 -133 t-206.5 -199q-23 -27 -21 -59.5z" />
-<glyph unicode="&#xf06d;" horiz-adv-x="1445" d="M0 442q0 123 63.5 254t174.5 238q10 16 33.5 13t31.5 -21q4 -16 0 -29q-8 -35 -14 -84t-4 -101.5t13 -101.5t38 -84q31 -37 78 -49q-49 154 -40 293t49 259t101.5 217t118.5 167t98 106.5t43 39.5q25 18 47 0q10 -8 13.5 -21.5t-0.5 -24.5q0 -2 -15.5 -42.5t-21.5 -102 t7 -134.5t71 -136q37 -43 67.5 -85t52 -93.5t34 -120t12.5 -162.5q0 -33 -31 -39q-12 -2 -24.5 4t-16.5 19q-14 31 -42 49t-63 18q-47 0 -79.5 -33.5t-32.5 -81.5q0 -121 156 -120q98 0 153 63q37 43 53.5 101.5t20.5 114.5t2 102.5t-4 62.5q-6 12 0 29q8 18 31.5 21 t35.5 -13q111 -106 173.5 -237.5t62.5 -254.5q0 -109 -51.5 -195.5t-145.5 -148t-228 -95.5t-298 -34t-298 34t-228.5 95.5t-145.5 148.5t-51 195z" />
-<glyph unicode="&#xf06e;" d="M0 722q0 44 25 83q78 125 178 224t216 168t242.5 104.5t260.5 35.5q135 0 262 -35.5t241.5 -103.5t215 -167t180.5 -226q23 -39 22.5 -83t-22.5 -81q-80 -127 -180.5 -226.5t-215 -167t-241.5 -103t-262 -35.5q-133 0 -260 35.5t-243 104t-216.5 168t-177.5 224.5 q-25 37 -25 81zM154 723q66 -104 149.5 -190.5t182 -145.5t208 -92t228.5 -33t228.5 33t207.5 92t182 145t150 191q-80 129 -187.5 226.5t-236.5 156.5q51 -59 79.5 -133t28.5 -160q0 -96 -35.5 -179t-99 -146.5t-147.5 -99.5t-179 -36q-96 0 -179 36t-146.5 99.5t-99 146.5 t-35.5 179q0 78 25.5 148.5t68.5 128.5q-117 -59 -217.5 -152.5t-175.5 -214.5zM614 813q0 -23 16.5 -40t41.5 -17t41 17.5t16 39.5q0 78 53.5 131t130.5 53q25 0 41.5 17.5t16.5 40.5q0 25 -16.5 41t-41.5 16q-61 0 -116.5 -23.5t-95 -63.5t-63.5 -95.5t-24 -116.5z" />
-<glyph unicode="&#xf070;" d="M0 767q0 44 25 83q78 125 178 224.5t216 168t242.5 104t260.5 35.5q53 0 105 -7t103 -17l89 158q8 14 24 18q12 6 29 -2l133 -76q14 -8 19.5 -23.5t-3.5 -29.5l-774 -1383q-6 -14 -22 -18q-4 -2 -11 -2q-6 0 -18 4l-135 76q-14 8 -18.5 23.5t3.5 29.5l66 115 q-145 68 -269 178.5t-218 259.5q-25 37 -25 81zM154 768q82 -131 191.5 -229.5t240.5 -157.5l57 104q-86 63 -138 159.5t-52 213.5q0 78 25.5 148.5t68.5 130.5q-117 -61 -217.5 -153.5t-175.5 -215.5zM614 858q0 -23 16.5 -40t41.5 -17t41 17.5t16 39.5q0 78 53.5 131 t130.5 53q25 0 41.5 17.5t16.5 40.5q0 25 -16.5 41t-41.5 16q-61 0 -116.5 -23.5t-95 -63.5t-63.5 -95.5t-24 -116.5zM928 154l88 159q209 25 382 145t292 310q-109 170 -263 283l76 137q92 -66 172 -150t146 -188q23 -39 22.5 -83t-22.5 -81q-160 -254 -392.5 -392 t-500.5 -140zM1081 430l285 510q4 -20 6 -39.5t2 -42.5q0 -74 -21.5 -140.5t-60.5 -121.5t-93 -98t-118 -68z" />
-<glyph unicode="&#xf071;" horiz-adv-x="1775" d="M0 92q0 20 6 39t17 35l768 1331q16 27 39.5 48.5t56.5 21.5t56.5 -21.5t39.5 -48.5l770 -1331q10 -16 16.5 -34.5t6.5 -39.5q0 -49 -38 -70.5t-81 -21.5h-1538q-43 0 -81 21.5t-38 70.5zM770 1114l12 -633q0 -14 10.5 -24.5t24.5 -10.5h139q14 0 24.5 10.5t10.5 24.5 l15 633q0 14 -10.5 24.5t-24.5 10.5h-166q-16 0 -25.5 -10.5t-9.5 -24.5zM776 168q0 -16 10.5 -25.5t24.5 -9.5h154q35 0 34 35v147q0 16 -9 26.5t-25 10.5h-154q-14 0 -24.5 -10t-10.5 -27v-147z" />
-<glyph unicode="&#xf072;" horiz-adv-x="1597" d="M0 541v4q0 31 23 57l30 29q20 25 56 24q8 0 10 -2l280 -32q39 63 93.5 134.5t125.5 151.5l-583 457q-31 25 -31 59v4q0 31 23 58l57 57q27 23 57 23h13.5t13.5 -4l803 -293l151 149q70 70 161 110t167 40q72 0 109 -37q20 -18 28 -46t8 -63q0 -76 -38.5 -167t-110.5 -160 l-150 -152l293 -803q6 -12 6 -26q0 -33 -24 -58l-58 -57q-23 -25 -57 -25h-4q-35 4 -59 31l-455 586q-82 -72 -153.5 -126t-135.5 -93l35 -281v-10q0 -33 -22 -55l-31 -31q-23 -23 -58 -23h-4q-39 4 -59 31l-205 272l-274 207q-29 25 -31 60z" />
-<glyph unicode="&#xf073;" horiz-adv-x="1566" d="M0 117v1147q0 47 35 81.5t82 34.5h39v13q0 31 10 62.5t32.5 56t59.5 40t90 15.5t90 -15.5t59.5 -40t33 -56.5t10.5 -62v-13h49v13q0 31 10 62.5t32.5 56t59.5 40t90 15.5t90 -15.5t60.5 -40t34 -56.5t10.5 -62v-13h49v13q0 31 10.5 62.5t33 56t59 40t90.5 15.5 q53 0 90 -15.5t59.5 -40t32.5 -56.5t10 -62v-13h39q47 0 82 -34.5t35 -81.5v-1147q0 -47 -35 -82t-82 -35h-1333q-47 0 -82 35t-35 82zM158 158h282v250h-282v-250zM158 446h282v252h-282v-252zM158 737h282v252h-282v-252zM272 1165q0 -57 76 -57t76 57v228q0 57 -76 57 t-76 -57v-228zM479 158h285v250h-285v-250zM479 446h285v252h-285v-252zM479 737h285v252h-285v-252zM709 1165q0 -31 16 -44t57 -13t58.5 13.5t17.5 43.5v228q0 29 -17.5 43t-58.5 14t-57 -14.5t-16 -42.5v-228zM803 158h284v250h-284v-250zM803 446h284v252h-284v-252z M803 737h284v252h-284v-252zM1126 158h283v250h-283v-250zM1126 446h283v252h-283v-252zM1126 737h283v252h-283v-252zM1143 1165q0 -57 76 -57t75 57v228q0 57 -75 57q-76 0 -76 -57v-228z" />
-<glyph unicode="&#xf074;" d="M0 252v154q0 16 11.5 27t27.5 11h219q51 0 99.5 31t93.5 83t90 119.5t90 139.5q55 88 114.5 175t127 156t147.5 110.5t180 41.5h203v185q0 41 24.5 49t59.5 -21l334 -278q23 -18 22 -45q0 -29 -22 -47l-334 -277q-35 -29 -59.5 -20.5t-24.5 49.5v174h-203 q-53 0 -100 -31.5t-93 -84t-91.5 -120t-90.5 -139.5q-55 -88 -113.5 -174t-126 -154.5t-148.5 -110.5t-179 -42h-219q-16 0 -27.5 11.5t-11.5 27.5zM0 1108v154q0 39 39 38h219q68 0 127 -20t111.5 -56t97.5 -84t88 -104q-61 -90 -117 -178q-4 -8 -9 -14t-9 -15 q-70 102 -139.5 172t-149.5 70h-219q-16 0 -27.5 10.5t-11.5 26.5zM778 481q29 41 56.5 85t56.5 87q4 10 10 17.5t10 17.5q70 -102 139.5 -170.5t149.5 -68.5h203v190q0 41 24.5 49t59.5 -20l334 -277q23 -18 22 -47q0 -27 -22 -45l-334 -279q-35 -29 -59.5 -20.5 t-24.5 49.5v168h-203q-68 0 -127 20.5t-110.5 56.5t-97.5 84t-87 103z" />
-<glyph unicode="&#xf075;" horiz-adv-x="1916" d="M0 866q0 145 76 272.5t206 222.5t303.5 150.5t372.5 55.5t373 -55.5t304 -150.5t206 -222t76 -273q0 -145 -76 -272t-206 -222.5t-304 -150.5t-373 -55q-92 0 -180 12q-176 -139 -411 -192q-25 -4 -50.5 -8.5t-54.5 -8.5q-16 -2 -27.5 6.5t-15.5 24.5t5 26.5t20 20.5 q23 23 43 44.5t36.5 51t30 69.5t23.5 97q-174 98 -275.5 241.5t-101.5 315.5z" />
-<glyph unicode="&#xf076;" horiz-adv-x="1566" d="M0 621v288q0 16 11.5 27.5t27.5 11.5h391q16 0 28.5 -11t12.5 -28v-288q0 -29 22.5 -60t63.5 -58.5t98.5 -45t128.5 -17.5q70 0 128.5 17.5t99.5 45t63.5 58.5t22.5 60v288q0 39 39 39h391q16 0 27.5 -11t11.5 -28v-288q0 -135 -61.5 -254t-168 -207t-249 -139.5 t-304.5 -51.5q-164 0 -306 51.5t-248.5 139.5t-168 206.5t-61.5 254.5zM0 1106v391q0 16 11.5 27.5t27.5 11.5h391q16 0 28.5 -11.5t12.5 -27.5v-391q0 -16 -12.5 -27.5t-28.5 -11.5h-391q-16 0 -27.5 11.5t-11.5 27.5zM1098 1106v391q0 16 11 27.5t28 11.5h391 q16 0 27.5 -11.5t11.5 -27.5v-391q0 -16 -11.5 -27.5t-27.5 -11.5h-391q-39 0 -39 39z" />
-<glyph unicode="&#xf077;" horiz-adv-x="1536" d="M-1 355.5q-1 37.5 28 66.5l673 674q29 29 68 28.5t68 -28.5l671 -674q29 -29 29 -67t-29 -66l-100 -103q-29 -29 -68 -28.5t-67 28.5l-508 510l-500 -510q-29 -29 -67.5 -28.5t-67.5 28.5l-100 103q-29 29 -30 66.5z" />
-<glyph unicode="&#xf078;" horiz-adv-x="1536" d="M0 918.5q0 37.5 29 66.5l100 102q29 29 68 29t67 -29l508 -509l500 509q29 29 67.5 29t67.5 -29l100 -102q29 -29 30 -66.5t-28 -66.5l-673 -674q-29 -29 -68 -28.5t-68 28.5l-671 674q-29 29 -29 66.5z" />
-<glyph unicode="&#xf079;" horiz-adv-x="1916" d="M2.5 1038.5q-12.5 30.5 28.5 75.5l385 424q25 29 63 29q39 0 64 -29l385 -424q41 -45 28.5 -75.5t-67.5 -30.5h-250v-680h174q6 -10 12 -19.5t17 -19.5l252 -281h-695q-33 0 -56.5 23.5t-23.5 56.5v920h-249q-55 0 -67.5 30.5zM823 1526h695q33 0 56 -22.5t23 -57.5v-918 h250q55 0 67.5 -30.5t-28.5 -75.5l-385 -424q-25 -29 -63 -29q-39 0 -64 29l-385 424q-41 45 -28.5 75.5t67.5 30.5h250v678h-174q-6 10 -12.5 20.5t-14.5 20.5z" />
-<glyph unicode="&#xf07a;" d="M0 1421v76q0 39 39 39h231q16 0 38 -4t36 -8q6 -4 14.5 -14.5t15.5 -23.5t12 -26.5t7 -21.5l27 -125h1347q35 0 58 -27t16 -59l-108 -578q-6 -25 -26.5 -42t-49.5 -17h-1084l35 -168q4 -16 17.5 -26.5t29.5 -10.5h856q16 0 27.5 -11.5t11.5 -27.5v-78q0 -16 -11 -26.5 t-28 -10.5h-163h-652h-104q-16 0 -36.5 3.5t-35.5 9.5q-6 2 -14 13t-15.5 24.5t-12.5 27t-7 21.5l-215 1016q-4 16 -17.5 26t-29.5 10h-170q-39 0 -39 39zM582 115q0 47 33.5 81.5t80.5 34.5q49 0 83 -34.5t34 -81.5t-34 -81t-83 -34q-47 0 -80.5 34t-33.5 81zM1233 115 q0 47 33.5 81.5t81.5 34.5q47 0 80.5 -34.5t33.5 -81.5t-33.5 -81t-80.5 -34t-81 34t-34 81z" />
-<glyph unicode="&#xf07b;" d="M0 115v1306q0 47 34 81t81 34h692q47 0 81 -34t34 -81t33.5 -80.5t80.5 -33.5h693q47 0 80.5 -35t33.5 -82v-1075q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81z" />
-<glyph unicode="&#xf07c;" d="M0 379v1042q0 47 34 81t81 34h692q47 0 81 -34t34 -81t33.5 -80.5t80.5 -33.5h443q47 0 80.5 -35t33.5 -82v-221h-1228q-37 0 -72 -12.5t-65.5 -34t-53 -51t-35.5 -64.5zM43 0l246 760q6 23 30.5 39t47.5 16h1476l-260 -758q-6 -23 -30.5 -40t-47.5 -17h-1462z" />
-<glyph unicode="&#xf07d;" horiz-adv-x="798" d="M2 368.5q10 22.5 57 22.5h203v754h-203q-47 0 -57 22.5t25 57.5l319 319q23 23 53 23q31 0 54 -23l321 -319q33 -35 22.5 -57.5t-57.5 -22.5h-202v-754h202q47 0 57.5 -22.5t-24.5 -57.5l-319 -319q-23 -23 -54 -23t-53 23l-321 319q-33 35 -23 57.5z" />
-<glyph unicode="&#xf07e;" horiz-adv-x="1597" d="M0 729q0 31 23 53l319 322q35 33 57.5 23.5t22.5 -56.5v-205h754v203q0 47 22.5 57.5t56.5 -22.5l320 -322q23 -23 22 -53q0 -31 -22 -53l-320 -322q-35 -33 -57 -22.5t-22 57.5v203h-754v-203q0 -47 -22.5 -57t-57.5 24l-319 320q-23 23 -23 53z" />
-<glyph unicode="&#xf080;" d="M0 115v1306q0 47 35 81t82 34h1612q47 0 80.5 -34t33.5 -81v-1306q0 -47 -33.5 -81t-80.5 -34h-1612q-47 0 -82 34t-35 81zM154 154h1536v1228h-1536v-1228zM307 264v363h203v-363h-203zM649 264v776h201v-776h-201zM993 264v592h203v-592h-203zM1333 264v922h203v-922 h-203z" />
-<glyph unicode="&#xf081;" horiz-adv-x="1536" d="M0 193v1150q0 39 15.5 75t41 61.5t60.5 41t73 15.5h1153q80 0 136.5 -56.5t56.5 -136.5v-1150q0 -41 -15.5 -76t-41 -60.5t-61.5 -41t-75 -15.5h-1153q-39 0 -73.5 15.5t-60 41t-41 60.5t-15.5 76zM201 559q80 -111 198.5 -169t259.5 -58q96 0 184.5 26.5t160 73.5 t124 112.5t76.5 143.5q82 6 129 57q14 14 4 33q-8 18 -30 15h-4q23 23 30 45q8 20 -8 32q-14 14 -33 2q-8 -4 -29.5 -10t-45.5 -6q-4 0 -7.5 1t-7.5 1q0 2 -1 4t-1 4q-16 61 -57 110.5t-94 72.5q4 4 6 8t6 8q6 16 0 33q-2 6 -12.5 16t-34.5 8q-2 4 -6 8q-12 12 -25 9 q-25 -4 -49 -13l-2 2q-14 8 -31 -2q-59 -37 -98 -100t-68 -135q-35 31 -57 41q-61 35 -129 63.5t-154 61.5q-14 4 -24 -4q-10 -6 -15 -21q-2 -27 8.5 -58.5t38.5 -62.5q-25 -6 -20 -32q12 -68 68 -101l-13 -12q-14 -14 -4 -33q4 -12 26.5 -37.5t65.5 -38.5q-6 -12 -6 -22 t2 -14q6 -33 39 -50q-37 -25 -79 -34t-85 -5.5t-83 20.5t-70 46q-8 8 -19.5 8t-19.5 -8q-23 -18 -4 -39z" />
-<glyph unicode="&#xf082;" horiz-adv-x="1536" d="M2 193v1150q0 39 15.5 75t41 61.5t60.5 41t74 15.5h1153q80 0 136 -56.5t56 -136.5v-1150q0 -41 -15.5 -76t-41 -60.5t-61.5 -41t-74 -15.5h-486v643h172q12 0 21.5 8t9.5 21l12 168q0 14 -8 24q-10 10 -23 10h-184v74q0 41 10.5 54.5t53.5 13.5q25 0 55.5 -4t58.5 -11 q6 0 13.5 1.5t11.5 5.5q10 6 14 22l23 162q4 29 -25 35q-90 25 -188 24q-301 0 -301 -293v-84h-103q-33 0 -32 -32v-168q0 -12 9 -21.5t23 -9.5h103v-643h-393q-39 0 -74 15.5t-60.5 41t-41 60.5t-15.5 76z" />
-<glyph unicode="&#xf083;" d="M0 115v1306q0 47 34 81t81 34h1614q47 0 80.5 -34t33.5 -81v-1306q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM154 160h1536v114h-1536v-114zM154 1145h1536v231h-957l-14 -92h-565v-139zM266 1341h316v93h-316v-93zM557 709q0 -76 28.5 -142.5t78 -116 t116 -78t142.5 -28.5t142 28.5t115.5 78t78 116t28.5 142.5t-28.5 142.5t-78 115.5t-116 77.5t-141.5 28.5q-76 0 -142.5 -28.5t-116 -77.5t-78 -115.5t-28.5 -142.5zM672 709q0 51 19.5 97t53 80t79.5 53t98 19q51 0 97 -19t80 -53t53 -80t19 -97t-19 -97.5t-53 -80 t-80 -53t-97 -19.5t-97.5 19.5t-80 53t-53 79.5t-19.5 98zM743 709q0 -16 12.5 -28.5t28.5 -12.5q18 0 30.5 12.5t12.5 28.5q0 41 28 67.5t67 26.5v2q18 0 30.5 12t12.5 29q0 18 -12.5 30.5t-30.5 12.5q-74 0 -126.5 -53.5t-52.5 -126.5z" />
-<glyph unicode="&#xf084;" horiz-adv-x="1916" d="M0 803.5q-6 111.5 30 230.5t113 228q78 109 179.5 180t209 102t213 17.5t191.5 -74.5q76 -53 121 -134t59 -176.5t-4 -199t-68 -203.5l414 -297l101 139l-105 74q-14 10 -17 27.5t7 32.5l51 69q10 14 26.5 17.5t32.5 -7.5l344 -247q16 -10 18.5 -27.5t-7.5 -32.5l-49 -69 q-10 -14 -27.5 -17.5t-32.5 6.5l-102 76l-101 -139l248 -178q43 -31 52.5 -83t-21.5 -95q-33 -43 -84 -51.5t-94 22.5l-803 573q-78 -80 -170 -130t-186.5 -68.5t-185.5 -2t-167 71.5q-86 61 -133 157.5t-53 208zM230.5 766q7.5 -41 30 -78t58.5 -63q37 -27 79 -36t83 -2 t78 29.5t64 59.5q39 53 41 114.5t-27 114.5q59 -10 116.5 11.5t96.5 74.5q27 37 36 79t2 84t-29.5 79t-59.5 63q-37 27 -79 36t-84 2t-79 -29.5t-63 -59.5q-37 -53 -39 -114.5t26 -114.5q-59 10 -116.5 -12.5t-96.5 -75.5q-27 -37 -36 -79t-1.5 -83z" />
-<glyph unicode="&#xf085;" horiz-adv-x="1916" d="M0 801v180q0 8 22.5 15.5t52 11.5t56.5 7t37 3q12 49 37 88q-23 31 -45.5 61.5t-46.5 59.5l-4 10q0 6 20.5 29.5t47 50t50 47t29.5 20.5q2 0 20.5 -13t41 -30.5t43 -34t24.5 -20.5q43 25 90 37q0 8 3 37t7 57.5t10.5 52t16.5 23.5h178q8 0 15.5 -23.5t11.5 -52t7 -57.5 t5 -37q45 -12 86 -35q31 23 62.5 45.5t60.5 46.5l8 4q4 0 27.5 -21.5t49.5 -47t47.5 -49t21.5 -29.5q0 -4 -13.5 -22.5t-30 -40t-32 -41t-19.5 -25.5q23 -39 39 -92q10 -2 37 -5t55.5 -8.5t51 -11.5t22.5 -14v-178q0 -10 -22.5 -16.5t-51 -11.5t-56.5 -7t-36 -4 q-14 -43 -37 -88q23 -31 44.5 -60.5t48.5 -58.5l2 -10q0 -6 -20.5 -30t-47.5 -50.5t-50.5 -47t-29.5 -20.5q-2 0 -20.5 13.5t-41 31t-42 32.5t-25.5 20q-45 -23 -88 -37q0 -10 -3 -37t-8 -56.5t-12.5 -52t-15.5 -22.5h-178q-8 0 -15.5 22.5t-11.5 52t-7 56t-3 37.5 q-45 12 -88 37q-31 -23 -61.5 -46.5t-59.5 -48.5l-10 -2q-4 0 -27.5 20.5t-49 47t-46 50.5t-20.5 30q0 2 13 20.5t29.5 40t31 41t18.5 25.5q-23 43 -39 94q-10 2 -37 5t-55.5 7t-51 10.5t-22.5 14.5zM420 889q0 -37 14.5 -70t39 -57.5t58 -38.5t70.5 -14t70 14t57.5 38.5 t38.5 57.5t14 70t-14 70.5t-38.5 58t-57.5 39t-70 14.5q-76 0 -129 -53t-53 -129zM1114 373q0 6 13.5 13t31 14.5t33.5 12.5t22 7q4 23 9.5 39t15.5 37q-4 4 -13 17t-18.5 27.5t-16.5 28t-7 17.5t18.5 23.5t43 41t47 40t28.5 24.5l8 4q4 0 16.5 -8.5t25.5 -19.5t25.5 -21.5 t16.5 -14.5q35 12 76 19q2 6 9 21.5t16.5 30.5t17.5 27.5t14 12.5q4 0 34 -7t63.5 -18.5t60.5 -23.5t27 -23q0 -23 -5.5 -47t-9.5 -47q16 -12 28.5 -26.5t22.5 -30.5q25 2 49.5 3t47.5 1q8 0 18 -26.5t17.5 -60.5t12.5 -64.5t5 -39.5q0 -6 -13.5 -13t-29.5 -13t-32.5 -12.5 t-22.5 -8.5q-9 -38 -23 -71q2 -6 11.5 -18.5t18.5 -27t16 -27.5t7 -18q0 -4 -18.5 -23.5t-43 -41t-47 -40.5t-28.5 -26l-8 -4q-4 0 -16.5 8.5t-25.5 19.5t-25.5 21.5t-16.5 14.5q-37 -12 -78 -19q-2 -6 -9 -21.5t-15.5 -30.5t-16.5 -27.5t-14 -12.5t-35 7.5t-62.5 18.5 t-60 23.5t-26.5 22.5q0 23 5 47.5t9 46.5q-16 12 -28.5 26.5t-22.5 30.5q-23 -2 -45.5 -3t-44.5 -1h-14.5t-8.5 11q-2 8 -8 35.5t-13.5 58t-12.5 55.5t-5 29zM1192 1264q0 6 12.5 12t29.5 10t33.5 6t22.5 4q10 33 31 64q-2 4 -8 17.5t-12.5 27.5t-11.5 25.5t-5 15.5 q0 6 21.5 22.5t49 35t51.5 32.5t28 14t13 -9t20.5 -21.5t20.5 -23.5t13 -15q14 4 28.5 6t29.5 0h14q2 4 11 16.5t18.5 25.5t17.5 23.5t12 10.5t30 -11.5t55.5 -26t53 -28.5t23.5 -20q0 -4 -4 -15.5t-8 -26t-8.5 -27.5t-6.5 -17q20 -25 39 -60q51 -4 74 -7t29 -18.5t5 -52 t3 -106.5q0 -6 -12.5 -12.5t-28.5 -10.5t-32.5 -6t-22.5 -4q-13 -36 -31 -63q2 -4 8 -16.5t13.5 -27t12.5 -26.5t5 -14q0 -6 -22.5 -23.5t-50 -36t-51.5 -33t-26 -14.5q-4 0 -14 9.5t-21.5 21.5t-20.5 23.5t-13 15.5q-14 -4 -28.5 -6t-29.5 0h-14q-4 -4 -12 -16.5t-17.5 -26 t-18.5 -23.5t-13 -10t-30 11t-54.5 25.5t-52 29t-23.5 20.5q0 2 3 14.5t8 26.5t9 27.5t6 17.5q-23 23 -38 59q-53 2 -75 5t-29 18.5t-5 52.5t-4 109zM1397 367q0 -49 34.5 -85t84.5 -36q49 0 84.5 34.5t35.5 86.5q0 49 -34.5 83.5t-85.5 34.5q-49 0 -84 -34.5t-35 -83.5z M1446 1206q0 -47 31.5 -78.5t76.5 -31.5q47 0 79 31.5t32 76.5q0 47 -31.5 79t-77.5 32q-47 0 -78.5 -32t-31.5 -77z" />
-<glyph unicode="&#xf086;" horiz-adv-x="1916" d="M0 997q0 119 61.5 222.5t167 180.5t246.5 122t303 45t303.5 -45t247 -122t166.5 -180.5t61 -222.5q0 -117 -61 -221t-166.5 -181t-247 -122t-303.5 -45q-37 0 -73.5 3t-71.5 7q-147 -113 -336 -155q-20 -4 -40.5 -7.5t-43.5 -7.5q-12 -2 -21.5 6.5t-13.5 18.5v2 q-4 12 3 19.5t18 17.5q18 18 34.5 36.5t29.5 42t24.5 55.5t19.5 79q-141 78 -224 195.5t-83 256.5zM649 258q6 4 13.5 8t13.5 8q51 -6 102 -6q197 0 369 56.5t298 155t198.5 231.5t72.5 286q0 41 -6 84q96 -78 151.5 -175t55.5 -208q0 -139 -83 -256.5t-224 -195.5 q8 -47 19 -79t25.5 -55.5t30 -42t33.5 -36.5q10 -10 17.5 -18.5t3.5 -18.5v-2q-2 -12 -12.5 -19.5t-22.5 -5.5q-23 4 -43.5 7.5t-40.5 7.5q-96 20 -180 60t-156 95q-35 -4 -71.5 -7t-73.5 -3q-141 0 -265 35t-225 94z" />
-<glyph unicode="&#xf087;" horiz-adv-x="1597" d="M0 193v643q0 49 35 83.5t84 34.5h348q27 14 43 30.5t35 39.5q16 20 32.5 38.5t34.5 37.5q33 35 76 68.5t66 74.5q16 29 23 64.5t12.5 71.5t12.5 70t23.5 60.5t47 42t81.5 15.5q61 0 111.5 -25.5t85.5 -68.5t54.5 -98.5t19.5 -112.5q0 -59 -17.5 -112.5t-42.5 -107.5 q35 2 70 4.5t70 2.5q55 0 107 -10.5t93 -35t66.5 -67.5t25.5 -109q0 -29 -5 -57t-15 -57q18 -43 18 -90q0 -78 -41 -142q10 -59 -7 -118.5t-58 -104.5q-4 -84 -45 -139.5t-102.5 -89t-135 -47t-143.5 -13.5q-72 0 -144.5 10.5t-142.5 28.5q-70 20 -139.5 43t-142.5 23h-375 q-49 0 -84 34.5t-35 84.5zM236 276q0 -35 22 -57t57 -22q33 0 56.5 22.5t23.5 56.5q0 33 -23.5 56.5t-56.5 23.5q-35 0 -57 -23.5t-22 -56.5zM492 193q70 0 136 -16.5t133.5 -35t141.5 -35t160 -16.5q45 0 98 6t99.5 26.5t78 56.5t31.5 95q0 10 -1 18.5t-3 18.5 q35 16 53.5 53t18.5 74q0 39 -21 68q60 49 60 123q0 23 -12.5 43t-26.5 35q16 29 28.5 57.5t12.5 62.5q0 35 -17.5 55.5t-43 31t-56.5 12.5t-57 2q-45 0 -90.5 -3t-90.5 -3q-31 0 -61.5 3t-58.5 15q0 41 16 78t35.5 74.5t35 78.5t15.5 91q0 33 -10.5 65.5t-29.5 59t-47 44 t-65 17.5h-11t-11 -2q-8 -4 -9 -8t-3 -13q-12 -59 -22.5 -123.5t-39.5 -117.5q-29 -51 -74 -88t-86 -78q-29 -31 -49 -56.5t-41.5 -48t-48.5 -42t-65 -35.5h-2v-643z" />
-<glyph unicode="&#xf088;" horiz-adv-x="1597" d="M0 309q0 29 5 57.5t15 57.5q-18 43 -18 90q0 78 41 141q-10 59 7.5 119t58.5 105q4 84 45 139t102 89t135 47t144 13q72 0 144.5 -10t141.5 -29q70 -20 139.5 -42.5t143.5 -22.5h375q49 0 83.5 -35t34.5 -84v-643q0 -49 -34.5 -84t-83.5 -35h-349q-27 -14 -43 -30.5 t-34 -38.5q-16 -20 -32.5 -39t-35.5 -37q-33 -35 -76 -69t-65 -74q-25 -43 -31 -99.5t-18.5 -106.5t-44 -84t-107.5 -34q-61 0 -111.5 25.5t-85 68.5t-54 98.5t-19.5 112.5q0 59 17.5 112.5t41.5 106.5q-35 -2 -69.5 -4t-69.5 -2q-55 0 -107.5 10.5t-93.5 35t-66.5 67.5 t-25.5 108zM119 309q0 -35 17.5 -55.5t43 -30.5t56 -12t57.5 -2q47 0 91 3t89 3q31 0 61.5 -3t59.5 -15q0 -41 -16.5 -78t-36 -75t-34.5 -79t-15 -90q0 -33 10 -65.5t29.5 -59t47 -43t64.5 -16.5q4 0 11.5 -1t11.5 1q8 4 9 8l3 12q12 59 22.5 124t38.5 118q29 51 74 88 t86 78q29 31 49.5 56.5t42 48t47 42t66.5 35.5h2v643q-72 0 -137.5 16.5t-133 36t-141 36t-159.5 16.5q-45 0 -98.5 -7.5t-99.5 -27t-78 -56t-32 -96.5q0 -10 1 -18t3 -19q-35 -16 -53 -53t-18 -74q0 -39 20 -67q-59 -49 -59 -123q0 -23 12 -43.5t27 -34.5 q-16 -29 -28.5 -57.5t-12.5 -63.5zM1202 860q0 -33 23.5 -56.5t56.5 -23.5q35 0 57.5 23.5t22.5 56.5q0 35 -22.5 57.5t-57.5 22.5q-33 0 -56.5 -22.5t-23.5 -57.5z" />
-<glyph unicode="&#xf089;" horiz-adv-x="837" d="M1 959.5q9 27.5 54 33.5l506 74l227 459q23 41 50 41v-1348l-453 -237q-41 -23 -64.5 -6.5t-15.5 63.5l86 504l-364 356q-35 33 -26 60.5z" />
-<glyph unicode="&#xf08a;" horiz-adv-x="1802" d="M0 1073q0 137 43 231.5t112.5 153t156.5 84t177 25.5q63 0 125 -21.5t115 -53.5t97 -70t75 -68q31 31 76 68.5t98 69.5t113.5 53.5t126.5 21.5q88 0 175 -25.5t156.5 -84t112.5 -153t43 -231.5q0 -94 -34.5 -177t-76.5 -146.5t-79 -102.5t-39 -43l-615 -612 q-26 -23 -57 -23q-33 0 -55 23l-617 614q-4 2 -39.5 41t-77.5 102.5t-77 146.5t-35 177zM160 1073q0 -68 27.5 -131t61.5 -112.5t63 -79.5l28 -29l561 -559l561 559l29 29q29 30 62.5 79.5t61 113t27.5 130.5q0 104 -29.5 169t-77.5 101.5t-106.5 50t-113.5 13.5 q-53 0 -107.5 -25.5t-102.5 -61.5t-86 -74t-56 -60q-25 -31 -62 -31t-61 31q-18 23 -56.5 60.5t-86.5 73.5t-102.5 61.5t-105.5 25.5q-57 0 -115.5 -13.5t-106.5 -50t-77.5 -101t-29.5 -169.5z" />
-<glyph unicode="&#xf08b;" horiz-adv-x="1689" d="M0 307v922q0 63 24.5 118.5t66.5 97.5t97.5 66.5t118.5 24.5h461v-193h-461q-47 0 -80.5 -33.5t-33.5 -80.5v-922q0 -47 33.5 -80.5t80.5 -33.5h461v-193h-461q-63 0 -118.5 24.5t-97.5 66.5t-66.5 97.5t-24.5 118.5zM508 584v368q0 33 22.5 54.5t55.5 21.5h428v293 q0 41 39 57q39 14 65 -14l553 -553q18 -18 18.5 -44t-18.5 -42l-553 -553q-18 -18 -43 -18q-10 0 -22 4q-39 16 -39 57v291h-428q-33 0 -55.5 22.5t-22.5 55.5z" />
-<glyph unicode="&#xf08c;" horiz-adv-x="1536" d="M0 193v1150q0 39 15.5 75t41 61.5t60.5 41t76 15.5h1150q80 0 136.5 -56.5t56.5 -136.5v-1150q0 -41 -15.5 -76t-41 -60.5t-61.5 -41t-75 -15.5h-1150q-80 0 -136.5 56.5t-56.5 136.5zM207 1192q0 -57 40 -97t95 -40q57 0 97 40t40 97q0 55 -40 95t-97 40q-55 0 -95 -40 t-40 -95zM213 240q0 -10 9 -19.5t20 -9.5h200q12 0 20.5 9t8.5 20v706q0 29 -29 29h-200q-10 0 -19.5 -8.5t-9.5 -20.5v-706zM580 240q0 -10 9 -19.5t19 -9.5h201q12 0 20.5 9t8.5 20v383q0 68 26.5 113.5t102.5 45.5q59 0 79.5 -28.5t20.5 -81.5v-432q0 -10 8 -19.5 t21 -9.5h204q10 0 19.5 9t9.5 20v477q0 141 -81 208.5t-216 67.5q-55 0 -107.5 -15t-93.5 -56q0 16 -3 34.5t-25 18.5h-195q-10 0 -19 -8.5t-9 -20.5v-706z" />
-<glyph unicode="&#xf08d;" horiz-adv-x="1916" d="M2 950q8 82 45 172t100 176t139 147.5t152 92.5t145.5 30t121.5 -40q53 -41 73.5 -107.5t12.5 -148.5l301 -225q111 63 215 73t180 -47q55 -41 80.5 -108.5t23.5 -150.5t-30.5 -177t-83.5 -188l428 -410q25 -25 4 -53q-12 -16 -33 -17q-10 0 -18 6l-517 293 q-74 -80 -155.5 -135t-161.5 -80.5t-151.5 -19.5t-127.5 47q-76 55 -95 158.5t9 228.5l-303 223q-76 -33 -145.5 -32t-122.5 40q-51 39 -72.5 104.5t-13.5 147.5zM171 858.5q3 -16.5 15 -27.5q21 -14 50 -14q31 0 65.5 17.5t71.5 46t72.5 66.5t66.5 79q10 14 7 30.5 t-15 26.5q-14 10 -30.5 8.5t-27.5 -16.5q-78 -104 -138 -143t-72 -35q-14 10 -31 7t-27 -15q-10 -14 -7 -30.5zM465 754l364 -271q8 -8 23 -8q20 0 33 17q10 14 8 29.5t-16 25.5l-347 258q-16 -14 -32.5 -27.5t-32.5 -23.5zM829.5 239.5q1.5 -16.5 16.5 -26.5q29 -23 69 -23 q41 0 88.5 21.5t95.5 57.5t94 84.5t87 101.5q10 12 8 28.5t-16 26.5q-12 10 -28.5 8t-26.5 -16q-51 -68 -102.5 -116t-95.5 -75.5t-78 -36t-48 4.5q-14 10 -29.5 7t-25.5 -18q-10 -12 -8.5 -28.5z" />
-<glyph unicode="&#xf08e;" d="M0 307v922q0 63 24.5 119.5t65.5 97.5t97.5 65.5t119.5 24.5h582q-2 -14 -4 -27.5t-2 -29.5v-88q0 -23 6 -48h-582q-47 0 -80.5 -33.5t-33.5 -80.5v-922q0 -47 33.5 -80.5t80.5 -33.5h1075q47 0 81 33.5t34 80.5v340q41 -31 90 -49t103 -20v-271q0 -63 -25 -118.5 t-67 -97.5t-97 -66.5t-119 -24.5h-1075q-63 0 -119.5 24.5t-97.5 66.5t-65.5 97.5t-24.5 118.5zM692.5 522q-0.5 25 16.5 41l770 772h-269q-25 0 -41 16.5t-16 41.5v86q-2 23 15.5 40t41.5 17h576q23 0 40 -17.5t17 -39.5v-86v-490q0 -25 -17.5 -42t-39.5 -15h-86 q-25 0 -41.5 16.5t-16.5 40.5v268l-772 -770q-16 -16 -40.5 -16t-41.5 16l-79 80q-16 16 -16.5 41z" />
-<glyph unicode="&#xf090;" horiz-adv-x="1689" d="M0 584v368q0 33 22.5 54.5t55.5 21.5h428v293q0 41 37 57q39 14 67 -14l553 -553q16 -18 16.5 -44t-16.5 -42l-553 -553q-18 -18 -43 -18q-8 0 -24 4q-37 16 -37 57v291h-428q-33 0 -55.5 22.5t-22.5 55.5zM922 0v193h460q47 0 81 33.5t34 80.5v922q0 47 -33.5 80.5 t-81.5 33.5h-460v193h460q63 0 118.5 -24.5t97.5 -65.5t67 -97.5t25 -119.5v-922q0 -63 -25 -118.5t-67 -97.5t-97 -66.5t-119 -24.5h-460z" />
-<glyph unicode="&#xf091;" horiz-adv-x="1689" d="M0 1042v187q0 33 22.5 54.5t55.5 21.5h323q-2 12 -2 25v24v4q0 53 4.5 88t15.5 54.5t31.5 27.5t55.5 8h678q33 0 54.5 -8t32.5 -27.5t15 -54.5t4 -88v-25.5t-2 -27.5h324q33 0 55.5 -21.5t22.5 -54.5v-187q0 -63 -45.5 -130.5t-122 -128t-180 -106.5t-222.5 -65 q-51 -10 -91 -41.5t-40 -70.5q0 -35 17.5 -51.5t39 -31t40 -31.5t22.5 -52q4 -23 -2 -47q-4 -14 23.5 -23.5t67.5 -18.5t82 -22.5t64 -34.5q12 -10 19.5 -39.5t9.5 -64.5q2 -33 -6 -58.5t-29 -25.5h-985q-20 0 -28.5 25.5t-6.5 58.5q2 35 9.5 64.5t19.5 39.5q23 20 64 34 t80.5 23t68.5 18t25 24q-4 14 -4 25.5v21.5q2 35 21.5 52t42 31.5t39.5 31t17 51.5q0 39 -39.5 70.5t-93.5 41.5q-117 20 -220 66.5t-180 106t-122 127t-45 130.5zM154 1042q0 -20 23.5 -54t67.5 -70.5t106.5 -71.5t140.5 -60q-25 80 -44.5 175.5t-33.5 189.5h-260v-109z M1198 786q78 25 140.5 60t106.5 71.5t67.5 70.5t23.5 54v109h-262q-12 -94 -31.5 -189.5t-44.5 -175.5z" />
-<glyph unicode="&#xf092;" horiz-adv-x="1536" d="M0 193v1150q0 39 15.5 75t41 61.5t60.5 41t76 15.5h1150q80 0 136.5 -56.5t56.5 -136.5v-1150q0 -41 -15.5 -76t-41 -60.5t-61.5 -41t-75 -15.5h-337v25q0 39 2 97t-3.5 115.5t-24.5 104.5t-65 66q188 20 290 110t102 287q0 66 -22.5 128t-67.5 114q6 23 8 45t2 45 q0 41 -9.5 91t-31.5 85h-12q-43 2 -79 -8.5t-68 -27.5t-62.5 -37.5t-65.5 -39.5q-33 4 -65.5 6t-65.5 2t-65.5 -2t-65.5 -6q-35 18 -65.5 39t-62.5 38t-67.5 27.5t-79.5 8.5h-12q-23 -35 -32 -85t-9 -91q0 -23 2 -45.5t8 -44.5q-45 -51 -66.5 -114t-21.5 -128 q0 -193 95.5 -283t281.5 -112q-39 -16 -59.5 -50t-32.5 -75q-27 -8 -49.5 -15.5t-50.5 -7.5q-55 0 -88 28.5t-59.5 62.5t-56.5 62.5t-79 28.5q-4 0 -20.5 -2t-16.5 -12q0 -23 19.5 -32t31.5 -19q39 -31 56.5 -71t39 -76.5t62.5 -62.5t127 -26q35 0 80 11q0 -10 -1 -18.5 t-1 -16.5q0 -29 2 -59.5t-2 -59.5h-317q-80 0 -136.5 56.5t-56.5 136.5z" />
-<glyph unicode="&#xf093;" d="M0 39v614q0 16 11.5 27.5t27.5 11.5h229q16 0 27.5 -11t11.5 -28v-346h1229v346q0 16 11.5 27.5t27.5 11.5h229q16 0 27.5 -11t11.5 -28v-614q0 -39 -39 -39h-1765q-39 0 -39 39zM346 969.5q-6 15.5 16 38.5l504 505q23 23 55.5 23t55.5 -23l506 -505q23 -23 15.5 -38.5 t-38.5 -15.5h-307v-499q0 -33 -22.5 -55.5t-55.5 -22.5h-307q-33 0 -54.5 22.5t-21.5 55.5v499h-307q-33 0 -39 15.5z" />
-<glyph unicode="&#xf094;" horiz-adv-x="1609" d="M2 514q-2 35 1 68.5t7 74.5q4 35 7 72t10 66q14 66 30.5 128t44.5 117q20 41 45 81t54 79q10 14 21 24.5t24 20.5q23 23 45 45.5t49 42.5t57.5 36.5t65.5 33.5q33 16 67.5 29.5t71.5 27.5q70 29 156 51l2 2q45 12 85 17.5t79 5.5q59 0 112.5 -9t106.5 -20q41 -8 85 -15 t93 -7h2q29 0 62.5 5t66.5 5q25 0 45.5 -6t32.5 -25q23 -31 26 -71.5t-2 -75.5q-4 -35 -8 -71t2 -72q4 -23 11.5 -39.5t15.5 -36.5q8 -18 11 -40t7 -42q18 -104 15.5 -195.5t-23 -170.5t-56.5 -148.5t-81 -132.5q-37 -49 -79 -97.5t-92 -91.5t-110.5 -77.5t-134.5 -59.5 q-76 -27 -158.5 -34t-158.5 -11h-31q-104 0 -194.5 16.5t-192.5 16.5h-4q-35 0 -77 -10.5t-83 -12.5h-2q-37 0 -65.5 17.5t-42.5 42.5q-20 35 -17.5 72.5t12.5 68.5t10.5 66.5t-5 75.5t-12.5 81t-9 82z" />
-<glyph unicode="&#xf095;" horiz-adv-x="1597" d="M0 1169q0 55 14.5 114.5t43 114t68.5 98.5t93 69q12 -2 26.5 0t26.5 2q10 0 30 -1l40 -2t38.5 -4.5t27.5 -7.5q8 -6 15 -18t12 -26.5t9.5 -30t8.5 -25.5q6 -18 23.5 -65.5t35.5 -97.5t32.5 -93t14.5 -53q0 -37 -24.5 -68t-54 -57.5t-54.5 -50t-25 -45.5q0 -20 16.5 -49 t26.5 -46q84 -145 188.5 -248.5t252.5 -187.5q18 -10 45.5 -27.5t50.5 -17.5t52.5 32t60 70.5t62 70.5t58.5 32q10 0 51.5 -22.5t89.5 -50t93 -55.5t61 -36q16 -10 46 -25.5t40 -35.5q2 -6 2 -23q0 -16 -3 -36.5t-8 -43t-12 -43t-13 -35.5q-18 -39 -59.5 -71.5t-92.5 -55 t-104.5 -36t-92.5 -13.5q-80 0 -153.5 25.5t-145.5 54.5q-123 45 -232.5 118t-203.5 164t-175 196.5t-144 215.5q-25 41 -52.5 95.5t-51 112t-39 113.5t-15.5 105z" />
-<glyph unicode="&#xf096;" d="M0 307v922q0 63 24.5 118.5t66.5 97.5t97.5 66.5t118.5 24.5h1075q63 0 118.5 -24.5t97.5 -66.5t67 -97.5t25 -118.5v-922q0 -63 -25 -118.5t-67 -97.5t-97 -66.5t-119 -24.5h-1075q-63 0 -118.5 24.5t-97.5 66.5t-66.5 97.5t-24.5 118.5zM193 307q0 -47 33.5 -80.5 t80.5 -33.5h1075q47 0 81 33.5t34 80.5v922q0 47 -34 80.5t-81 33.5h-1075q-47 0 -80.5 -33.5t-33.5 -80.5v-922z" />
-<glyph unicode="&#xf097;" horiz-adv-x="1253" d="M0 84v1337q0 47 34 81t81 34h1024q47 0 80.5 -34t33.5 -81v-1337q0 -47 -33.5 -81t-80.5 -34t-80 33l-432 432l-432 -432q-33 -33 -80 -33t-81 34t-34 81zM158 186l469 471l469 -471v1194h-938v-1194z" />
-<glyph unicode="&#xf098;" horiz-adv-x="1536" d="M0 193v1150q0 39 15.5 75t41 61.5t60.5 41t76 15.5h1150q80 0 136.5 -56.5t56.5 -136.5v-1150q0 -41 -15.5 -76t-41 -60.5t-61.5 -41t-75 -15.5h-1150q-80 0 -136.5 56.5t-56.5 136.5zM193 1040q2 -35 15 -76.5t30 -78.5q16 -37 33.5 -72t33.5 -63q74 -129 176.5 -241 t225.5 -190q31 -18 67.5 -36.5t75.5 -32.5q41 -16 83 -31.5t81 -21.5q63 -10 112.5 2t90.5 34q27 12 57.5 33.5t44.5 52.5q4 8 9 27t9 38t6.5 37.5t-2.5 29.5q-4 12 -24.5 22t-36.5 21q-43 25 -71.5 41t-67.5 38q-16 10 -36 23.5t-38 13.5q-23 0 -46.5 -27.5t-37.5 -43.5 q-12 -14 -36.5 -43t-47.5 -31q-14 -2 -32.5 10t-37.5 23q-106 59 -182 136t-135 177q-10 16 -21.5 37.5t-7.5 38.5q2 18 24.5 33.5t35.5 29.5q14 16 31.5 37t19.5 43q4 16 -5 38t-16 42q-16 43 -28.5 76t-26.5 76q-6 16 -12 40.5t-21 30.5q-8 4 -26.5 7t-39 4.5t-37.5 0 t-24 -1.5h-8q-33 -16 -62.5 -45.5t-51 -69.5t-34 -88t-9.5 -100z" />
-<glyph unicode="&#xf099;" d="M0 399q0 20 13.5 33.5t33.5 13.5q14 0 31 -12q123 -109 287 -108q59 0 117.5 15t107.5 48q-29 16 -47.5 42t-18.5 58q0 23 8 39q-18 6 -44.5 20.5t-51 34t-41 43t-16.5 46.5q0 16 10 28.5t25 22.5q-41 25 -76 74t-35 98q0 33 33 43q-35 35 -55.5 81t-20.5 95 q0 23 9.5 41.5t37.5 18.5q18 0 84 -27t142.5 -60.5t146.5 -67.5t98 -48q25 -14 47.5 -31.5t44.5 -36.5q20 51 47 106.5t60 106.5t73 96t89 74q8 6 24 6q18 0 27 -8q16 6 41.5 13.5t42.5 7.5q29 0 43 -27q31 0 56.5 -15.5t25.5 -50.5q0 -31 -27 -53q96 -43 159.5 -125 t90.5 -182q6 -2 23 -2q47 0 88 16.5t57 16.5q18 0 31.5 -14.5t13.5 -32.5q0 -23 -19.5 -48.5t-33.5 -39.5q23 4 42 -7.5t19 -38.5q0 -29 -26.5 -50t-61.5 -37.5t-72.5 -25.5t-58.5 -11q-43 -139 -133 -246t-210 -178.5t-258 -109.5t-275 -38q-219 0 -415 93.5t-325 273.5 q-8 16 -8 26z" />
-<glyph unicode="&#xf09a;" horiz-adv-x="790" d="M0 862v203q0 16 11.5 28.5t27.5 12.5h125v102q0 358 366 359q123 0 232 -31q33 -10 29 -43l-27 -199q-4 -16 -16 -26q-16 -10 -31 -6q-35 8 -72.5 12t-66.5 4q-53 0 -65.5 -16.5t-12.5 -67.5v-88h223q14 0 29 -14q10 -10 10 -29l-17 -205q0 -16 -11 -25.5t-27 -9.5h-207 v-784q0 -16 -11.5 -27.5t-27.5 -11.5h-258q-16 0 -27.5 11.5t-11.5 27.5v784h-125q-16 0 -27.5 11.5t-11.5 27.5z" />
-<glyph unicode="&#xf09b;" horiz-adv-x="1847" d="M0 743q0 115 37 222.5t113 193.5l-3 4l3 2q-16 39 -21.5 81t-5.5 85q0 25 2 56.5t8 65.5t15.5 63.5t23.5 50.5h8q61 0 110.5 -12.5t94.5 -35t87 -52t91 -60.5q86 25 178.5 33t182.5 8t182 -8t180 -33q47 31 90 60.5t87 52t93.5 35t110.5 12.5h10q12 -20 21.5 -50 t15.5 -64t9 -65.5t3 -56.5q0 -43 -6 -85t-20 -81v-2l-2 -4q76 -86 112.5 -193.5t36.5 -222.5q0 -233 -66.5 -383.5t-188.5 -236.5t-292 -120t-376 -34q-207 0 -378 34t-292 120t-187.5 236.5t-66.5 383.5zM250 483q0 -145 64.5 -224t165 -116t219 -43t227.5 -6q74 0 152.5 2 t153.5 12.5t142.5 34t117.5 67.5t80 111.5t30 165.5q0 84 -27 147.5t-75 106.5t-114.5 64.5t-146.5 21.5q-78 0 -156.5 -7t-156.5 -7t-157 7t-157 7q-162 0 -262 -87t-100 -257zM494 524q0 66 26.5 113t65.5 47t66.5 -47t27.5 -113t-27.5 -112.5t-66.5 -46.5t-65.5 46.5 t-26.5 112.5zM795 258q-6 16 12 25q16 6 24 -13q27 -76 93 -75q31 0 56.5 20.5t35.5 54.5q8 20 26 13q16 -6 13 -25q-16 -47 -51 -75.5t-80 -28.5q-43 0 -78 28.5t-51 75.5zM864 369q0 -12 17.5 -21.5t42.5 -9.5t42 9.5t17 21.5t-17.5 21t-41.5 9q-25 0 -42.5 -9t-17.5 -21z M1167 524q0 -66 28 -112.5t67 -46.5t65.5 46.5t26.5 112.5t-27 113t-65 47q-39 0 -67 -47t-28 -113z" />
-<glyph unicode="&#xf09c;" horiz-adv-x="1880" d="M0 117v626q0 49 35 84t82 35h665v156q0 113 43 213t118 175t175 118t213 43t213.5 -43t175 -118t117.5 -175.5t43 -212.5v-152q0 -33 -22.5 -55.5t-55.5 -22.5h-80q-33 0 -55 23t-22 55v152q0 66 -25 123t-67 99t-99 66.5t-123 24.5t-122 -24.5t-99 -66.5t-67.5 -99.5 t-24.5 -122.5v-156h119q47 0 81.5 -34.5t34.5 -84.5v-626q0 -47 -34.5 -82t-81.5 -35h-1020q-47 0 -82 35t-35 82zM494 164h266l-66 285q29 18 47.5 48.5t18.5 65.5q0 55 -39 95t-94 40t-94 -40t-39 -95q0 -35 18 -65.5t47 -46.5z" />
-<glyph unicode="&#xf09d;" d="M0 154v1228q0 63 45 108.5t109 45.5h1536q63 0 108 -45t45 -109v-1228q0 -63 -45 -108.5t-108 -45.5h-1536q-63 0 -108.5 45t-45.5 109zM154 154h1536v575h-1536v-575zM154 1114h1536v268h-1536v-268zM260 250v115h307v-115h-307zM676 250v115h446v-115h-446z" />
-<glyph unicode="&#xf09e;" horiz-adv-x="1566" d="M0 236q0 49 18.5 91t50 74.5t75 51t92.5 18.5t91 -18.5t74.5 -51t51 -74.5t18.5 -91t-18.5 -92.5t-51 -75t-74.5 -50t-91 -18.5t-92.5 18.5t-75 50t-50 74.5t-18.5 93zM0 819v158q0 35 25 57q23 23 53 23q2 0 3 -1t3 -1q193 -14 362.5 -95t301 -212.5t212 -301.5 t95.5 -362q4 -35 -21 -59q-23 -25 -57 -25h-158q-29 0 -51.5 20.5t-26.5 51.5q-12 133 -68.5 249.5t-145.5 205.5t-205.5 145.5t-249.5 68.5q-31 4 -51.5 27t-20.5 51zM0 1331v158q0 33 25 55q23 23 53 23h4q301 -16 565 -137t463 -320t319.5 -463t137.5 -565q4 -31 -23 -57 q-23 -25 -55 -25h-158q-31 0 -53.5 21.5t-24.5 52.5q-14 238 -110 446.5t-255 367.5t-368 255t-446 110q-31 2 -52.5 24.5t-21.5 53.5z" />
-<glyph unicode="&#xf0a0;" d="M0 193v382q0 23 6 45.5t12 45.5l238 727q20 63 75.5 103t121.5 40h938q66 0 121 -40t75 -103l238 -727q6 -23 12 -45.5t6 -45.5v-382q0 -41 -15.5 -76t-41 -60.5t-61 -41t-74.5 -15.5h-1458q-80 0 -136.5 56.5t-56.5 136.5zM154 193q0 -16 11 -27.5t28 -11.5h1458 q16 0 27.5 11t11.5 28v382q0 16 -11.5 27.5t-27.5 11.5h-1458q-16 0 -27.5 -11t-11.5 -28v-382zM213 768h1417l-188 578q-4 16 -19.5 26t-31.5 10h-938q-16 0 -31.5 -10t-20.5 -26zM1057 385q0 39 27.5 66.5t68.5 27.5q39 0 66.5 -27.5t27.5 -66.5q0 -41 -27.5 -68.5 t-66.5 -27.5q-41 0 -68.5 27.5t-27.5 68.5zM1364 385q0 39 27.5 66.5t68.5 27.5q39 0 66.5 -27.5t27.5 -66.5q0 -41 -27.5 -68.5t-66.5 -27.5q-41 0 -68.5 27.5t-27.5 68.5z" />
-<glyph unicode="&#xf0a1;" d="M0 754v229q0 63 45 108.5t109 45.5h499q115 0 245 33.5t255 90t235.5 128t186.5 147.5q63 0 108.5 -45t45.5 -109v-368q49 -12 81.5 -52.5t32.5 -93.5t-32.5 -93t-81.5 -52v-369q0 -63 -45.5 -108t-108.5 -45q-68 68 -164 132t-206.5 117.5t-227.5 91.5t-227 50 q-43 -12 -70 -40t-37 -62.5t-2 -70.5t37 -65q-25 -41 -23 -75.5t20.5 -66.5t49.5 -61.5t66 -58.5q-20 -43 -69.5 -65.5t-106 -25.5t-110.5 10.5t-85 43.5q-18 61 -40 125t-36 130.5t-14 138t24 151.5h-200q-63 0 -108.5 45t-45.5 109zM807 741q102 -16 206.5 -49t205 -78 t191.5 -99t165 -112v930q-76 -59 -166 -113.5t-190.5 -98.5t-205 -77.5t-206.5 -48.5v-254z" />
-<glyph unicode="&#xf0a2;" horiz-adv-x="1759" d="M0 317q104 78 172 172.5t109 201t60 224t28 240.5q6 84 56 159t126 131t163 89t167 33q74 0 163 -33t165.5 -88t129 -129t52.5 -158q6 -121 27.5 -239.5t63.5 -227t109.5 -204t167.5 -171.5q-4 -70 -56 -114.5t-120 -44.5h-469q-18 -82 -82.5 -135.5t-150.5 -53.5 t-151.5 53.5t-84.5 135.5h-469q-68 0 -120 45t-56 114zM238 317h1284q-78 86 -129.5 183.5t-84 202t-50 214t-25.5 222.5q-4 55 -41 104t-89 86t-111.5 57.5t-110.5 20.5q-47 0 -107.5 -21.5t-114 -56.5t-91.5 -83t-40 -99q-6 -111 -23.5 -222.5t-51 -218t-87 -205 t-128.5 -184.5zM713 209q0 -70 49 -119t119 -49q18 0 18 20t-18 21q-53 0 -91 37t-38 90q0 20 -19 20q-20 0 -20 -20z" />
-<glyph unicode="&#xf0a3;" horiz-adv-x="1597" d="M0 573q0 33 23 56l143 139l-143 139q-23 23 -23 56q0 25 16.5 45t40.5 26l195 49q-6 18 -15.5 48t-18.5 61t-16 59.5t-7 46.5q0 31 21.5 52.5t51.5 21.5q18 0 47 -7t60 -16.5t60.5 -18.5t47.5 -15l49 194q6 25 27 41.5t45 16.5q35 0 53 -23l142 -143l139 143q23 23 53 23 q27 0 47.5 -15.5t26.5 -42.5l49 -194q18 6 48 15t60.5 18.5t59.5 16.5t47 7q29 0 51.5 -21.5t22.5 -52.5q0 -18 -7 -46.5t-16.5 -59.5t-18.5 -60.5t-15 -48.5l194 -49q25 -6 41 -26.5t16 -44.5q0 -33 -22 -56l-145 -139l145 -139q23 -23 22 -56q0 -25 -16 -45t-41 -26 l-194 -49q6 -18 15 -48t18.5 -61t16.5 -59.5t7 -46.5q0 -29 -21.5 -51.5t-52.5 -22.5q-18 0 -47 7t-59.5 16.5t-60 18.5t-48.5 15l-49 -194q-6 -25 -26.5 -41.5t-45.5 -16.5q-33 0 -55 23l-139 143l-142 -143q-18 -23 -53 -23q-25 0 -45 16.5t-27 41.5l-49 194 q-18 -6 -47.5 -15t-60.5 -18.5t-59.5 -16.5t-47.5 -7q-31 0 -52 22.5t-21 51.5q0 18 7 46.5t16 59.5t18.5 60.5t15.5 48.5l-195 49q-25 6 -41 26.5t-16 44.5z" />
-<glyph unicode="&#xf0a4;" horiz-adv-x="1916" d="M0 193v643q0 49 35 83.5t84 34.5h348q27 14 42 30.5t34 39.5q16 20 33.5 38.5t33.5 37.5q35 35 77 68.5t65 74.5q25 43 29.5 99.5t17 106.5t44 84t109.5 34q61 0 111.5 -25.5t85.5 -68.5t54.5 -98.5t19.5 -112.5q0 -53 -15.5 -104.5t-38.5 -98.5h134l376 -2 q49 0 93.5 -17.5t76 -49.5t50 -75t18.5 -94q0 -49 -18.5 -92t-50 -74.5t-75.5 -49t-94 -17.5h-200q-10 -59 -39 -107q10 -59 -7.5 -117.5t-56.5 -103.5q0 -76 -28.5 -131t-75.5 -90t-109.5 -52.5t-132.5 -17.5q-78 0 -148.5 16.5t-136 36t-128 36t-123.5 16.5h-375 q-49 0 -84 34.5t-35 84.5zM233 276q0 -35 22.5 -57t57.5 -22q33 0 56.5 22.5t23.5 56.5q0 33 -23.5 56.5t-56.5 23.5q-35 0 -57.5 -23.5t-22.5 -56.5zM489 193q70 0 136.5 -16.5t133 -35t133 -35t138.5 -16.5q43 0 84 8t72 27.5t50 52.5t19 82q0 14 -1 26.5t-3 24.5 q35 16 53.5 53t18.5 74q0 39 -20 68q59 49 59 123q0 23 -12.5 43.5t-26.5 34.5q90 0 178 1t178 1q51 0 84 30.5t33 81.5q0 53 -32.5 85t-84.5 32q-172 0 -340 1t-338 1q0 41 16.5 78t35 74.5t34 78.5t15.5 91q0 33 -10.5 65.5t-29 59t-46 44t-64.5 17.5h-11t-11 -2 q-8 -4 -9 -8t-3 -13q-12 -59 -22.5 -123.5t-39.5 -117.5q-29 -51 -73 -88t-85 -78q-29 -31 -49 -56.5t-41.5 -48t-48.5 -42t-65 -35.5h-5v-643z" />
-<glyph unicode="&#xf0a5;" horiz-adv-x="1916" d="M0 821q0 51 18.5 94t50 75t75.5 49.5t94 17.5l376 2h134q-23 47 -38.5 98t-15.5 105q0 57 19.5 112.5t54.5 98.5t85 68.5t112 25.5q78 0 109.5 -34t43.5 -84t17.5 -106.5t29.5 -99.5q23 -41 65 -74.5t77 -68.5q16 -18 33.5 -37t33.5 -39q18 -23 33.5 -39t42.5 -31h348 q49 0 84 -34.5t35 -83.5v-643q0 -49 -35 -84t-84 -35h-375q-61 0 -123.5 -16.5t-128 -36t-136 -36t-148.5 -16.5q-70 0 -132.5 17.5t-109.5 52.5t-75.5 90t-28.5 131q-39 45 -56.5 103.5t-7.5 117.5q-29 47 -39 107h-200q-49 0 -93.5 17.5t-76 49t-50 74.5t-18.5 92z M121 821q0 -51 32.5 -81.5t84.5 -30.5q90 0 178 -1t178 -1q-14 -14 -26.5 -35t-12.5 -43q0 -74 59 -123q-20 -29 -20 -68q0 -37 18.5 -73.5t53.5 -53.5q-2 -12 -3 -24.5t-1 -26.5q0 -49 19 -82t50 -52.5t72 -27.5t84 -8q70 0 137.5 16.5t134 35t133 35t135.5 16.5v643h-4 q-41 16 -66.5 35.5t-47 42t-42 48t-48.5 56.5q-41 41 -85 78t-73 88q-29 53 -39 117.5t-23 123.5q-2 8 -3 12.5t-9 8.5q-4 2 -11 2h-11q-37 0 -65 -17.5t-46 -44t-28.5 -59.5t-10.5 -65q0 -49 15.5 -90.5t34 -79t34.5 -74.5t16 -78q-170 0 -337.5 -1t-339.5 -1 q-51 0 -84 -32t-33 -85zM1524 276q0 -35 23.5 -57t56.5 -22q35 0 57 22.5t22 56.5q0 33 -22.5 56.5t-56.5 23.5q-33 0 -56.5 -23.5t-23.5 -56.5z" />
-<glyph unicode="&#xf0a6;" horiz-adv-x="1597" d="M0 602q0 61 25.5 111.5t68.5 85.5t98.5 54t112.5 19q53 0 104.5 -15t98.5 -38v133l2 377q0 49 17.5 93t49 76t74.5 50.5t94 18.5q49 0 92.5 -18.5t75 -50.5t49 -76t17.5 -93v-201q59 -10 106 -38q59 10 118 -7.5t104 -56.5q76 0 131 -28.5t90 -76t52 -109.5t17 -132 q0 -78 -16 -148.5t-35.5 -136t-36 -128t-16.5 -124.5v-374q0 -49 -35 -84t-84 -35h-643q-49 0 -84 34.5t-35 84.5v348q-14 27 -30.5 42t-38.5 34q-20 16 -39 33.5t-37 33.5q-35 35 -68.5 77t-74.5 64q-43 25 -99.5 30t-106.5 17.5t-84 44t-34 109.5zM120 591q-1 -7 1 -11 q4 -8 8 -9.5t12 -3.5q59 -12 124 -22t118 -39q51 -29 88 -73t78 -85q31 -29 56.5 -49t48 -41.5t42 -48.5t35.5 -66v-4h643q0 70 16.5 136.5t35 133t35 133t16.5 138.5q0 43 -8.5 84t-28 71.5t-52 50t-81.5 19.5q-14 0 -26.5 -1t-25.5 -3q-16 35 -53 53.5t-74 18.5 q-39 0 -67 -21q-49 59 -123 60q-23 0 -43.5 -12.5t-34.5 -26.5q0 90 -1 178t-1 178q0 51 -30.5 84t-82.5 33q-53 0 -84.5 -33t-31.5 -84q0 -172 -1 -340t-1 -338q-41 0 -78 16.5t-75 35t-79 34t-90 15.5q-33 0 -65.5 -10.5t-59 -29t-43 -46t-16.5 -64.5q0 -4 -1 -11z M1210 -37q0 -35 23.5 -57.5t56.5 -22.5q35 0 57.5 22.5t22.5 57.5q0 33 -22.5 56.5t-57.5 23.5q-33 0 -56.5 -23.5t-23.5 -56.5z" />
-<glyph unicode="&#xf0a7;" horiz-adv-x="1597" d="M0 584q0 78 34 109.5t84 44t106.5 17.5t99.5 29q41 23 74.5 65t68.5 77q18 16 36.5 33.5t39.5 33.5q23 18 39 33.5t30 42.5v348q0 49 35 84t84 35h643q49 0 84 -35t35 -84v-375q0 -61 16.5 -123.5t36 -128t35.5 -136t16 -148.5q0 -70 -17 -132.5t-52 -109.5t-90.5 -75.5 t-130.5 -28.5q-45 -39 -103.5 -56.5t-118.5 -7.5q-47 -29 -106 -39v-200q0 -49 -17.5 -93.5t-49 -76t-74.5 -50t-93 -18.5q-51 0 -94 18.5t-74.5 50t-49 75.5t-17.5 94l-2 376v134q-47 -23 -98.5 -38.5t-104.5 -15.5q-57 0 -112.5 19.5t-98.5 54.5t-68.5 85t-25.5 112z M120 595q1 -7 1 -11q0 -37 16.5 -64.5t43 -46t59 -29t65.5 -10.5q49 0 90 15.5t79 34t75 35t78 16.5q0 -170 1 -338t1 -340q0 -51 31.5 -84t84.5 -33q51 0 82 32.5t31 84.5q0 90 1 178t1 178q14 -14 34.5 -26.5t43.5 -12.5q74 0 123 59q29 -20 67 -20q37 0 74 18.5t53 53.5 q12 -2 24.5 -3t27.5 -1q49 0 81.5 19t52 50t28 72t8.5 84q0 70 -16.5 137.5t-35 134t-35 133t-16.5 136.5h-643v-5q-16 -41 -35.5 -66.5t-42 -47t-48 -42t-56.5 -48.5q-41 -41 -78 -85t-88 -73q-53 -29 -117.5 -39t-124.5 -23l-12 -3t-8 -9q-2 -4 -1 -11zM1210 1223 q0 -33 23.5 -56.5t56.5 -23.5q35 0 57.5 23.5t22.5 56.5q0 35 -22.5 57.5t-57.5 22.5q-33 0 -56.5 -23t-23.5 -57z" />
-<glyph unicode="&#xf0a8;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -29 20 -49l490 -490q20 -20 48.5 -20t49.5 20l74 74q20 20 20 48 t-20 50l-246 246h612q29 0 49.5 19.5t20.5 48.5v104q0 29 -20.5 49.5t-49.5 20.5h-612l246 246q20 20 20 48.5t-20 49.5l-74 74q-20 20 -48 20t-50 -20l-490 -490q-20 -20 -20 -49z" />
-<glyph unicode="&#xf0a9;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 717q0 -29 20.5 -49.5t48.5 -20.5h613l-246 -246q-20 -20 -20.5 -48.5 t20.5 -49.5l74 -74q20 -20 47.5 -20t50.5 20l489 490q20 20 20.5 49t-20.5 49l-489 490q-20 20 -49 20t-49 -20l-74 -74q-20 -20 -20.5 -48t20.5 -50l246 -246h-613q-29 0 -49 -19.5t-20 -48.5v-104z" />
-<glyph unicode="&#xf0aa;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -29 20 -49l74 -74q20 -20 48 -20t50 20l246 246v-612q0 -29 19.5 -49.5 t47.5 -20.5h105q29 0 49.5 20.5t20.5 49.5v612l245 -246q20 -20 49 -20t50 20l73 74q20 20 20.5 48t-20.5 50l-489 490q-20 20 -49 20t-49 -20l-490 -490q-20 -20 -20 -49z" />
-<glyph unicode="&#xf0ab;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 769q0 -28 20 -50l490 -490q20 -20 48.5 -20t49.5 20l489 490q20 20 20.5 49 t-20.5 49l-73 74q-20 20 -48 20t-51 -20l-245 -246v612q0 29 -19.5 49.5t-48.5 20.5h-104q-29 0 -49.5 -20.5t-20.5 -49.5v-612l-246 246q-20 20 -49 20t-49 -20l-74 -74q-20 -20 -20 -48z" />
-<glyph unicode="&#xf0ac;" horiz-adv-x="1597" d="M0 768q0 162 63.5 307.5t173 255t254 173t308.5 63.5q162 0 307 -63.5t254.5 -173t173 -255t63.5 -307.5q0 -164 -63.5 -308.5t-173 -254t-254.5 -173t-307 -63.5q-164 0 -308.5 63.5t-254 173t-173 254t-63.5 308.5zM186 1141h4q4 0 12.5 3t8.5 -9q0 -4 -3 -10.5 t11 -6.5q4 0 5 6t3 0l4 -16v-2q0 -4 -5 -6t-3 -6q4 -4 9.5 -4h9.5l4 2l2 2q0 -6 6 -8.5t10 -2.5h2q0 -2 -4 -4t0 -6l23 -4v-2l14 -29q0 -4 -3 -10t-7 -6t-3 3t1 7t-2 7t-15 3q-2 0 -5 -1t-1 -5l12 -26l3 -2l2 -2q-10 0 -13.5 -24t-3.5 -34l4 -18l2 -6v-4l-4 -19l29 -43h6 q2 -4 -2 -8t-2 -8l8 -8q0 -10 4 -14.5t13 -12.5q-2 -12 20.5 -22.5t28.5 -14.5q8 -23 20 -45.5t29 -38.5l2 -14q0 -2 -5 -4t-1 -6l16 -7q4 4 10.5 -8t10.5 -16l-2 -6l12 -17l6 -2l4 8q-4 10 -14 26.5t-20.5 32t-17.5 28t-7 14.5t-2 16t-4 17q6 -4 15 -7.5t15 -7.5 q4 -25 19.5 -40t27.5 -34q-4 -4 0 -5t7 -1q4 -4 4 -14q14 -16 36.5 -44t22.5 -44v-2l-4 -14q6 -16 20.5 -25.5t28.5 -15.5h4q20 -10 41 -21.5t43 -19.5l23 14q8 -2 17 -10t20.5 -18.5t27 -19.5t35.5 -11q14 10 14 -5v-4l25 -30l4 -15q10 -6 20.5 -15t16.5 -20h4 q10 0 16.5 -9t16.5 -9q6 0 6 6q0 14 2 18.5t5 5.5t6 1t3 4l-4 6q-4 0 -6 -5t-6 -1l-14 -8l-17 4l-24 41l8 57q2 4 -7.5 9t-5.5 10q-14 8 -34 8q-4 0 -20.5 -3t-16.5 3t3 16t7 21.5t6 19.5t2 10l13 27l-3 4l-16 4q-4 0 -13 -6t-17.5 -14.5t-14.5 -16.5t-6 -14l-45 -10 q-14 0 -23 12q-4 16 -17 35.5t-13 34.5q0 23 8 43t-6 43q2 0 5 2t1 6l12 14l2 2l2 -2q14 10 37 7t29 14l16 -13q4 -2 9 4.5t5 10.5l-8 4l39 10l2 -6l19 2l22 -14q4 0 8 5t9 1l20 -21q-4 -8 -1 -12t3 -8q0 -6 10.5 -27.5t18.5 -21.5q10 0 9 13t-1 17q0 20 -8 39t-15 39v6 q0 10 12.5 17.5t12.5 9.5q10 8 22.5 16t18.5 19l8 16v10h6t4 6q0 2 -3 3.5t-7 5.5q-4 2 -8 6l6 4q4 6 6 15t-2 16l15 8q-2 -6 4 -8t10 0l10 16q-4 10 -5 7t5 7q10 4 19.5 9.5t19.5 5.5q2 -2 4 -2q6 0 6 2q0 10 -4 12l12 25q14 0 21 12l18 2q6 2 6 8v2l35 10l4 11l-10 14 q2 0 2 4t-4 6t-7 4t-7 4l-4 -2l4 2h6h13t9 9q0 12 -14 12q-18 0 -41.5 -8.5t-32.5 -28.5l-14 -8l18 18l3 6q0 4 -9.5 5.5t-5.5 1.5q18 0 27.5 4t15.5 9t12.5 10t18.5 9q23 -4 44 -2t44 2q6 4 12 8.5t8 10.5l23 4q4 -4 12 2t8 10q0 10 -11 13t-11 14q0 2 1 6t-3 4 q-6 0 -19.5 -6t-19.5 -10q-4 -2 -5 1t-1 7l2 -2l8 4l23 8l4 4q0 6 -7.5 8t-11.5 2t-12 -3t-8 3l2 4q-12 10 -21.5 22.5t-9.5 16.5t1 8.5t-5 4.5q-4 0 -7 -1t-3 5q0 4 -5 17t-14 13l-8 -8q0 -6 -6 -9t-6 -7h-4l-21 -12q-2 4 -5 2t-7 -2h-2l-2 -2q8 0 7 9t-7 9l-16 -4 q-4 0 -4.5 1t2 4t4.5 7t0 8t-6.5 1t-4.5 1h6l5 5q2 2 -1.5 7t-5.5 7l-22 4l-14 12q-2 -2 -7.5 3t-9.5 7l-16 -6l-39 9q-4 0 -8 -2.5t-4 -6.5t4 -6t4 -6t3 -21.5t-5 -13.5l-10 -14q2 -4 7 -7t10 -7.5t9 -10.5t2 -18l-45 -31v-4q0 -8 4 -15t8 -18q10 -4 9.5 -7t-7 -6t-12.5 -6 t-6 -5t-4 -2h-8h-4q0 2 2 3t2 5l-19 12v-2l-8 16q4 10 1 14.5t-3 10.5q0 16 -14.5 16t-30.5 -4q4 2 -1 6.5t-7 4.5q-16 0 -38 14t-36 14q-6 0 -14 -2t-15 -4q4 2 5 10l-13 23l-2 2q-6 0 -14 -5t-8 9q0 2 2 4t0 4q-2 12 5 20.5t11 18.5q4 4 4 8t4 4q8 0 15.5 4.5t17.5 6.5 l2 6q0 4 -21.5 7t-21.5 7l2 2q20 -6 30.5 -7t17.5 2t16.5 8t29.5 14q0 4 -21.5 8t-27.5 8h12q4 0 10.5 -2t10.5 -4q0 -4 6 -5t10 -1l15 10v6l-4 6l22 4q-2 2 1 4t5 2q6 0 12.5 -6t8.5 -6l20 8q-2 2 5.5 3t4.5 6l-14 16q-2 0 -3 3t1 3q10 0 6 10q-8 4 -17 9.5t-20 5.5 q-4 0 -9 -2t-5 -7q0 -4 5 -4t7 -4q4 -4 -2 -4t-6 -2q-8 0 -15 -12t-18 -17q-4 0 -3 2.5t-1 4.5q-2 4 -7 5t-5 5t5 13t-13 9q-8 0 -11.5 -6t-7.5 -12l-22 25l-17 2q0 8 3.5 14t-9.5 16q-6 4 -11 7.5t-11 3.5q-2 0 -9.5 -4.5t-13.5 -8.5t-6 -8t10 -4h-2q-6 0 -6 -8 q0 -2 9.5 -5t13.5 -3q4 2 6 -1.5t6 -3.5l8 3v-5q-2 -2 -2 -4l2 -8l-20 -10q-2 -2 -4 -2t-5 -2q0 -6 5.5 -12.5t-11.5 -6.5l-6 4q0 8 -16.5 13.5t-40 7.5t-47 3t-35.5 1l-33 -10l8 -19q-4 0 -5 -3t3 -5q-4 4 -15 14.5t-15 10.5l-17 4q-35 -2 -78 -33t-84 -72t-75.5 -84 t-53.5 -71zM471 674h2h-2zM487 1413q14 2 25.5 8t24.5 6l6 -4q6 -2 11 -2t9 -4q8 2 17 -2l6 4v8l-2 5l6 -2q6 0 12 10l-2 4q-4 2 -10 4t-10 2t-16.5 -5t-28 -11.5t-29.5 -12.5t-19 -8zM918 86q0 -4 3 -9t3 -9q0 -5 -2 -7q115 20 217 74.5t182 140.5h-2q-8 -4 -14 0l-5 -4 l-12 4h-4l-4 -8l2 8q-6 8 -14 15l-4 2q-4 0 -4 -8q2 16 -8.5 27.5t-26.5 11.5q0 -2 -2 -2h-4l-5 4h7l4 12l-11 8l-2 -2q-14 2 -20 16l-4 2l-2 -2l-4 -2q-12 -4 -21 -8q-12 4 -18 10l-27 -2q0 6 -4 12.5t-12 6.5q-10 0 -20.5 -2t-14.5 -13q0 -4 2 -8t4 -6v-8l-2 -6l-4 -2h-2 l-6 16l6 10q-2 4 -2 10.5t-2 10.5l-2 4h-6l-15 -10h-8l-4 -4q-2 -2 -2 -4t-2 -3l-2 3h-8q-8 -8 -9 -19l3 -4l-9 -6l-2 -4l-6 -4q0 -2 -1 -2t-1 -2v-2v-9l-2 -2v4l-2 2q-2 12 -23 21h-6v-4q2 -6 8.5 -10.5t10.5 -8.5q-2 2 -5 1t-3 -3v-4l14 -20v-39l4 -10q-4 -16 -16 -27v2 l-4 -2l-3 -2l-2 -10l2 -2v-2l-4 4l-2 -13l-12 -4q-6 -4 -5 -11t-5 -11l2 -4l-6 -6q0 -4 -1 -6.5t-1 -6.5l2 -14l6 -4l4 4l2 6l2 -12q0 -4 -4 -8q-6 -4 -12 -9.5t-6 -15.5z" />
-<glyph unicode="&#xf0ad;" horiz-adv-x="1593" d="M8 242q0 33 12.5 62.5t34.5 51.5l609 609q-16 66 -17 122q0 98 38 186.5t102.5 153t151.5 102.5t185 38q94 0 181.5 -36t154.5 -101l-442 -162l-43 -236l184 -153l443 159q-10 -92 -50.5 -171t-104 -137t-145 -91t-174.5 -33q-61 0 -127 17l-606 -607q-47 -47 -112 -47 q-68 0 -115 47q-23 23 -50.5 47.5t-52 52t-41 58.5t-16.5 68zM203 242q0 -33 22.5 -56.5t57.5 -23.5q33 0 56 23.5t23 56.5q0 35 -23.5 57.5t-55.5 22.5q-35 0 -57.5 -23t-22.5 -57z" />
-<glyph unicode="&#xf0ae;" d="M0 76v217q0 31 22.5 53.5t53.5 22.5h1689q33 0 55.5 -22.5t22.5 -53.5v-217q0 -31 -22.5 -53.5t-55.5 -22.5h-1689q-31 0 -53.5 22.5t-22.5 53.5zM0 662v215q0 31 22.5 53t53.5 22h1689q33 0 55.5 -22.5t22.5 -52.5v-215q0 -33 -22.5 -55.5t-55.5 -22.5h-1689 q-31 0 -53.5 22.5t-22.5 55.5zM0 1243v217q0 31 22.5 53.5t53.5 22.5h1689q33 0 55.5 -22.5t22.5 -53.5v-217q0 -31 -22.5 -53.5t-55.5 -22.5h-1689q-31 0 -53.5 22.5t-22.5 53.5zM752 692h999v154h-999v-154zM1059 109h692v153h-692v-153zM1366 1274h385v153h-385v-153z " />
-<glyph unicode="&#xf0b0;" horiz-adv-x="1566" d="M0 1458q0 33 22.5 55.5t55.5 22.5h1411q33 0 55.5 -22.5t22.5 -55.5t-23 -55l-565 -565v-791q0 -33 -22.5 -55.5t-55.5 -22.5t-55 23l-236 235q-23 23 -22 56v555l-565 565q-23 23 -23 55z" />
-<glyph unicode="&#xf0b1;" d="M0 115v512h713q-2 -6 -2 -19v-153q0 -55 38.5 -95.5t96.5 -40.5h153q55 0 94.5 40t39.5 96v153q0 12 -3 19h713v-512q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM0 743v371q0 47 34 81t81 34h424v231q0 31 21.5 53.5t53.5 22.5h615q33 0 55.5 -22.5 t22.5 -53.5v-231h422q47 0 80.5 -34t33.5 -81v-371h-1843zM692 1229h461v153h-461v-153zM825 455v153q0 18 21 19h153q18 0 19 -19v-153q0 -18 -19 -19h-153q-20 0 -21 19z" />
-<glyph unicode="&#xf0b2;" horiz-adv-x="1536" d="M0 80v477q0 51 24.5 61.5t59.5 -24.5l162 -162l340 338l-338 338l-164 -164q-35 -35 -59.5 -25.5t-24.5 60.5v477q0 31 23 57q27 23 57 23h477q51 0 61.5 -24.5t-24.5 -59.5l-160 -158l338 -338l332 334l-162 162q-35 35 -24.5 59.5t61.5 24.5h477q33 0 55 -23 q25 -25 25 -57v-477q0 -51 -24.5 -61.5t-59.5 24.5l-162 162l-334 -334l338 -336l158 160q35 35 59.5 24.5t24.5 -61.5v-477q0 -35 -25 -55q-23 -25 -55 -25h-477q-51 0 -61.5 24.5t24.5 59.5l166 166l-336 336l-340 -340l162 -162q35 -35 24.5 -59.5t-61.5 -24.5h-477 q-31 0 -55 25q-25 20 -25 55z" />
-<glyph unicode="&#xf0c0;" horiz-adv-x="1880" d="M0 852v152q0 18 1 47.5t10 56.5t29.5 46.5t57.5 19.5q-45 29 -71.5 75.5t-26.5 104.5q0 43 16.5 82t46 68.5t68.5 46t82 16.5q45 0 84 -16.5t67.5 -46t46 -68.5t17.5 -82q0 -57 -27.5 -104t-72.5 -76q37 0 57.5 -19.5t29.5 -46.5t11 -56.5t2 -47.5v-152 q-14 -8 -23.5 -18.5t-27.5 -10.5h-328q-16 0 -26.5 10.5t-22.5 18.5zM158 57v387q0 78 45 138.5t98 109.5q10 10 25.5 21.5t33.5 15.5q18 6 41 7t45 5q61 10 130 19.5t135 19.5q-90 57 -144.5 151.5t-54.5 207.5q0 88 34 166.5t92 136t136 91.5t166 34t166 -34t136 -91.5 t92 -136t34 -166.5q0 -113 -54 -207t-145 -152q66 -10 134.5 -19t130.5 -20q23 -4 45 -5t41 -7q18 -4 33.5 -15.5t27.5 -21.5q66 -59 103.5 -116.5t37.5 -131.5v-387q-12 -6 -20 -13t-18.5 -14t-23.5 -14.5t-36 -15.5h-1368q-35 0 -54.5 22.5t-43.5 34.5zM1452 852v152 q0 18 2 47.5t11.5 56.5t30 46.5t56.5 19.5q-45 29 -72.5 75.5t-27.5 104.5q0 43 16.5 82t46 68.5t68.5 46t84 16.5q43 0 82 -16.5t68.5 -46t46 -68.5t16.5 -82q0 -57 -26.5 -104t-71.5 -76q37 0 56.5 -19.5t28.5 -46.5t11 -56.5t2 -47.5v-152q-12 -8 -22.5 -18.5 t-26.5 -10.5h-328q-18 0 -27.5 10.5t-23.5 18.5z" />
-<glyph unicode="&#xf0c1;" horiz-adv-x="1597" d="M0 1137q0 88 34 166.5t92 137t136 92.5t168 34q86 0 166 -33t139 -92q8 -8 21.5 -20.5t26 -25t21.5 -25.5t9 -25q0 -18 -12 -31q-6 -8 -25 -12q-47 -10 -88 -22.5t-86 -31.5q-4 -4 -16 -4t-25.5 10.5t-31 21.5t-42 21.5t-57.5 10.5q-35 0 -66.5 -13.5t-54 -37t-36 -54 t-13.5 -67.5q0 -41 17.5 -75t43 -63.5t56.5 -56.5t57 -53l180 -178q23 -25 54.5 -37t66.5 -12q43 0 73 16t46 16q12 0 39 -21.5t55.5 -49t50 -55t21.5 -42.5q0 -29 -36 -51t-83 -38.5t-94 -26t-72 -9.5q-86 0 -164.5 33t-140.5 92l-303 305q-61 59 -94 139.5t-33 166.5z M578 1010q0 29 35.5 51t82.5 38.5t94 26t72 9.5q86 0 166 -33t139 -92l303 -305q61 -59 94 -139.5t33 -166.5q0 -90 -33.5 -167.5t-92 -136t-137.5 -92.5t-167 -34q-86 0 -165.5 34t-139.5 93q-8 8 -21.5 19.5t-25.5 25t-21.5 26.5t-9.5 26q0 18 13 28q6 8 24 12 q47 10 88 22.5t86 33.5q12 4 17 4q12 0 25.5 -10.5t30.5 -21.5t41 -21.5t58 -10.5q72 0 121 49.5t49 120.5q0 41 -17 76t-44 63.5t-56.5 55.5t-56.5 53l-178 180q-53 49 -123 50q-43 0 -72.5 -17.5t-46.5 -17.5q-12 0 -38.5 21.5t-55 49t-50 56t-21.5 41.5z" />
-<glyph unicode="&#xf0c2;" horiz-adv-x="1880" d="M0 391q0 70 23.5 132.5t64.5 113.5t96.5 86t120.5 51q-33 41 -51 90t-18 105q0 66 24.5 123t66.5 99t99 66.5t123 24.5q113 0 196 -72q18 76 61.5 141.5t103 113.5t133 75t157.5 27q96 0 182 -37t149.5 -100.5t100.5 -149.5t37 -182q0 -57 -13 -109.5t-36 -99.5 q117 -59 188.5 -170t71.5 -248q0 -98 -37 -183t-101.5 -149.5t-149.5 -101.5t-183 -37h-1018q-80 0 -151.5 30.5t-125 84t-84 125t-30.5 151.5z" />
-<glyph unicode="&#xf0c3;" horiz-adv-x="1536" d="M16 72q-39 72 7 141l516 803v366h-78q-33 0 -54.5 22.5t-21.5 55.5q0 31 21.5 53.5t54.5 22.5h614q33 0 55.5 -22.5t22.5 -53.5q0 -33 -22.5 -55.5t-55.5 -22.5h-76v-368l514 -801q45 -70 7 -141q-18 -35 -51 -53.5t-70 -18.5h-1262q-37 0 -69.5 18.5t-51.5 53.5z M377 479h782l-313 490v413h-154v-411z" />
-<glyph unicode="&#xf0c4;" horiz-adv-x="1916" d="M0 180q0 86 44 168t113.5 146.5t154.5 103.5t169 39h13q18 25 57 60.5t63 58.5v12v12q-12 12 -28.5 27.5t-35 32t-33.5 32t-23 27.5q-84 -6 -172.5 33t-160 105.5t-116.5 150.5t-45 168q0 98 62.5 154.5t160.5 56.5q82 0 168 -39t155.5 -103.5t114 -146.5t44.5 -168 q0 -10 -1.5 -21.5t-3.5 -21.5l86 -76l34 17q34 18 90.5 46.5t129 65.5t148.5 76t150.5 77t135 69.5t102.5 52t52 26.5q16 8 37 9q14 0 39 -4.5t52.5 -9.5t53 -11t41.5 -8q29 -4 47.5 -26.5t18.5 -51.5q0 -43 -35 -66l-700 -485l700 -485q35 -23 35 -66q0 -29 -18.5 -51.5 t-47.5 -26.5q-16 -4 -41.5 -9t-53 -10t-52.5 -9.5t-39 -4.5q-10 0 -18.5 2.5t-18.5 6.5l-842 430l-86 -76q2 -10 3.5 -21.5t1.5 -21.5q0 -86 -44.5 -168t-114 -146.5t-155.5 -103.5t-168 -39q-98 0 -160.5 56.5t-62.5 154.5zM197 1358q0 -23 11 -49.5t27.5 -51t35 -45 t34.5 -34.5q35 -29 82 -54.5t94 -25.5q10 0 27 4v6q0 23 -11.5 48.5t-27.5 50t-34.5 46t-35.5 35.5q-35 29 -82 54.5t-94 25.5q-14 0 -26 -4v-6zM199 180q0 -6 2 -10q6 0 11 -1t11 -1q41 0 90 24.5t92.5 61.5t72 83t28.5 89q0 4 -1 5t-1 5q-8 2 -23 2q-41 0 -90 -24.5 t-92 -61.5t-71.5 -83t-28.5 -89zM586 616q53 -25 82 -69l108 96l45 -27l1016 703l-172 31l-975 -498l6 -127zM586 920l35 -35q12 29 36.5 41t53.5 26l-43 37q-29 -45 -82 -69zM741 768q0 35 23.5 57.5t58.5 22.5q33 0 55.5 -22.5t22.5 -57.5q0 -33 -22.5 -56.5t-57.5 -23.5 q-33 0 -56.5 23.5t-23.5 56.5zM903 575l762 -389l172 31l-727 502z" />
-<glyph unicode="&#xf0c5;" horiz-adv-x="1597" d="M0 385v707q0 33 16.5 70.5t38.5 60.5l258 258q23 23 61 39t70 16h463q31 0 53.5 -22.5t22.5 -53.5v-250q16 8 35.5 13.5t40.5 5.5h463q31 0 53 -22.5t22 -53.5v-1075q0 -33 -22.5 -55.5t-52.5 -22.5h-830q-33 0 -55.5 22.5t-22.5 55.5v229h-536q-33 0 -55.5 22.5 t-22.5 55.5zM154 461h460v293q0 45 10.5 87t45.5 74l159 162v305h-278v-321q0 -31 -22.5 -53.5t-53.5 -22.5h-321v-524zM186 1139h211v211zM768 154h676v921h-279v-321q0 -31 -22.5 -53.5t-52.5 -22.5h-322v-524zM801 831h211v211z" />
-<glyph unicode="&#xf0c6;" horiz-adv-x="1470" d="M0 1128q0 90 35 170t94 139.5t139 94.5t170 35q88 0 169 -34t143 -95l655 -656q12 -12 12 -28q0 -10 -11 -26.5t-26.5 -32t-32 -27t-26.5 -11.5q-16 0 -29 13l-655 655q-41 41 -92 61.5t-107 20.5q-57 0 -108 -21.5t-89 -59.5t-59.5 -89t-21.5 -109q0 -55 20.5 -106 t61.5 -92l745 -746q55 -55 133 -55q39 0 74 15.5t60.5 41t41 60.5t15.5 73q0 78 -56 134l-563 563q-29 29 -69 28q-41 0 -71 -29.5t-30 -70.5t29 -70l475 -475q12 -12 12 -28q0 -10 -11 -26.5t-26.5 -32t-32 -27t-26.5 -11.5q-16 0 -29 13l-475 473q-35 37 -55.5 85 t-20.5 99q0 53 20.5 100.5t55.5 83t83.5 56t101.5 20.5q51 0 99 -20.5t85 -55.5l561 -563q102 -102 102 -246q0 -74 -27.5 -137t-74.5 -110t-110.5 -75t-137.5 -28q-143 0 -246 103l-745 745q-61 61 -95 142t-34 169z" />
-<glyph unicode="&#xf0c7;" horiz-adv-x="1536" d="M0 154v1228q0 63 45 108.5t109 45.5h1075q63 0 108 -45l154 -154q45 -45 45 -108v-1075q0 -63 -45 -108.5t-109 -45.5h-1228q-63 0 -108.5 45t-45.5 109zM154 846h1075v536h-1075v-536zM846 922v385h190v-385h-190z" />
-<glyph unicode="&#xf0c8;" horiz-adv-x="1536" d="M0 193v1150q0 39 15.5 75t41 61.5t60.5 41t76 15.5h1150q80 0 136.5 -56.5t56.5 -136.5v-1150q0 -41 -15.5 -76t-41 -60.5t-61.5 -41t-75 -15.5h-1150q-80 0 -136.5 56.5t-56.5 136.5z" />
-<glyph unicode="&#xf0c9;" d="M0 78v215q0 31 22.5 53.5t55.5 22.5h1689q31 0 53.5 -22.5t22.5 -53.5v-215q0 -33 -22.5 -55.5t-53.5 -22.5h-1689q-33 0 -55.5 22.5t-22.5 55.5zM0 659v218q0 31 22.5 53t55.5 22h1689q31 0 53.5 -22.5t22.5 -52.5v-218q0 -31 -22.5 -53t-53.5 -22h-1689 q-33 0 -55.5 22.5t-22.5 52.5zM0 1243v217q0 31 22.5 53.5t55.5 22.5h1689q31 0 53.5 -22.5t22.5 -53.5v-217q0 -31 -22.5 -53.5t-53.5 -22.5h-1689q-33 0 -55.5 22.5t-22.5 53.5z" />
-<glyph unicode="&#xf0ca;" d="M0 211q0 39 15.5 75t41 61.5t60.5 40.5t76 15q39 0 73.5 -15t61 -40.5t42 -61.5t15.5 -75q0 -41 -15.5 -76t-42 -60.5t-61.5 -41t-73 -15.5q-80 0 -136.5 56.5t-56.5 136.5zM0 768q0 39 15.5 75t41 61.5t60.5 41t76 15.5q39 0 73.5 -15.5t61 -41t42 -61.5t15.5 -75 q0 -41 -15.5 -76t-42 -60.5t-61.5 -41t-73 -15.5q-41 0 -76 15.5t-60.5 41t-41 60.5t-15.5 76zM0 1325q0 39 15.5 75t41 61.5t60.5 41t76 15.5q39 0 73.5 -15.5t61 -41t42 -61.5t15.5 -75q0 -41 -15.5 -76t-42 -60.5t-61.5 -40.5t-73 -15q-41 0 -76 15t-60.5 40.5t-41 60.5 t-15.5 76zM522 154v114q0 33 22.5 55.5t55.5 22.5h1167q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -54.5t-53.5 -21.5h-1167q-33 0 -55.5 21.5t-22.5 54.5zM522 711v114q0 33 22.5 55.5t55.5 22.5h1167q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5 h-1167q-33 0 -55.5 22.5t-22.5 55.5zM522 1268v114q0 33 22.5 55.5t55.5 22.5h1167q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-1167q-33 0 -55.5 22.5t-22.5 55.5z" />
-<glyph unicode="&#xf0cb;" d="M0 594q0 55 30.5 90t68.5 61.5t69 50t31 56.5q0 29 -17.5 44t-46.5 15q-25 0 -44 -15t-34 -36l-53 37q23 39 58.5 60.5t78.5 21.5q55 0 96.5 -32t41.5 -91q0 -49 -30 -80t-67 -55.5t-67.5 -47t-30.5 -55.5h143v54h66v-115h-289q-2 10 -3 18.5t-1 18.5zM4 55l37 54 q6 -4 12 -10.5t15 -10.5q12 -8 29.5 -14t37.5 -6q35 0 55.5 18t20.5 47q0 31 -23.5 48.5t-58.5 17.5h-23l-16 37l90 108l6 6t7 6l4 6h-9q-4 -2 -14 -2h-92v-49h-66v111h263v-53l-97 -115q41 -6 74 -35t33 -82t-38 -95t-110 -42q-35 0 -60.5 9t-41.5 20q-25 14 -35 26z M14 1434l105 102h67v-360h93v-62h-259v62h93v258v8h-2q-10 -16 -22.5 -28.5t-29.5 -27.5zM522 154v114q0 33 22.5 55.5t55.5 22.5h1167q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -54.5t-53.5 -21.5h-1167q-33 0 -55.5 21.5t-22.5 54.5zM522 711v114q0 33 22.5 55.5 t55.5 22.5h1167q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-1167q-33 0 -55.5 22.5t-22.5 55.5zM522 1268v114q0 33 22.5 55.5t55.5 22.5h1167q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-1167q-33 0 -55.5 22.5t-22.5 55.5z " />
-<glyph unicode="&#xf0cc;" horiz-adv-x="1536" d="M0 692v152h1536v-152h-1536zM268 1114q0 117 44 202t118 141t170 83t203 27q88 0 176 -20.5t172 -49.5q20 -72 27.5 -156t7.5 -157q0 -10 -1 -22.5t-3 -24.5l-13 -2q-23 2 -50 2t-50 6q-18 59 -44 114.5t-62.5 98.5t-88 68.5t-122.5 25.5q-49 0 -94.5 -13.5t-80 -40 t-56 -66.5t-21.5 -93q0 -59 28.5 -102t75.5 -75t105.5 -54.5t118 -42t113.5 -39t93 -41.5h-696q-33 53 -51.5 110.5t-18.5 120.5zM285 310v63v45l110 2q31 -72 64 -134.5t76 -108.5t104 -71.5t152 -25.5q55 0 110 16.5t100.5 48t74 78.5t28.5 109q0 76 -49 128t-119 88 t-146.5 59.5t-132.5 45.5h617q8 -16 15 -38.5t10.5 -48t5.5 -50t2 -43.5q0 -131 -47.5 -226t-127 -156.5t-186 -91.5t-225.5 -30q-53 0 -93 4t-78 12.5t-78 20.5t-93 29q-12 4 -38 12t-36 16q-8 6 -12 50.5t-6 96.5t-2 100z" />
-<glyph unicode="&#xf0cd;" horiz-adv-x="1536" d="M0 0v154h1536v-154h-1536zM0 1532q10 2 19.5 2h19.5q72 0 140.5 -5t137.5 -5q100 0 200.5 2t199.5 6q-4 -16 -1 -36.5t3 -37.5v-8q-66 -10 -108 -7t-65.5 -5t-32.5 -39t-9 -109q0 -137 4 -272t10 -273q8 -147 88 -237t238 -90q125 0 207 29.5t131 88t69.5 146.5t20.5 203 q0 20 -2 65t-5 102.5t-8.5 119t-11.5 113.5t-13 89t-15 45q-33 33 -78 33q-6 0 -23.5 -1t-36 -1t-34 1t-21.5 3l2 82q82 4 163 -3t165 -7q39 0 77.5 5t79.5 5q4 0 9.5 -1t9.5 -1q2 -12 4 -24.5t2 -24.5t-4 -29q-23 -6 -52.5 -8t-58 -7t-48 -16.5t-19.5 -38.5q0 -14 1 -27 t3 -28q2 -6 5 -38.5t5 -79t4 -101.5t4 -103t3 -85t1 -50q0 -37 -2 -80.5t-8 -89t-17.5 -87.5t-29.5 -74q-41 -68 -104.5 -114t-137 -72.5t-153.5 -38t-154 -11.5q-72 0 -144.5 9.5t-140.5 35.5q-96 35 -151 88.5t-84 121t-36 148.5t-7 173v321v42t-1 62.5t-5 60.5t-10 38 q-12 16 -37 23.5t-53.5 10.5t-56.5 3t-44 4z" />
-<glyph unicode="&#xf0ce;" d="M0 115v1306q0 47 34 81t81 34h1614q47 0 80.5 -34t33.5 -81v-1306q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM154 154h460v335h-460v-335zM154 565h460v332h-460v-332zM154 975h460v332h-460v-332zM692 154h461v335h-461v-335zM692 565h461v332h-461v-332z M692 975h461v332h-461v-332zM1229 154h461v335h-461v-335zM1229 565h461v332h-461v-332zM1229 975h461v332h-461v-332z" />
-<glyph unicode="&#xf0d0;" d="M0 197q0 39 29 61l1579 1247q20 17 47 17q35 0 59 -29q10 -12 29.5 -33.5t38 -44t32 -47.5t13.5 -43q0 -39 -29 -61l-1579 -1248q-20 -16 -47 -16q-37 0 -59 29q-10 12 -30 33.5t-38 44t-31.5 47t-13.5 43.5zM256 922l117 36l37 117l34 -117l119 -36l-119 -37l-34 -117 l-37 117zM373 1229l235 71l72 236l72 -236l235 -71l-235 -72l-72 -235l-72 235zM942 1382l117 37l37 117l37 -117l116 -37l-116 -36l-37 -117l-37 117zM1286 1153l94 -121l369 291l-94 121zM1536 885l117 35l37 118l36 -118l117 -35l-117 -37l-36 -117l-37 117z" />
-<glyph unicode="&#xf0d1;" d="M0 358v404q0 25 6 51.5t17.5 53t27 51t31.5 40.5l223 222q16 16 41 31.5t51.5 26.5t53 17.5t51.5 6.5h80v198q0 31 22.5 53.5t52.5 22.5h1108q33 0 55.5 -22.5t22.5 -53.5v-1102q0 -31 -22.5 -53t-55.5 -22h-75v-7q0 -63 -25 -119.5t-65.5 -97.5t-97 -65.5t-120.5 -24.5 q-63 0 -119.5 24.5t-97.5 65.5t-65.5 97.5t-24.5 119.5v7h-307v-7q0 -63 -24.5 -119.5t-65.5 -97.5t-97.5 -65.5t-119.5 -24.5t-119.5 24.5t-97.5 65.5t-65.5 97.5t-24.5 119.5v7h-78q-31 0 -53.5 22.5t-22.5 52.5zM193 700h387v369h-78q-10 0 -31.5 -8t-30.5 -17l-223 -221 q-8 -8 -16 -29.5t-8 -31.5v-62zM346 276q0 -47 34 -80.5t81 -33.5t80.5 33.5t33.5 80.5t-33.5 81t-80.5 34t-81 -33.5t-34 -81.5zM1268 276q0 -47 33.5 -80.5t80.5 -33.5t81 33.5t34 80.5t-33.5 81t-81.5 34q-47 0 -80.5 -33.5t-33.5 -81.5z" />
-<glyph unicode="&#xf0d2;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5q-59 0 -115.5 8.5t-112.5 24.5q23 35 46.5 80t35.5 92l11 41q6 23 16 66t29 112q23 -41 76 -70.5t118 -29.5q96 0 176 41 t136.5 114.5t88 174t31.5 217.5q0 88 -35.5 171t-102.5 147.5t-160 102t-208 37.5q-141 0 -248.5 -46t-179 -118.5t-107.5 -160.5t-36 -174q0 -104 40 -187.5t124 -117.5q31 -10 41 20q2 10 7 31.5t9 32.5q4 16 1 23t-13 22q-53 59 -53 155q0 76 27.5 145.5t78.5 122t124 84 t163 31.5q80 0 142.5 -23.5t105.5 -64.5t64.5 -96t21.5 -121q0 -86 -18.5 -164t-52.5 -136t-80 -92t-103 -34q-31 0 -57.5 12.5t-45 34t-25.5 49t1 60.5q18 76 44.5 151.5t26.5 130.5q0 49 -26.5 84t-81.5 35q-66 0 -110 -58.5t-44 -146.5q-2 -23 2 -45q2 -18 7.5 -40.5 t15.5 -41.5q-33 -141 -53.5 -225t-30.5 -131q-12 -55 -18 -80q-10 -45 -13.5 -93t-1.5 -89q-104 45 -192 119.5t-151.5 169t-98.5 207t-35 235.5z" />
-<glyph unicode="&#xf0d3;" horiz-adv-x="1536" d="M0 193v1150q0 39 15.5 75t41 61.5t60.5 41t76 15.5h1150q80 0 136.5 -56.5t56.5 -136.5v-1150q0 -41 -15.5 -76t-41 -60.5t-61.5 -41t-75 -15.5h-829q27 39 59.5 95.5t49.5 117.5l10 41q6 25 17.5 68t29.5 112q20 -41 75.5 -70.5t121.5 -29.5q96 0 176 42t137 115.5 t89 175t32 220.5q0 90 -37 173t-103.5 147.5t-161 102.5t-208.5 38q-143 0 -251 -46.5t-180.5 -120t-108.5 -162.5t-36 -175q0 -104 40 -188.5t124 -118.5q14 -6 25.5 -1t15.5 21q4 10 8 31.5t8 34.5q8 23 -12 43q-23 29 -37 67.5t-14 91.5q0 76 27.5 145.5t79 123t124 85 t164.5 31.5q82 0 144.5 -23.5t105.5 -64.5t64.5 -97t21.5 -124q0 -86 -18.5 -164t-52 -136t-81 -93t-104.5 -35q-31 0 -57.5 12.5t-45 34t-25.5 49t1 60.5q18 78 45 154.5t27 131.5q0 49 -26.5 85t-82.5 36q-66 0 -110.5 -59t-44.5 -150q-2 -23 2 -45q4 -43 22 -84 q-35 -141 -54.5 -226t-29.5 -132q-12 -55 -18 -80q-16 -70 -14 -142.5t6 -117.5h-260q-80 0 -136.5 56.5t-56.5 136.5z" />
-<glyph unicode="&#xf0d4;" horiz-adv-x="1536" d="M0 342v438q55 -68 120.5 -96.5t153.5 -28.5h36t34 4q-8 -23 -14 -42t-6 -42q0 -41 18 -77.5t43 -67.5q-104 -4 -198.5 -22.5t-186.5 -65.5zM0 1214v129q0 39 15.5 75t41 61.5t60.5 41t76 15.5h1150q80 0 136.5 -56.5t56.5 -136.5v-1150q0 -41 -15.5 -76t-41 -60.5 t-61.5 -41t-75 -15.5h-583q23 39 36 81t13 89q0 70 -21.5 121t-54.5 90t-70.5 69.5t-70.5 57.5t-54.5 53.5t-21.5 59.5q0 49 34 81.5t76 72.5t75.5 99.5t33.5 163.5q0 78 -39 157t-106 122h131l133 76h-428q-129 0 -237.5 -36t-188.5 -143zM2 170q14 57 55 96t96.5 61.5 t115 33t110.5 10.5h31.5t31.5 -2q37 -27 78 -54.5t75 -61.5t55.5 -75t21.5 -92q0 -47 -19 -86h-460q-72 0 -126.5 49t-64.5 121zM102 1094q0 43 11.5 85t35 73.5t59.5 51t85 19.5q68 0 118 -41t81.5 -100.5t47 -128t15.5 -123.5q0 -45 -9 -84t-30.5 -68.5t-56.5 -47 t-84 -17.5q-66 0 -116 39t-85 96t-53.5 123.5t-18.5 122.5zM854 1051h223v-224h109v224h223v108h-223v225h-109v-225h-223v-108z" />
-<glyph unicode="&#xf0d5;" horiz-adv-x="1536" d="M0 262q0 100 56.5 166t139.5 105.5t179 56t174 18.5q-23 29 -41.5 64t-18.5 76q0 23 6.5 41t14.5 40q-16 -4 -33.5 -4h-34.5q-68 0 -130 23.5t-108 66.5t-74 101.5t-28 130.5q0 68 25 128t67 109.5t98 84t120 49.5q88 18 176 18h411l-127 -74h-127q72 -43 107 -120.5 t35 -157.5q0 -94 -33 -149.5t-73 -94.5t-72.5 -70.5t-32.5 -78.5q0 -45 44 -82t97 -82t97 -107.5t44 -161.5q0 -102 -50 -175.5t-126.5 -121t-170 -70t-181.5 -22.5q-66 0 -141.5 15.5t-140 50.5t-106.5 90t-42 137zM174 307q0 -68 35 -116t87 -78.5t114.5 -44t117.5 -13.5 q51 0 104.5 11.5t96.5 38t69.5 68.5t26.5 103q0 49 -21.5 89.5t-53 72t-70.5 59t-76 52.5q-14 2 -29.5 3t-29.5 1q-57 0 -123 -12.5t-121 -41t-91 -75.5t-36 -117zM276 1247q0 -53 17.5 -117.5t51.5 -120t82.5 -92t111.5 -36.5q96 0 134 61.5t38 147.5q0 53 -14.5 118.5 t-45 124t-78 97t-112.5 38.5q-47 0 -82 -18t-57.5 -49t-34 -71t-11.5 -83zM999 1206h215v-215h107v215h215v105h-215v217h-107v-217h-215v-105z" />
-<glyph unicode="&#xf0d6;" d="M0 78v1382q0 31 22.5 53.5t55.5 22.5h1689q31 0 53.5 -22.5t22.5 -53.5v-1382q0 -33 -22.5 -55.5t-53.5 -22.5h-1689q-33 0 -55.5 22.5t-22.5 55.5zM154 461q63 0 119.5 -24.5t97.5 -65.5t65.5 -97.5t24.5 -119.5h921q0 63 25 119.5t65.5 97.5t97 65.5t120.5 24.5v614 q-63 0 -120 24.5t-97.5 65.5t-65.5 97.5t-25 119.5h-921q0 -63 -24.5 -119.5t-65.5 -97.5t-97.5 -65.5t-119.5 -24.5v-614zM539 768q0 104 29.5 195.5t81.5 159t122 106.5t150 39t149.5 -39t121.5 -106.5t83 -159t31 -195.5t-31 -195.5t-83 -159t-122 -106.5t-149 -39 q-80 0 -150 39t-122 106.5t-81.5 159t-29.5 195.5zM692 969l94 -99l39 35q8 6 11.5 13.5t7.5 11.5q4 2 8 10h2v-16q0 -8 -1 -16.5t-1 -18.5v-283h-139v-129h438v129h-141v529h-140z" />
-<glyph unicode="&#xf0d7;" horiz-adv-x="1228" d="M6 967q20 47 72 47h1075q50 0 70 -47t-17 -84l-536 -537q-27 -23 -56 -22q-29 0 -55 22l-536 537q-37 37 -17 84z" />
-<glyph unicode="&#xf0d8;" horiz-adv-x="1228" d="M6 371q-20 47 17 84l536 536q23 23 55 23q31 0 54 -23l538 -536q37 -37 17 -84t-70 -47h-1077q-50 0 -70 47z" />
-<glyph unicode="&#xf0d9;" horiz-adv-x="692" d="M0 768q0 33 23 55l538 537q16 16 38 21t44 -5q23 -8 36 -27.5t13 -41.5v-1076q0 -25 -13 -43t-36 -28t-44 -5t-38 21l-538 539q-23 23 -23 53z" />
-<glyph unicode="&#xf0da;" horiz-adv-x="692" d="M0 231v1076q0 49 47 69t84 -16l539 -537q23 -23 22 -55q0 -31 -22 -53l-539 -539q-37 -37 -84 -16q-47 20 -47 71z" />
-<glyph unicode="&#xf0db;" d="M0 115v1306q0 47 34 81t81 34h1614q47 0 80.5 -34t33.5 -81v-1306q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM154 154h692v1153h-692v-1153zM999 154h691v1153h-691v-1153z" />
-<glyph unicode="&#xf0dc;" horiz-adv-x="1228" d="M0 584q0 31 22.5 54.5t53.5 23.5h1075q33 0 55.5 -23t22.5 -55q0 -33 -23 -56l-536 -536q-23 -23 -56 -23t-55 23l-536 536q-23 23 -23 56zM0 952q0 33 23 56l536 536q23 23 55 23q33 0 56 -23l536 -536q23 -23 23 -56q0 -31 -22.5 -54.5t-55.5 -23.5h-1075 q-31 0 -53.5 23t-22.5 55z" />
-<glyph unicode="&#xf0dd;" horiz-adv-x="1228" d="M0 584q0 31 22.5 54.5t53.5 23.5h1077q31 0 53.5 -23t22.5 -55q0 -33 -23 -56l-536 -536q-23 -23 -56 -23q-35 0 -53 23l-538 536q-23 23 -23 56z" />
-<glyph unicode="&#xf0de;" horiz-adv-x="1228" d="M0 952q0 33 23 56l536 536q23 23 55 23q33 0 56 -23l536 -536q23 -23 23 -56q0 -31 -22.5 -54.5t-53.5 -23.5h-1077q-31 0 -53.5 23t-22.5 55z" />
-<glyph unicode="&#xf0e0;" d="M0 115v905q10 -10 20.5 -17.5t20.5 -15.5q129 -96 256 -191.5t252 -195.5q39 -31 82 -62.5t89 -57t96.5 -41t103.5 -15.5q55 0 105 15.5t96 40t89 56t84 64.5q125 100 252 195.5t256 191.5q10 8 20.5 15.5t20.5 17.5v-905q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34 t-34 81zM2 1434q0 41 36 71.5t77 30.5h1614q41 0 76.5 -30.5t35.5 -71.5q0 -31 -18.5 -69t-45 -75t-57 -67.5t-53.5 -48.5q-123 -92 -241.5 -182.5t-239.5 -182.5q-25 -18 -57.5 -45t-67.5 -51.5t-71 -42t-66 -17.5h-2h-2q-31 0 -67 17.5t-70.5 42t-67.5 51.5t-58 45 q-121 92 -239.5 182t-241.5 183q-23 18 -53.5 48.5t-57 67.5t-45 75t-18.5 69z" />
-<glyph unicode="&#xf0e1;" horiz-adv-x="1576" d="M0 1376q0 39 15.5 74t41 60.5t60 41t73.5 15.5t74 -15.5t61.5 -41t41 -60.5t14.5 -74t-14.5 -73.5t-41 -60t-61.5 -41t-74 -15.5t-73.5 15.5t-60 41t-41 60t-15.5 73.5zM10 41v991q0 16 12.5 28.5t28.5 12.5h281q16 0 28.5 -12t12.5 -29v-991q0 -16 -12.5 -28.5 t-28.5 -12.5h-281q-16 0 -28.5 12.5t-12.5 28.5zM524 41v991q0 16 12.5 28.5t28.5 12.5h273q33 0 37 -25.5t4 -48.5q57 53 129.5 76t150.5 23q190 0 304 -95.5t114 -293.5v-668q0 -16 -12.5 -28.5t-28.5 -12.5h-289q-16 0 -27.5 12.5t-11.5 28.5v604q0 76 -27.5 116 t-111.5 40q-53 0 -89 -17.5t-56.5 -47t-28.5 -70.5t-8 -88v-537q0 -16 -12.5 -28.5t-28.5 -12.5h-281q-16 0 -28.5 12.5t-12.5 28.5z" />
-<glyph unicode="&#xf0e2;" horiz-adv-x="1591" d="M0 662q-4 39 35 45l158 20q12 2 30 -8q12 -8 15 -27q14 -102 63 -191t123 -153.5t169 -101.5t200 -37q115 0 217 44t178 120t120 177t44 218t-44 218t-120 177t-178.5 120t-216.5 44q-94 0 -181.5 -30.5t-158.5 -88.5l159 -159q35 -35 24 -58.5t-58 -23.5h-463 q-16 0 -29.5 6t-24.5 16q-25 25 -24 55v463q0 47 24.5 57.5t59.5 -24.5l162 -162q109 92 238.5 140.5t271.5 48.5q166 0 311 -62.5t253.5 -171t171 -254t62.5 -311.5t-62.5 -311.5t-171 -254t-254 -171t-310.5 -62.5q-150 0 -285 52.5t-241.5 145.5t-176.5 220t-90 275z" />
-<glyph unicode="&#xf0e3;" horiz-adv-x="1916" d="M0 651q0 49 37 91t88 42q35 0 68 -22q-20 14 -21 37q0 8 8 24l334 502q14 20 37 21q16 0 24 -9q-25 18 -40 43t-15 56q0 49 38 90t87 41q33 0 62 -19l514 -342q23 -16 36 -40.5t13 -53.5q0 -25 -10.5 -48.5t-26.5 -41.5t-40 -29.5t-48 -11.5q-33 0 -68 23q20 -14 21 -37 q0 -14 -8 -25l-105 -158l227 -151q14 4 28 6t28 2q53 0 94 -29l475 -315q37 -27 58.5 -65.5t21.5 -84.5q0 -74 -52.5 -126t-125.5 -52q-55 0 -99 31l-475 315q-70 47 -75 131l-228 152l-106 -158q-14 -20 -37 -20q-14 0 -25 8q55 -39 56 -100q0 -25 -10.5 -47.5t-28 -41 t-40 -29.5t-46.5 -11q-35 0 -62 18l-514 342q-49 33 -49 92z" />
-<glyph unicode="&#xf0e4;" horiz-adv-x="1880" d="M0 627q0 195 73.5 365.5t201.5 298.5t299 202t366 74t366 -74t299 -202t201.5 -299t73.5 -365q0 -78 -14.5 -159t-42 -159t-68.5 -149.5t-92 -130.5q-23 -29 -59 -29h-1328q-37 0 -59 29q-53 59 -93 130.5t-67.5 149.5t-42 159t-14.5 159zM158 627q0 -49 33.5 -83 t82.5 -34t83 34t34 83t-34.5 82.5t-82.5 33.5q-49 0 -82.5 -33.5t-33.5 -82.5zM352 1098q0 -49 35 -84t82 -35q49 0 84 35t35 84t-35 82.5t-84 33.5q-47 0 -82 -33.5t-35 -82.5zM743 313q0 -82 57.5 -139t139.5 -57t139.5 57t57.5 139q0 49 -26 91t-67 71q4 14 15.5 55 t27 95.5t33 114t30.5 110.5t22.5 88t9.5 43q0 23 -17.5 40t-40.5 17q-20 0 -35.5 -12t-21.5 -31l-135 -487q-39 -2 -74 -17.5t-60.5 -42t-40 -61.5t-14.5 -74zM823 1292q0 -49 34 -82.5t83 -33.5t83 33.5t34 82.5t-34 83t-83 34t-83 -34t-34 -83zM1292 1098q0 -49 35 -83 t84 -34t83 34t34 83t-34 82.5t-83 33.5t-84 -33.5t-35 -82.5zM1489 627q0 -49 34 -83t83 -34t82.5 34t33.5 83t-33.5 82.5t-82.5 33.5t-83 -33.5t-34 -82.5z" />
-<glyph unicode="&#xf0e5;" horiz-adv-x="1916" d="M0 866q0 123 49 225.5t130 183.5t184.5 139.5t209.5 92.5q94 31 190.5 45.5t194.5 14.5t194.5 -14.5t190.5 -45.5q106 -35 210 -93t185 -139t130 -183.5t49 -225.5t-49 -225t-130 -183t-184.5 -140.5t-210.5 -92.5q-94 -31 -190 -45t-195 -14q-92 0 -180 12 q-92 -72 -195.5 -119t-215.5 -73q-27 -4 -55.5 -10.5t-53.5 -6.5q-16 0 -27.5 11.5t-11.5 27.5q0 12 8.5 21.5t16.5 17.5q31 33 53 60.5t37.5 57.5t25 64.5t17.5 79.5q-78 43 -145.5 100.5t-120 128t-82 153.5t-29.5 175zM160 866q0 -72 24.5 -133t65.5 -113.5t94 -95.5 t111 -75q27 -14 51 -27.5t49 -28.5q-10 -47 -17.5 -94t-19.5 -94q59 29 111.5 64.5t105.5 76.5q55 -8 110.5 -14t112.5 -6q156 0 308 43q84 25 171 68.5t158.5 107t116.5 143.5t45 178t-45 178t-116.5 143.5t-158.5 107.5t-171 69q-152 43 -308 43q-158 0 -307 -43 q-84 -25 -171 -69t-158.5 -107.5t-116.5 -143t-45 -178.5z" />
-<glyph unicode="&#xf0e6;" horiz-adv-x="1916" d="M0 997q0 98 40 182.5t106.5 151t150.5 113.5t170 76q76 25 154.5 36t156.5 11q80 0 159 -11.5t155 -35.5q86 -29 170 -76t149.5 -113.5t105 -150.5t39.5 -183q0 -98 -39.5 -182t-105 -149.5t-149.5 -113.5t-170 -77q-154 -47 -314 -47q-37 0 -72.5 3t-72.5 7 q-150 -115 -336 -155q-20 -4 -43 -9.5t-45 -5.5q-12 0 -21.5 9.5t-9.5 23.5q0 10 7.5 17.5l13.5 13.5q51 51 72.5 96t35.5 117q-63 35 -118.5 82t-97.5 104t-66.5 124t-24.5 142zM160 997q0 -72 30.5 -127t77.5 -99t104.5 -78t112.5 -64l-20 -111q33 18 63.5 42t59.5 46 q47 -6 95 -12t95 -6q135 0 264 41q61 18 124 52t114 81t84 105.5t33 129.5q0 72 -33 131.5t-84 105.5t-113.5 80t-124.5 52q-63 23 -129.5 32t-134.5 9q-66 0 -132 -9t-132 -32q-59 -18 -122.5 -52t-115 -80t-84 -105.5t-32.5 -131.5zM649 258l27 16q51 -6 102 -6 q197 0 381 62q111 37 211 99.5t177 147.5t123 190t46 230q0 41 -6 84q90 -72 148.5 -169t58.5 -214q0 -76 -24.5 -142.5t-66.5 -123.5t-97.5 -104t-118.5 -82q14 -72 35.5 -117t72.5 -96q6 -6 13.5 -14.5t7.5 -18.5q0 -16 -10.5 -23.5t-24.5 -7.5q-20 0 -43 5.5t-41 9.5 q-186 41 -336 155q-37 -4 -72.5 -7t-72.5 -3q-129 0 -254 32t-236 97z" />
-<glyph unicode="&#xf0e7;" horiz-adv-x="933" d="M0 557q0 8 2 10l209 932q4 16 16.5 26.5t28.5 10.5h344q18 0 31.5 -13.5t13.5 -33.5q0 -6 -1 -10t-3 -11l-180 -524q12 4 47 13.5t81 21.5t95 26.5t93 25.5t75 18.5t37 7.5q18 0 31.5 -13.5t13.5 -33.5q0 -12 -2 -19l-565 -1306q-10 -29 -43 -29q-18 0 -33 13.5t-15 33.5 q0 6 3 10l204 914q-12 -4 -48 -14.5t-82 -22.5t-97 -26.5t-95 -27t-76 -19.5t-38 -7q-20 0 -33.5 14.5t-13.5 32.5z" />
-<glyph unicode="&#xf0e8;" d="M0 78v383q0 33 22.5 55.5t55.5 22.5h133v153q0 55 40 94t95 39h518v174h-135q-31 0 -53.5 21.5t-22.5 54.5v385q0 31 22.5 53.5t53.5 22.5h385q31 0 53.5 -22.5t22.5 -53.5v-385q0 -33 -22.5 -54.5t-53.5 -21.5h-135v-174h518q55 0 95 -38.5t40 -94.5v-153h135 q31 0 53.5 -22.5t22.5 -55.5v-383q0 -33 -22.5 -55.5t-53.5 -22.5h-385q-33 0 -54 22.5t-21 55.5v383q0 33 21.5 55.5t53.5 22.5h136v153q0 18 -21 19h-518v-172h135q31 0 53.5 -22.5t22.5 -55.5v-383q0 -33 -22.5 -55.5t-53.5 -22.5h-385q-31 0 -53.5 22.5t-22.5 55.5v383 q0 33 22.5 55.5t53.5 22.5h135v172h-518q-20 0 -20 -19v-153h135q33 0 55.5 -22.5t22.5 -55.5v-383q0 -33 -22.5 -55.5t-55.5 -22.5h-383q-33 0 -55.5 22.5t-22.5 55.5z" />
-<glyph unicode="&#xf0e9;" horiz-adv-x="1884" d="M0 770q31 137 109.5 253t193.5 204t257 141t302 66v53q0 35 23.5 57.5t56.5 22.5q35 0 57.5 -22.5t22.5 -57.5v-53q160 -12 303 -65.5t258 -141.5t192.5 -204t108.5 -253q6 -29 -20 -43q-10 -6 -19 -6q-20 0 -28 12q-98 102 -218 103q-86 0 -163.5 -54.5t-130.5 -152.5 q-10 -23 -35 -23t-35 23q-82 150 -213 194v-526q0 -68 -23.5 -127t-63.5 -104.5t-93.5 -71t-114.5 -25.5t-115.5 25.5t-94.5 71t-63.5 104.5t-23.5 127q0 35 23.5 57.5t56.5 22.5q35 0 57.5 -22.5t22.5 -57.5q0 -70 40 -119t97 -49q55 0 95 49t40 119v526 q-131 -45 -213 -194q-10 -23 -35 -23t-34 23q-53 98 -130 152.5t-163 54.5q-121 0 -217 -103q-12 -12 -31 -12q-10 0 -19 6q-25 14 -20 43z" />
-<glyph unicode="&#xf0ea;" horiz-adv-x="1597" d="M0 385v1075q0 31 22.5 53.5t55.5 22.5h921q31 0 53.5 -22.5t22.5 -53.5v-231h33h61q25 0 55.5 -13.5t49.5 -29.5l280 -281q18 -18 30.5 -49t12.5 -55v-62v-678q0 -27 -17 -44t-44 -17h-860q-27 0 -44.5 17.5t-17.5 43.5v246h-536q-33 0 -55.5 22.5t-22.5 55.5zM276 1321 q0 -12 9.5 -21.5t21.5 -9.5h461q12 0 21.5 9.5t9.5 21.5v61q0 12 -9.5 21.5t-21.5 9.5h-461q-12 0 -21.5 -9t-9.5 -22v-61zM737 123h738v555h-367q-27 0 -44 17.5t-17 43.5v367h-310v-983zM1169 801h306q0 2 -3.5 8t-5.5 10l-280 279q0 4 -6 4q-2 0 -2 1t-2 1t-3.5 1t-3.5 1 v-305z" />
-<glyph unicode="&#xf105;" horiz-adv-x="2048" />
-<glyph unicode="&#xf200;" horiz-adv-x="1536" d="M0 57v379q0 39 20.5 87t54.5 90t74.5 73t81.5 35q-35 -59 -34 -129q0 -59 16 -124t59 -106q-18 -37 -18 -75q0 -72 50 -122t122 -50q37 0 68.5 13t55 36.5t37 55.5t13.5 67t-13.5 66.5t-37 55t-55 38t-68.5 14.5q-18 0 -36.5 -5t-35.5 -14q-12 12 -20 31t-13.5 40.5 t-7.5 41.5t-2 37q0 47 28 86t62 67l142 21q-92 57 -142.5 150.5t-50.5 201.5q0 86 33 162t90 133t133 90t162 33t162 -33t133 -90t90 -133t33 -162q0 -109 -50.5 -202t-142.5 -150l158 -23q18 -16 34.5 -36.5t16.5 -47.5q0 -45 -18 -77q-59 33 -121 32q-45 0 -87 -17 t-77 -46q-6 2 -11 3t-11 1q-47 0 -82 -34t-35 -81t34.5 -80.5t82.5 -33.5q47 0 80.5 33.5t33.5 80.5q0 8 -2 15.5t-4 13.5q16 12 35.5 20.5t42.5 8.5q55 0 95 -39t40 -94q0 -23 -8 -41.5t-19 -34.5q-25 10 -45 10q-47 0 -81.5 -34t-34.5 -81t34.5 -80.5t81.5 -33.5t81 33.5 t34 80.5l-2 4q74 74 74 177q0 74 -41 137q45 70 45 157q0 31 -12 62q41 -4 83 -34t74.5 -72t53 -90t20.5 -89v-379q-10 -6 -22.5 -15t-25.5 -18.5t-26.5 -16.5t-21.5 -7h-1344q-35 0 -52 20.5t-44 36.5zM369 287q0 25 17 41t40 16q25 0 41 -16t16 -41q0 -23 -16 -40.5 t-41 -17.5q-23 0 -40 17.5t-17 40.5z" />
-<glyph unicode="&#xf201;" horiz-adv-x="1597" />
-<glyph unicode="&#xf202;" horiz-adv-x="1597" />
-<glyph unicode="&#xf203;" horiz-adv-x="1597" />
-<glyph unicode="&#xf204;" horiz-adv-x="1597" />
+<font id="fontawesomeregular" horiz-adv-x="1536" >
+<font-face units-per-em="1792" ascent="1536" descent="-256" />
+<missing-glyph horiz-adv-x="448" />
+<glyph unicode=" "  horiz-adv-x="448" />
+<glyph unicode="&#x09;" horiz-adv-x="448" />
+<glyph unicode="&#xa0;" horiz-adv-x="448" />
+<glyph unicode="&#xa8;" horiz-adv-x="1792" />
+<glyph unicode="&#xa9;" horiz-adv-x="1792" />
+<glyph unicode="&#xae;" horiz-adv-x="1792" />
+<glyph unicode="&#xb4;" horiz-adv-x="1792" />
+<glyph unicode="&#xc6;" horiz-adv-x="1792" />
+<glyph unicode="&#x2000;" horiz-adv-x="768" />
+<glyph unicode="&#x2001;" />
+<glyph unicode="&#x2002;" horiz-adv-x="768" />
+<glyph unicode="&#x2003;" />
+<glyph unicode="&#x2004;" horiz-adv-x="512" />
+<glyph unicode="&#x2005;" horiz-adv-x="384" />
+<glyph unicode="&#x2006;" horiz-adv-x="256" />
+<glyph unicode="&#x2007;" horiz-adv-x="256" />
+<glyph unicode="&#x2008;" horiz-adv-x="192" />
+<glyph unicode="&#x2009;" horiz-adv-x="307" />
+<glyph unicode="&#x200a;" horiz-adv-x="85" />
+<glyph unicode="&#x202f;" horiz-adv-x="307" />
+<glyph unicode="&#x205f;" horiz-adv-x="384" />
+<glyph unicode="&#x2122;" horiz-adv-x="1792" />
+<glyph unicode="&#x221e;" horiz-adv-x="1792" />
+<glyph unicode="&#x2260;" horiz-adv-x="1792" />
+<glyph unicode="&#xe000;" horiz-adv-x="500" d="M0 0z" />
+<glyph unicode="&#xf000;" horiz-adv-x="1792" d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
+<glyph unicode="&#xf001;" d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf002;" horiz-adv-x="1664" d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
+<glyph unicode="&#xf003;" horiz-adv-x="1792" d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+<glyph unicode="&#xf004;" horiz-adv-x="1792" d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 q-18 -18 -44 -18z" />
+<glyph unicode="&#xf005;" horiz-adv-x="1664" d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 l502 -73q56 -9 56 -46z" />
+<glyph unicode="&#xf006;" horiz-adv-x="1664" d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
+<glyph unicode="&#xf007;" horiz-adv-x="1408" d="M1408 131q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q9 0 42 -21.5t74.5 -48t108 -48t133.5 -21.5t133.5 21.5t108 48t74.5 48t42 21.5q61 0 111.5 -20t85.5 -53.5t62 -81 t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
+<glyph unicode="&#xf008;" horiz-adv-x="1920" d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+<glyph unicode="&#xf009;" horiz-adv-x="1664" d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
+<glyph unicode="&#xf00a;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf00b;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf00c;" horiz-adv-x="1792" d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
+<glyph unicode="&#xf00d;" horiz-adv-x="1408" d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
+<glyph unicode="&#xf00e;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
+<glyph unicode="&#xf010;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z " />
+<glyph unicode="&#xf011;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
+<glyph unicode="&#xf012;" horiz-adv-x="1792" d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf013;" d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
+<glyph unicode="&#xf014;" horiz-adv-x="1408" d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf015;" horiz-adv-x="1664" d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
+<glyph unicode="&#xf016;" horiz-adv-x="1280" d="M128 0h1024v768h-416q-40 0 -68 28t-28 68v416h-512v-1280zM768 896h376q-10 29 -22 41l-313 313q-12 12 -41 22v-376zM1280 864v-896q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h640q40 0 88 -20t76 -48l312 -312q28 -28 48 -76t20 -88z " />
+<glyph unicode="&#xf017;" d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf018;" horiz-adv-x="1920" d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
+<glyph unicode="&#xf019;" horiz-adv-x="1664" d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
+<glyph unicode="&#xf01a;" d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf01b;" d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf01c;" d="M1023 576h316q-1 3 -2.5 8t-2.5 8l-212 496h-708l-212 -496q-1 -2 -2.5 -8t-2.5 -8h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 q25 -61 25 -123z" />
+<glyph unicode="&#xf01d;" d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf01e;" d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q14 0 25 -9 l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
+<glyph unicode="&#xf021;" d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
+<glyph unicode="&#xf022;" horiz-adv-x="1792" d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 t47 -113z" />
+<glyph unicode="&#xf023;" horiz-adv-x="1152" d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf024;" horiz-adv-x="1792" d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf025;" horiz-adv-x="1664" d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
+<glyph unicode="&#xf026;" horiz-adv-x="768" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
+<glyph unicode="&#xf027;" horiz-adv-x="1152" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
+<glyph unicode="&#xf028;" horiz-adv-x="1664" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
+<glyph unicode="&#xf029;" horiz-adv-x="1408" d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
+<glyph unicode="&#xf02a;" horiz-adv-x="1792" d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
+<glyph unicode="&#xf02b;" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91z" />
+<glyph unicode="&#xf02c;" horiz-adv-x="1920" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
+<glyph unicode="&#xf02d;" horiz-adv-x="1664" d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
+<glyph unicode="&#xf02e;" horiz-adv-x="1280" d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
+<glyph unicode="&#xf02f;" horiz-adv-x="1664" d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
+<glyph unicode="&#xf030;" horiz-adv-x="1920" d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+<glyph unicode="&#xf031;" horiz-adv-x="1664" d="M725 977l-170 -450q73 -1 153.5 -2t119 -1.5t52.5 -0.5l29 2q-32 95 -92 241q-53 132 -92 211zM21 -128h-21l2 79q22 7 80 18q89 16 110 31q20 16 48 68l237 616l280 724h75h53l11 -21l205 -480q103 -242 124 -297q39 -102 96 -235q26 -58 65 -164q24 -67 65 -149 q22 -49 35 -57q22 -19 69 -23q47 -6 103 -27q6 -39 6 -57q0 -14 -1 -26q-80 0 -192 8q-93 8 -189 8q-79 0 -135 -2l-200 -11l-58 -2q0 45 4 78l131 28q56 13 68 23q12 12 12 27t-6 32l-47 114l-92 228l-450 2q-29 -65 -104 -274q-23 -64 -23 -84q0 -31 17 -43 q26 -21 103 -32q3 0 13.5 -2t30 -5t40.5 -6q1 -28 1 -58q0 -17 -2 -27q-66 0 -349 20l-48 -8q-81 -14 -167 -14z" />
+<glyph unicode="&#xf032;" horiz-adv-x="1408" d="M555 15q76 -32 140 -32q131 0 216 41t122 113q38 70 38 181q0 114 -41 180q-58 94 -141 126q-80 32 -247 32q-74 0 -101 -10v-144l-1 -173l3 -270q0 -15 12 -44zM541 761q43 -7 109 -7q175 0 264 65t89 224q0 112 -85 187q-84 75 -255 75q-52 0 -130 -13q0 -44 2 -77 q7 -122 6 -279l-1 -98q0 -43 1 -77zM0 -128l2 94q45 9 68 12q77 12 123 31q17 27 21 51q9 66 9 194l-2 497q-5 256 -9 404q-1 87 -11 109q-1 4 -12 12q-18 12 -69 15q-30 2 -114 13l-4 83l260 6l380 13l45 1q5 0 14 0.5t14 0.5q1 0 21.5 -0.5t40.5 -0.5h74q88 0 191 -27 q43 -13 96 -39q57 -29 102 -76q44 -47 65 -104t21 -122q0 -70 -32 -128t-95 -105q-26 -20 -150 -77q177 -41 267 -146q92 -106 92 -236q0 -76 -29 -161q-21 -62 -71 -117q-66 -72 -140 -108q-73 -36 -203 -60q-82 -15 -198 -11l-197 4q-84 2 -298 -11q-33 -3 -272 -11z" />
+<glyph unicode="&#xf033;" horiz-adv-x="1024" d="M0 -126l17 85q4 1 77 20q76 19 116 39q29 37 41 101l27 139l56 268l12 64q8 44 17 84.5t16 67t12.5 46.5t9 30.5t3.5 11.5l29 157l16 63l22 135l8 50v38q-41 22 -144 28q-28 2 -38 4l19 103l317 -14q39 -2 73 -2q66 0 214 9q33 2 68 4.5t36 2.5q-2 -19 -6 -38 q-7 -29 -13 -51q-55 -19 -109 -31q-64 -16 -101 -31q-12 -31 -24 -88q-9 -44 -13 -82q-44 -199 -66 -306l-61 -311l-38 -158l-43 -235l-12 -45q-2 -7 1 -27q64 -15 119 -21q36 -5 66 -10q-1 -29 -7 -58q-7 -31 -9 -41q-18 0 -23 -1q-24 -2 -42 -2q-9 0 -28 3q-19 4 -145 17 l-198 2q-41 1 -174 -11q-74 -7 -98 -9z" />
+<glyph unicode="&#xf034;" horiz-adv-x="1792" d="M81 1407l54 -27q20 -5 211 -5h130l19 3l115 1l215 -1h293l34 -2q14 -1 28 7t21 16l7 8l42 1q15 0 28 -1v-104.5t1 -131.5l1 -100l-1 -58q0 -32 -4 -51q-39 -15 -68 -18q-25 43 -54 128q-8 24 -15.5 62.5t-11.5 65.5t-6 29q-13 15 -27 19q-7 2 -42.5 2t-103.5 -1t-111 -1 q-34 0 -67 -5q-10 -97 -8 -136l1 -152v-332l3 -359l-1 -147q-1 -46 11 -85q49 -25 89 -32q2 0 18 -5t44 -13t43 -12q30 -8 50 -18q5 -45 5 -50q0 -10 -3 -29q-14 -1 -34 -1q-110 0 -187 10q-72 8 -238 8q-88 0 -233 -14q-48 -4 -70 -4q-2 22 -2 26l-1 26v9q21 33 79 49 q139 38 159 50q9 21 12 56q8 192 6 433l-5 428q-1 62 -0.5 118.5t0.5 102.5t-2 57t-6 15q-6 5 -14 6q-38 6 -148 6q-43 0 -100 -13.5t-73 -24.5q-13 -9 -22 -33t-22 -75t-24 -84q-6 -19 -19.5 -32t-20.5 -13q-44 27 -56 44v297v86zM1744 128q33 0 42 -18.5t-11 -44.5 l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80z" />
+<glyph unicode="&#xf035;" d="M81 1407l54 -27q20 -5 211 -5h130l19 3l115 1l446 -1h318l34 -2q14 -1 28 7t21 16l7 8l42 1q15 0 28 -1v-104.5t1 -131.5l1 -100l-1 -58q0 -32 -4 -51q-39 -15 -68 -18q-25 43 -54 128q-8 24 -15.5 62.5t-11.5 65.5t-6 29q-13 15 -27 19q-7 2 -58.5 2t-138.5 -1t-128 -1 q-94 0 -127 -5q-10 -97 -8 -136l1 -152v52l3 -359l-1 -147q-1 -46 11 -85q49 -25 89 -32q2 0 18 -5t44 -13t43 -12q30 -8 50 -18q5 -45 5 -50q0 -10 -3 -29q-14 -1 -34 -1q-110 0 -187 10q-72 8 -238 8q-82 0 -233 -13q-45 -5 -70 -5q-2 22 -2 26l-1 26v9q21 33 79 49 q139 38 159 50q9 21 12 56q6 137 6 433l-5 44q0 265 -2 278q-2 11 -6 15q-6 5 -14 6q-38 6 -148 6q-50 0 -168.5 -14t-132.5 -24q-13 -9 -22 -33t-22 -75t-24 -84q-6 -19 -19.5 -32t-20.5 -13q-44 27 -56 44v297v86zM1505 113q26 -20 26 -49t-26 -49l-162 -126 q-26 -20 -44.5 -11t-18.5 42v80h-1024v-80q0 -33 -18.5 -42t-44.5 11l-162 126q-26 20 -26 49t26 49l162 126q26 20 44.5 11t18.5 -42v-80h1024v80q0 33 18.5 42t44.5 -11z" />
+<glyph unicode="&#xf036;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf037;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf038;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf039;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf03a;" horiz-adv-x="1792" d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
+<glyph unicode="&#xf03b;" horiz-adv-x="1792" d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
+<glyph unicode="&#xf03c;" horiz-adv-x="1792" d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
+<glyph unicode="&#xf03d;" horiz-adv-x="1792" d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 q39 -17 39 -59z" />
+<glyph unicode="&#xf03e;" horiz-adv-x="1920" d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+<glyph unicode="&#xf040;" d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 q53 0 91 -38l235 -234q37 -39 37 -91z" />
+<glyph unicode="&#xf041;" horiz-adv-x="1024" d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
+<glyph unicode="&#xf042;" d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf043;" horiz-adv-x="1024" d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
+<glyph unicode="&#xf044;" horiz-adv-x="1792" d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
+<glyph unicode="&#xf045;" horiz-adv-x="1664" d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
+<glyph unicode="&#xf046;" horiz-adv-x="1664" d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 q24 -24 24 -57t-24 -57z" />
+<glyph unicode="&#xf047;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
+<glyph unicode="&#xf048;" horiz-adv-x="1024" d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19z" />
+<glyph unicode="&#xf049;" horiz-adv-x="1792" d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19l710 710 q19 19 32 13t13 -32v-710q4 11 13 19z" />
+<glyph unicode="&#xf04a;" horiz-adv-x="1664" d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-8 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q5 11 13 19z" />
+<glyph unicode="&#xf04b;" horiz-adv-x="1408" d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
+<glyph unicode="&#xf04c;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf04d;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf04e;" horiz-adv-x="1664" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
+<glyph unicode="&#xf050;" horiz-adv-x="1792" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19l-710 -710 q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
+<glyph unicode="&#xf051;" horiz-adv-x="1024" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19z" />
+<glyph unicode="&#xf052;" horiz-adv-x="1538" d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
+<glyph unicode="&#xf053;" horiz-adv-x="1152" d="M742 -37l-652 651q-37 37 -37 90.5t37 90.5l652 651q37 37 90.5 37t90.5 -37l75 -75q37 -37 37 -90.5t-37 -90.5l-486 -486l486 -485q37 -38 37 -91t-37 -90l-75 -75q-37 -37 -90.5 -37t-90.5 37z" />
+<glyph unicode="&#xf054;" horiz-adv-x="1152" d="M1099 704q0 -52 -37 -91l-652 -651q-37 -37 -90 -37t-90 37l-76 75q-37 39 -37 91q0 53 37 90l486 486l-486 485q-37 39 -37 91q0 53 37 90l76 75q36 38 90 38t90 -38l652 -651q37 -37 37 -90z" />
+<glyph unicode="&#xf055;" d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf056;" d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
+<glyph unicode="&#xf057;" d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf058;" d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf059;" d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf05a;" d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf05b;" d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf05c;" d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf05d;" d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf05e;" d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
+<glyph unicode="&#xf060;" d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 t32.5 -90.5z" />
+<glyph unicode="&#xf061;" d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
+<glyph unicode="&#xf062;" horiz-adv-x="1664" d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 q37 -39 37 -91z" />
+<glyph unicode="&#xf063;" horiz-adv-x="1664" d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
+<glyph unicode="&#xf064;" horiz-adv-x="1792" d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
+<glyph unicode="&#xf065;" d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf066;" d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
+<glyph unicode="&#xf067;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf068;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf069;" horiz-adv-x="1664" d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
+<glyph unicode="&#xf06a;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
+<glyph unicode="&#xf06b;" d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf06c;" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-30 0 -51 11t-31 24t-27 42q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
+<glyph unicode="&#xf06d;" horiz-adv-x="1408" d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
+<glyph unicode="&#xf06e;" horiz-adv-x="1792" d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
+<glyph unicode="&#xf070;" horiz-adv-x="1792" d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 q-105 -188 -315 -566t-316 -567l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z " />
+<glyph unicode="&#xf071;" horiz-adv-x="1792" d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
+<glyph unicode="&#xf072;" horiz-adv-x="1408" d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
+<glyph unicode="&#xf073;" horiz-adv-x="1664" d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+<glyph unicode="&#xf074;" horiz-adv-x="1792" d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
+<glyph unicode="&#xf075;" horiz-adv-x="1792" d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
+<glyph unicode="&#xf076;" d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf077;" horiz-adv-x="1664" d="M1611 320q0 -53 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-486 485l-486 -485q-36 -38 -90 -38t-90 38l-75 75q-38 36 -38 90q0 53 38 91l651 651q37 37 90 37q52 0 91 -37l650 -651q38 -38 38 -91z" />
+<glyph unicode="&#xf078;" horiz-adv-x="1664" d="M1611 832q0 -53 -37 -90l-651 -651q-38 -38 -91 -38q-54 0 -90 38l-651 651q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l486 -486l486 486q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
+<glyph unicode="&#xf079;" horiz-adv-x="1920" d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -11 7 -21 zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z " />
+<glyph unicode="&#xf07a;" horiz-adv-x="1664" d="M640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5 l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5 t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf07b;" horiz-adv-x="1664" d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
+<glyph unicode="&#xf07c;" horiz-adv-x="1920" d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
+<glyph unicode="&#xf07d;" horiz-adv-x="768" d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
+<glyph unicode="&#xf07e;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
+<glyph unicode="&#xf080;" horiz-adv-x="1920" d="M512 512v-384h-256v384h256zM896 1024v-896h-256v896h256zM1280 768v-640h-256v640h256zM1664 1152v-1024h-256v1024h256zM1792 32v1216q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5z M1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+<glyph unicode="&#xf081;" d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf082;" d="M1307 618l23 219h-198v109q0 49 15.5 68.5t71.5 19.5h110v219h-175q-152 0 -218 -72t-66 -213v-131h-131v-219h131v-635h262v635h175zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960 q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf083;" horiz-adv-x="1792" d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
+<glyph unicode="&#xf084;" horiz-adv-x="1792" d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
+<glyph unicode="&#xf085;" horiz-adv-x="1920" d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -10 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -9 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
+<glyph unicode="&#xf086;" horiz-adv-x="1792" d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
+<glyph unicode="&#xf087;" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
+<glyph unicode="&#xf088;" d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 32 18 69t-17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -74 49 -163z" />
+<glyph unicode="&#xf089;" horiz-adv-x="896" d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
+<glyph unicode="&#xf08a;" horiz-adv-x="1792" d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 q224 0 351 -124t127 -344z" />
+<glyph unicode="&#xf08b;" horiz-adv-x="1664" d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
+<glyph unicode="&#xf08c;" d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf08d;" horiz-adv-x="1152" d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
+<glyph unicode="&#xf08e;" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf090;" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf091;" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf092;" d="M394 184q-8 -9 -20 3q-13 11 -4 19q8 9 20 -3q12 -11 4 -19zM352 245q9 -12 0 -19q-8 -6 -17 7t0 18q9 7 17 -6zM291 305q-5 -7 -13 -2q-10 5 -7 12q3 5 13 2q10 -5 7 -12zM322 271q-6 -7 -16 3q-9 11 -2 16q6 6 16 -3q9 -11 2 -16zM451 159q-4 -12 -19 -6q-17 4 -13 15 t19 7q16 -5 13 -16zM514 154q0 -11 -16 -11q-17 -2 -17 11q0 11 16 11q17 2 17 -11zM572 164q2 -10 -14 -14t-18 8t14 15q16 2 18 -9zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-224q-16 0 -24.5 1t-19.5 5t-16 14.5t-5 27.5v239q0 97 -52 142q57 6 102.5 18t94 39 t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103 q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -103t0.5 -68q0 -22 -11 -33.5t-22 -13t-33 -1.5 h-224q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf093;" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
+<glyph unicode="&#xf094;" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" />
+<glyph unicode="&#xf095;" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
+<glyph unicode="&#xf096;" horiz-adv-x="1408" d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf097;" horiz-adv-x="1280" d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
+<glyph unicode="&#xf098;" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf099;" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
+<glyph unicode="&#xf09a;" horiz-adv-x="768" d="M511 980h257l-30 -284h-227v-824h-341v824h-170v284h170v171q0 182 86 275.5t283 93.5h227v-284h-142q-39 0 -62.5 -6.5t-34 -23.5t-13.5 -34.5t-3 -49.5v-142z" />
+<glyph unicode="&#xf09b;" d="M1536 640q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -39.5 7t-12.5 30v211q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5 q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23 q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -89t0.5 -54q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf09c;" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" />
+<glyph unicode="&#xf09d;" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
+<glyph unicode="&#xf09e;" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" />
+<glyph unicode="&#xf0a0;" d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
+<glyph unicode="&#xf0a1;" horiz-adv-x="1792" d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
+<glyph unicode="&#xf0a2;" horiz-adv-x="1664" d="M848 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM183 128h1298q-164 181 -246.5 411.5t-82.5 484.5q0 256 -320 256t-320 -256q0 -254 -82.5 -484.5t-246.5 -411.5zM1664 128q0 -52 -38 -90t-90 -38 h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q190 161 287 397.5t97 498.5q0 165 96 262t264 117q-8 18 -8 37q0 40 28 68t68 28t68 -28t28 -68q0 -19 -8 -37q168 -20 264 -117t96 -262q0 -262 97 -498.5t287 -397.5z" />
+<glyph unicode="&#xf0a3;" d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
+<glyph unicode="&#xf0a4;" horiz-adv-x="1792" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
+<glyph unicode="&#xf0a5;" horiz-adv-x="1792" d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-2 3 -3.5 4.5t-4 4.5t-4.5 5q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576 q-50 0 -89 -38.5t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45 t45 -19t45 19t19 45zM1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128 q0 122 81.5 189t206.5 67q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
+<glyph unicode="&#xf0a6;" d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
+<glyph unicode="&#xf0a7;" d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
+<glyph unicode="&#xf0a8;" d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf0a9;" d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf0aa;" d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf0ab;" d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf0ac;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 10.5t-9.5 10.5q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-5 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10t17 -20q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q7 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
+<glyph unicode="&#xf0ad;" horiz-adv-x="1664" d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
+<glyph unicode="&#xf0ae;" horiz-adv-x="1792" d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0b0;" horiz-adv-x="1408" d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
+<glyph unicode="&#xf0b1;" horiz-adv-x="1792" d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
+<glyph unicode="&#xf0b2;" d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z " />
+<glyph unicode="&#xf0c0;" horiz-adv-x="1920" d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
+<glyph unicode="&#xf0c1;" horiz-adv-x="1664" d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
+<glyph unicode="&#xf0c2;" horiz-adv-x="1920" d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z " />
+<glyph unicode="&#xf0c3;" horiz-adv-x="1664" d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
+<glyph unicode="&#xf0c4;" horiz-adv-x="1792" d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
+<glyph unicode="&#xf0c5;" horiz-adv-x="1792" d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
+<glyph unicode="&#xf0c6;" horiz-adv-x="1408" d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 z" />
+<glyph unicode="&#xf0c7;" d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
+<glyph unicode="&#xf0c8;" d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf0c9;" d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0ca;" horiz-adv-x="1792" d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
+<glyph unicode="&#xf0cb;" horiz-adv-x="1792" d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 122t0.5 121v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5 t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
+<glyph unicode="&#xf0cc;" horiz-adv-x="1792" d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 97 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -55 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
+<glyph unicode="&#xf0cd;" d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
+<glyph unicode="&#xf0ce;" horiz-adv-x="1664" d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 z" />
+<glyph unicode="&#xf0d0;" horiz-adv-x="1664" d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
+<glyph unicode="&#xf0d1;" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0d2;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf0d3;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
+<glyph unicode="&#xf0d4;" d="M678 -57q0 -38 -10 -71h-380q-95 0 -171.5 56.5t-103.5 147.5q24 45 69 77.5t100 49.5t107 24t107 7q32 0 49 -2q6 -4 30.5 -21t33 -23t31 -23t32 -25.5t27.5 -25.5t26.5 -29.5t21 -30.5t17.5 -34.5t9.5 -36t4.5 -40.5zM385 294q-234 -7 -385 -85v433q103 -118 273 -118 q32 0 70 5q-21 -61 -21 -86q0 -67 63 -149zM558 805q0 -100 -43.5 -160.5t-140.5 -60.5q-51 0 -97 26t-78 67.5t-56 93.5t-35.5 104t-11.5 99q0 96 51.5 165t144.5 69q66 0 119 -41t84 -104t47 -130t16 -128zM1536 896v-736q0 -119 -84.5 -203.5t-203.5 -84.5h-468 q39 73 39 157q0 66 -22 122.5t-55.5 93t-72 71t-72 59.5t-55.5 54.5t-22 59.5q0 36 23 68t56 61.5t65.5 64.5t55.5 93t23 131t-26.5 145.5t-75.5 118.5q-6 6 -14 11t-12.5 7.5t-10 9.5t-10.5 17h135l135 64h-437q-138 0 -244.5 -38.5t-182.5 -133.5q0 126 81 213t207 87h960 q119 0 203.5 -84.5t84.5 -203.5v-96h-256v256h-128v-256h-256v-128h256v-256h128v256h256z" />
+<glyph unicode="&#xf0d5;" horiz-adv-x="1664" d="M876 71q0 21 -4.5 40.5t-9.5 36t-17.5 34.5t-21 30.5t-26.5 29.5t-27.5 25.5t-32 25.5t-31 23t-33 23t-30.5 21q-17 2 -50 2q-54 0 -106 -7t-108 -25t-98 -46t-69 -75t-27 -107q0 -68 35.5 -121.5t93 -84t120.5 -45.5t127 -15q59 0 112.5 12.5t100.5 39t74.5 73.5 t27.5 110zM756 933q0 60 -16.5 127.5t-47 130.5t-84 104t-119.5 41q-93 0 -144 -69t-51 -165q0 -47 11.5 -99t35.5 -104t56 -93.5t78 -67.5t97 -26q97 0 140.5 60.5t43.5 160.5zM625 1408h437l-135 -79h-135q71 -45 110 -126t39 -169q0 -74 -23 -131.5t-56 -92.5t-66 -64.5 t-56 -61t-23 -67.5q0 -26 16.5 -51t43 -48t58.5 -48t64 -55.5t58.5 -66t43 -85t16.5 -106.5q0 -160 -140 -282q-152 -131 -420 -131q-59 0 -119.5 10t-122 33.5t-108.5 58t-77 89t-30 121.5q0 61 37 135q32 64 96 110.5t145 71t155 36t150 13.5q-64 83 -64 149q0 12 2 23.5 t5 19.5t8 21.5t7 21.5q-40 -5 -70 -5q-149 0 -255.5 98t-106.5 246q0 140 95 250.5t234 141.5q94 20 187 20zM1664 1152v-128h-256v-256h-128v256h-256v128h256v256h128v-256h256z" />
+<glyph unicode="&#xf0d6;" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0d7;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0d8;" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+<glyph unicode="&#xf0d9;" horiz-adv-x="640" d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
+<glyph unicode="&#xf0da;" horiz-adv-x="640" d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
+<glyph unicode="&#xf0db;" horiz-adv-x="1664" d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
+<glyph unicode="&#xf0dc;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+<glyph unicode="&#xf0dd;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0de;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+<glyph unicode="&#xf0e0;" horiz-adv-x="1792" d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
+<glyph unicode="&#xf0e1;" d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
+<glyph unicode="&#xf0e2;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
+<glyph unicode="&#xf0e3;" horiz-adv-x="1792" d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
+<glyph unicode="&#xf0e4;" horiz-adv-x="1792" d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+<glyph unicode="&#xf0e5;" horiz-adv-x="1792" d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
+<glyph unicode="&#xf0e6;" horiz-adv-x="1792" d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
+<glyph unicode="&#xf0e7;" horiz-adv-x="896" d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
+<glyph unicode="&#xf0e8;" horiz-adv-x="1792" d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 z" />
+<glyph unicode="&#xf0e9;" horiz-adv-x="1664" d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
+<glyph unicode="&#xf0ea;" horiz-adv-x="1792" d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
+<glyph unicode="&#xf0eb;" horiz-adv-x="1024" d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
+<glyph unicode="&#xf0ec;" horiz-adv-x="1792" d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
+<glyph unicode="&#xf0ed;" horiz-adv-x="1920" d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
+<glyph unicode="&#xf0ee;" horiz-adv-x="1920" d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
+<glyph unicode="&#xf0f0;" horiz-adv-x="1408" d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
+<glyph unicode="&#xf0f1;" horiz-adv-x="1408" d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
+<glyph unicode="&#xf0f2;" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 t66 -158z" />
+<glyph unicode="&#xf0f3;" horiz-adv-x="1664" d="M848 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1664 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q190 161 287 397.5t97 498.5 q0 165 96 262t264 117q-8 18 -8 37q0 40 28 68t68 28t68 -28t28 -68q0 -19 -8 -37q168 -20 264 -117t96 -262q0 -262 97 -498.5t287 -397.5z" />
+<glyph unicode="&#xf0f4;" horiz-adv-x="1920" d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
+<glyph unicode="&#xf0f5;" horiz-adv-x="1408" d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0f6;" horiz-adv-x="1280" d="M1024 352v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1024 608v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM128 0h1024v768h-416q-40 0 -68 28t-28 68v416h-512v-1280z M768 896h376q-10 29 -22 41l-313 313q-12 12 -41 22v-376zM1280 864v-896q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h640q40 0 88 -20t76 -48l312 -312q28 -28 48 -76t20 -88z" />
+<glyph unicode="&#xf0f7;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0f8;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0f9;" horiz-adv-x="1920" d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf0fa;" horiz-adv-x="1792" d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
+<glyph unicode="&#xf0fb;" horiz-adv-x="1920" d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q261 -58 287 -93z" />
+<glyph unicode="&#xf0fc;" horiz-adv-x="1664" d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
+<glyph unicode="&#xf0fd;" d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf0fe;" d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf100;" horiz-adv-x="1024" d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
+<glyph unicode="&#xf101;" horiz-adv-x="1024" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+<glyph unicode="&#xf102;" horiz-adv-x="1152" d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+<glyph unicode="&#xf103;" horiz-adv-x="1152" d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+<glyph unicode="&#xf104;" horiz-adv-x="640" d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+<glyph unicode="&#xf105;" horiz-adv-x="640" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+<glyph unicode="&#xf106;" horiz-adv-x="1152" d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+<glyph unicode="&#xf107;" horiz-adv-x="1152" d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+<glyph unicode="&#xf108;" horiz-adv-x="1920" d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+<glyph unicode="&#xf109;" horiz-adv-x="1920" d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
+<glyph unicode="&#xf10a;" horiz-adv-x="1152" d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
+<glyph unicode="&#xf10b;" horiz-adv-x="768" d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
+<glyph unicode="&#xf10c;" d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf10d;" horiz-adv-x="1664" d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
+<glyph unicode="&#xf10e;" horiz-adv-x="1664" d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
+<glyph unicode="&#xf110;" horiz-adv-x="1568" d="M496 192q0 -60 -42.5 -102t-101.5 -42q-60 0 -102 42t-42 102t42 102t102 42q59 0 101.5 -42t42.5 -102zM928 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -66 -47 -113t-113 -47t-113 47t-47 113 t47 113t113 47t113 -47t47 -113zM1360 192q0 -46 -33 -79t-79 -33t-79 33t-33 79t33 79t79 33t79 -33t33 -79zM528 1088q0 -73 -51.5 -124.5t-124.5 -51.5t-124.5 51.5t-51.5 124.5t51.5 124.5t124.5 51.5t124.5 -51.5t51.5 -124.5zM992 1280q0 -80 -56 -136t-136 -56 t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1536 640q0 -40 -28 -68t-68 -28t-68 28t-28 68t28 68t68 28t68 -28t28 -68zM1328 1088q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5z" />
+<glyph unicode="&#xf111;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf112;" horiz-adv-x="1792" d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
+<glyph unicode="&#xf113;" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" />
+<glyph unicode="&#xf114;" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
+<glyph unicode="&#xf115;" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " />
+<glyph unicode="&#xf116;" horiz-adv-x="1152" d="M896 608v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h224q14 0 23 -9t9 -23zM1024 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 -28 t-28 -68v-704q0 -40 28 -68t68 -28h704q40 0 68 28t28 68zM1152 928v-704q0 -92 -65.5 -158t-158.5 -66h-704q-93 0 -158.5 66t-65.5 158v704q0 93 65.5 158.5t158.5 65.5h704q93 0 158.5 -65.5t65.5 -158.5z" />
+<glyph unicode="&#xf117;" horiz-adv-x="1152" d="M928 1152q93 0 158.5 -65.5t65.5 -158.5v-704q0 -92 -65.5 -158t-158.5 -66h-704q-93 0 -158.5 66t-65.5 158v704q0 93 65.5 158.5t158.5 65.5h704zM1024 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 -28t-28 -68v-704q0 -40 28 -68t68 -28h704q40 0 68 28t28 68z M864 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576z" />
+<glyph unicode="&#xf118;" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf119;" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf11a;" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf11b;" horiz-adv-x="1920" d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
+<glyph unicode="&#xf11c;" horiz-adv-x="1920" d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
+<glyph unicode="&#xf11d;" horiz-adv-x="1792" d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
+<glyph unicode="&#xf11e;" horiz-adv-x="1792" d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
+<glyph unicode="&#xf120;" horiz-adv-x="1664" d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 t9 -23z" />
+<glyph unicode="&#xf121;" horiz-adv-x="1920" d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
+<glyph unicode="&#xf122;" horiz-adv-x="1792" d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
+<glyph unicode="&#xf123;" horiz-adv-x="1664" d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
+<glyph unicode="&#xf124;" horiz-adv-x="1408" d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
+<glyph unicode="&#xf125;" horiz-adv-x="1664" d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf126;" horiz-adv-x="1024" d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 q-2 -287 -226 -414q-68 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
+<glyph unicode="&#xf127;" horiz-adv-x="1664" d="M439 265l-256 -256q-10 -9 -23 -9q-12 0 -23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
+<glyph unicode="&#xf128;" horiz-adv-x="1024" d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
+<glyph unicode="&#xf129;" horiz-adv-x="640" d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf12a;" horiz-adv-x="640" d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
+<glyph unicode="&#xf12b;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1534 846v-206h-514l-3 27 q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5t-65.5 -51.5t-30.5 -63h232v80 h126z" />
+<glyph unicode="&#xf12c;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1536 -50v-206h-514l-4 27 q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73h232v80h126z" />
+<glyph unicode="&#xf12d;" horiz-adv-x="1920" d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
+<glyph unicode="&#xf12e;" horiz-adv-x="1664" d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
+<glyph unicode="&#xf130;" horiz-adv-x="1152" d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
+<glyph unicode="&#xf131;" horiz-adv-x="1408" d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
+<glyph unicode="&#xf132;" horiz-adv-x="1280" d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf133;" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+<glyph unicode="&#xf134;" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
+<glyph unicode="&#xf135;" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
+<glyph unicode="&#xf136;" horiz-adv-x="1792" d="M1708 881l-188 -881h-304l181 849q4 21 1 43q-4 20 -16 35q-10 14 -28 24q-18 9 -40 9h-197l-205 -960h-303l204 960h-304l-205 -960h-304l272 1280h1139q157 0 245 -118q86 -116 52 -281z" />
+<glyph unicode="&#xf137;" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf138;" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf139;" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf13a;" d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf13b;" horiz-adv-x="1408" d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
+<glyph unicode="&#xf13c;" horiz-adv-x="1792" d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
+<glyph unicode="&#xf13d;" horiz-adv-x="1792" d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-13 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf13e;" horiz-adv-x="1152" d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 v-320h736z" />
+<glyph unicode="&#xf140;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf141;" horiz-adv-x="1408" d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf142;" horiz-adv-x="384" d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
+<glyph unicode="&#xf143;" d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 232 -177 396t-396 177q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128q13 0 23 10 t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf144;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 q16 -8 32 -8q17 0 32 9z" />
+<glyph unicode="&#xf145;" horiz-adv-x="1792" d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
+<glyph unicode="&#xf146;" d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
+<glyph unicode="&#xf147;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf148;" horiz-adv-x="1024" d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
+<glyph unicode="&#xf149;" horiz-adv-x="1024" d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
+<glyph unicode="&#xf14a;" d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf14b;" d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf14c;" d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf14d;" d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q10 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf14e;" d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf150;" d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf151;" d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf152;" d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf153;" horiz-adv-x="1024" d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
+<glyph unicode="&#xf154;" horiz-adv-x="1024" d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
+<glyph unicode="&#xf155;" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" />
+<glyph unicode="&#xf156;" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf157;" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
+<glyph unicode="&#xf158;" horiz-adv-x="1664" d="M1664 352v-32q0 -132 -94 -226t-226 -94h-128q-132 0 -226 94t-94 226v480h-224q-2 -102 -14.5 -190.5t-30.5 -156t-48.5 -126.5t-57 -99.5t-67.5 -77.5t-69.5 -58.5t-74 -44t-69 -32t-65.5 -25.5q-4 -2 -32 -13q-8 -2 -12 -2q-22 0 -30 20l-71 178q-5 13 0 25t17 17 q7 3 20 7.5t18 6.5q31 12 46.5 18.5t44.5 20t45.5 26t42 32.5t40.5 42.5t34.5 53.5t30.5 68.5t22.5 83.5t17 103t6.5 123h-256q-14 0 -23 9t-9 23v160q0 14 9 23t23 9h1216q14 0 23 -9t9 -23v-160q0 -14 -9 -23t-23 -9h-224v-512q0 -26 19 -45t45 -19h128q26 0 45 19t19 45 v64q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1280 1376v-160q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v160q0 14 9 23t23 9h960q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf159;" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf15a;" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
+<glyph unicode="&#xf15b;" horiz-adv-x="1280" d="M1280 768v-800q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h544v-544q0 -40 28 -68t68 -28h544zM1277 896h-509v509q82 -15 132 -65l312 -312q50 -50 65 -132z" />
+<glyph unicode="&#xf15c;" horiz-adv-x="1280" d="M1024 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1024 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1280 768v-800q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28 t-28 68v1344q0 40 28 68t68 28h544v-544q0 -40 28 -68t68 -28h544zM1277 896h-509v509q82 -15 132 -65l312 -312q50 -50 65 -132z" />
+<glyph unicode="&#xf15d;" horiz-adv-x="1664" d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 l230 -662h70z" />
+<glyph unicode="&#xf15e;" horiz-adv-x="1664" d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 v119h121z" />
+<glyph unicode="&#xf160;" horiz-adv-x="1792" d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf161;" horiz-adv-x="1792" d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf162;" d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
+<glyph unicode="&#xf163;" d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
+<glyph unicode="&#xf164;" horiz-adv-x="1664" d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
+<glyph unicode="&#xf165;" horiz-adv-x="1664" d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
+<glyph unicode="&#xf166;" d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 16 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 q21 -28 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78l24 -69t23 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38q-51 0 -78 -38 q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf167;" d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-37 -51 -106 -51q-67 0 -105 51 q-28 38 -28 118v175q0 80 28 117q38 51 105 51q69 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
+<glyph unicode="&#xf168;" horiz-adv-x="1408" d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 q25 45 64 45h241q22 0 31 -15z" />
+<glyph unicode="&#xf169;" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf16a;" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" />
+<glyph unicode="&#xf16b;" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
+<glyph unicode="&#xf16c;" horiz-adv-x="1408" d="M928 135v-151l-707 -1v151zM1169 481v-701l-1 -35v-1h-1132l-35 1h-1v736h121v-618h928v618h120zM241 393l704 -65l-13 -150l-705 65zM309 709l683 -183l-39 -146l-683 183zM472 1058l609 -360l-77 -130l-609 360zM832 1389l398 -585l-124 -85l-399 584zM1285 1536 l121 -697l-149 -26l-121 697z" />
+<glyph unicode="&#xf16d;" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" />
+<glyph unicode="&#xf16e;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
+<glyph unicode="&#xf170;" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf171;" horiz-adv-x="1408" d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
+<glyph unicode="&#xf172;" d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf173;" horiz-adv-x="1024" d="M390 1408h219v-388h364v-241h-364v-394q0 -136 14 -172q13 -37 52 -60q50 -31 117 -31q117 0 232 76v-242q-102 -48 -178 -65q-77 -19 -173 -19q-105 0 -186 27q-78 25 -138 75q-58 51 -79 105q-22 54 -22 161v539h-170v217q91 30 155 84q64 55 103 132q39 78 54 196z " />
+<glyph unicode="&#xf174;" d="M1123 127v181q-88 -56 -174 -56q-51 0 -88 23q-29 17 -39 45q-11 30 -11 129v295h274v181h-274v291h-164q-11 -90 -40 -147t-78 -99q-48 -40 -116 -63v-163h127v-404q0 -78 17 -121q17 -42 59 -78q43 -37 104 -57q62 -20 140 -20q67 0 129 14q57 13 134 49zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+<glyph unicode="&#xf175;" horiz-adv-x="768" d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
+<glyph unicode="&#xf176;" horiz-adv-x="768" d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
+<glyph unicode="&#xf177;" horiz-adv-x="1792" d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
+<glyph unicode="&#xf178;" horiz-adv-x="1792" d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
+<glyph unicode="&#xf179;" horiz-adv-x="1408" d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q112 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
+<glyph unicode="&#xf17a;" horiz-adv-x="1664" d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
+<glyph unicode="&#xf17b;" horiz-adv-x="1408" d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
+<glyph unicode="&#xf17c;" d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-7 -10 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18l-4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-14 -1 -7 -7l4 -2 q14 -4 18 -31q0 -3 8 2zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5t-30 -18.5 t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43q-19 4 -51 9.5 t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49t-14 -48 q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54q110 143 124 195 q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5t-40.5 -33.5t-61 -14 q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5t15.5 47.5q1 -31 8 -56.5 t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
+<glyph unicode="&#xf17d;" d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -6 6.5 -17.5t7.5 -16.5q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf17e;" d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
+<glyph unicode="&#xf180;" horiz-adv-x="1664" d="M1483 512l-587 -587q-52 -53 -127.5 -53t-128.5 53l-587 587q-53 53 -53 128t53 128l587 587q53 53 128 53t128 -53l265 -265l-398 -399l-188 188q-42 42 -99 42q-59 0 -100 -41l-120 -121q-42 -40 -42 -99q0 -58 42 -100l406 -408q30 -28 67 -37l6 -4h28q60 0 99 41 l619 619l2 -3q53 -53 53 -128t-53 -128zM1406 1138l120 -120q14 -15 14 -36t-14 -36l-730 -730q-17 -15 -37 -15v0q-4 0 -6 1q-18 2 -30 14l-407 408q-14 15 -14 36t14 35l121 120q13 15 35 15t36 -15l252 -252l574 575q15 15 36 15t36 -15z" />
+<glyph unicode="&#xf181;" d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf182;" horiz-adv-x="1280" d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
+<glyph unicode="&#xf183;" horiz-adv-x="1024" d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
+<glyph unicode="&#xf184;" d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+<glyph unicode="&#xf185;" horiz-adv-x="1792" d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
+<glyph unicode="&#xf186;" d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
+<glyph unicode="&#xf187;" horiz-adv-x="1792" d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
+<glyph unicode="&#xf188;" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
+<glyph unicode="&#xf189;" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" />
+<glyph unicode="&#xf18a;" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
+<glyph unicode="&#xf18b;" horiz-adv-x="1920" d="M805 163q-122 -67 -261 -67q-141 0 -261 67q98 61 167 149t94 191q25 -103 94 -191t167 -149zM453 1176v-344q0 -179 -89.5 -326t-234.5 -217q-129 152 -129 351q0 200 129.5 352t323.5 184zM958 991q-128 -152 -128 -351q0 -201 128 -351q-145 70 -234.5 218t-89.5 328 v341q196 -33 324 -185zM1638 163q-122 -67 -261 -67q-141 0 -261 67q98 61 167 149t94 191q25 -103 94 -191t167 -149zM1286 1176v-344q0 -179 -91 -326t-237 -217v0q133 154 133 351q0 195 -133 351q129 151 328 185zM1920 640q0 -201 -129 -351q-145 70 -234.5 218 t-89.5 328v341q194 -32 323.5 -184t129.5 -352z" />
+<glyph unicode="&#xf18c;" horiz-adv-x="1792" />
+<glyph unicode="&#xf18d;" horiz-adv-x="1792" />
+<glyph unicode="&#xf18e;" horiz-adv-x="1792" />
+<glyph unicode="&#xf500;" horiz-adv-x="1792" />
 </font>
 </defs></svg> 
\ No newline at end of file
index c17e9f8d100d01a002029b5b93cc081062618bf3..d3659246915cacb0c9204271f1f9fc5f77049eac 100755 (executable)
Binary files a/view/theme/vier/font/fontawesome-webfont.ttf and b/view/theme/vier/font/fontawesome-webfont.ttf differ
index 09f2469a1f7a71acb4c4778842511d797d7f6ad8..b9bd17e158d87fb1477f7ac3ddbb5a676f3c26d2 100755 (executable)
Binary files a/view/theme/vier/font/fontawesome-webfont.woff and b/view/theme/vier/font/fontawesome-webfont.woff differ
index c66b01bfb714bb10b89d4483d180003368210159..6563be23e0a9240ed3d29579ac6e71f0e45af774 100644 (file)
@@ -1282,6 +1282,11 @@ h2 {
   transition: all 0.2s ease-in-out;
 }
 
+.toplevel_item:hover .togglecomment,
+.wall-item-container:hover .togglecomment {
+  color: #999;
+}
+
 .wall-item-container .wall-item-actions-author {
   width: 100%;
   margin-bottom: 0.3em;
@@ -1737,7 +1742,7 @@ h2 {
   width: 780px;
 }
 #profile-jot-wrapper {
-  margin-bottom: 20px;
+  margin-bottom: 10px;
 }
 
 /** buttons **/
@@ -1899,7 +1904,7 @@ ul.tabs a {
     padding-right: 10px;
     padding-top: 5px;
     padding-bottom: 5px;
-    margin-bottom: 10px;
+    margin-bottom: 0px;
 }
 
 div.pager, .birthday-notice, .comment-edit-submit-wrapper .fakelink {
@@ -2147,6 +2152,7 @@ blockquote {
     /* font-size: large; */
     font-size: larger;
     font-weight: bold;
+    display: block;
 }
 
 /* ================== */
index 8932e7306ce9a2a3585c994e01dd14fa68672217..b573149679f3eb88e828775a61bd601ac35389a8 100644 (file)
        <li><a href="{0}"><img data-src="{1}">{2} <span class="notif-when">{3}</span></a></li>
 </ul>
 <!--
-<div style="position: fixed; bottom: 61px; left: 220px;">{{$langselector}}</div>
+<div class="icon-flag" style="position: fixed; bottom: 10px; left: 20px; z-index:9;">{{$langselector}}</div>
 -->
 {{*
 
index 3062b518f301b375a13d629a5406e7b6b88773fe..049ae184749186a7cb4b21b4b1ff8112380d5876 100644 (file)
                </div>
                <div class="wall-item-actions">
                        <div class="wall-item-actions-social">
-                       {{if $item.threaded}}{{if $item.comment}}
-                               <span id="comment-{{$item.id}}" class="fakelink togglecomment" onclick="openClose('item-comments-{{$item.id}}');"><i class="icon-comment"></i></span>
-                       {{/if}}{{/if}}
+                       {{if $item.threaded}}
+                       {{/if}}
+                       {{if $item.comment}}
+                               <span id="comment-{{$item.id}}" class="fakelink togglecomment" onclick="commentExpand({{$item.id}}); openClose('item-comments-{{$item.id}}');"><i class="icon-reply"></i></span>
+                       {{/if}}
                        {{if $item.vote}}
                                {{if $item.vote.like}}
                                <a href="#" id="like-{{$item.id}}" title="{{$item.vote.like.0}}" onclick="dolike({{$item.id}},'like'); return false"><i class="icon-thumbs-up icon-large"></i></a>
 {{if $item.comment_lastcollapsed}}</div>{{/if}}
 {{/if}}
 
-{{if $item.threaded}}{{if $item.comment}}{{if $item.thread_level==1}}
-<div class="wall-item-comment-wrapper" id="item-comments-{{$item.id}}">{{$item.comment}}</div>
-{{/if}}{{/if}}{{/if}}
+{{if $item.total_comments_num}}
+       {{if $item.threaded}}{{if $item.comment}}{{if $item.thread_level==1}}
+               <div class="wall-item-comment-wrapper" id="item-comments-{{$item.id}}">{{$item.comment}}</div>
+       {{/if}}{{/if}}{{/if}}
 
+       {{if $item.flatten}}
+               <div class="wall-item-comment-wrapper" id="item-comments-{{$item.id}}">{{$item.comment}}</div>
+       {{/if}}
+{{else}}
+       {{if $item.threaded}}{{if $item.comment}}{{if $item.thread_level==1}}
+               <div class="wall-item-comment-wrapper" id="item-comments-{{$item.id}}" style="display: none;">{{$item.comment}}</div>
+       {{/if}}{{/if}}{{/if}}
 
-{{if $item.flatten}}
-<div class="wall-item-comment-wrapper" id="item-comments-{{$item.id}}">{{$item.comment}}</div>
+       {{if $item.flatten}}
+               <div class="wall-item-comment-wrapper" id="item-comments-{{$item.id}}" style="display: none;">{{$item.comment}}</div>
+       {{/if}}
 {{/if}}