]> git.mxchange.org Git - friendica.git/commitdiff
Merge remote-tracking branch 'upstream/master'
authorMichael Vogel <icarus@dabo.de>
Mon, 17 Dec 2012 09:32:53 +0000 (10:32 +0100)
committerMichael Vogel <icarus@dabo.de>
Mon, 17 Dec 2012 09:32:53 +0000 (10:32 +0100)
26 files changed:
boot.php
include/acl_selectors.php
include/api.php
include/group.php
include/notifier.php
include/oembed.php
include/onepoll.php
include/template_processor.php
mod/parse_url.php
mod/profiles.php
mod/wall_attach.php
mod/wall_upload.php
mods/sample-nginx.config [new file with mode: 0644]
object/Item.php
util/messages.po
view/nb-no/messages.po
view/nb-no/strings.php
view/profile_edit.tpl
view/pt-br/intro_complete_eml.tpl [new file with mode: 0644]
view/pt-br/messages.po
view/pt-br/strings.php
view/pt-br/update_fail_eml.tpl [new file with mode: 0644]
view/ru/messages.po
view/ru/strings.php
view/search_item.tpl
view/wall_thread.tpl

index 9dacaaaec9709fcaec6018d48e2f44ef7f756b5f..023c5807c8a4bb40474198711b25d4746b0dee6c 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.0.1545' );
+define ( 'FRIENDICA_VERSION',      '3.1.1559' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
 define ( 'DB_UPDATE_VERSION',      1157      );
 
index 461ad0c3640c276d449169490e01556eb47ce5d5..675339559b6d7cca29bd77d2dba33067841c75d1 100644 (file)
@@ -227,6 +227,23 @@ function fixacl(&$item) {
        $item = intval(str_replace(array('<','>'),array('',''),$item));
 }
 
+function prune_deadguys($arr) {
+
+       if(! $arr)
+               return $arr;
+       $str = dbesc(implode(',',$arr));
+       $r = q("select id from contact where id in ( " . $str . ") and blocked = 0 and pending = 0 and archive = 0 ");
+       if($r) {
+               $ret = array();
+               foreach($r as $rr) 
+                       $ret[] = $rr['id'];
+               return $ret;
+       }
+       return array();
+}
+
+
+
 function populate_acl($user = null,$celeb = false) {
 
        $allow_cid = $allow_gid = $deny_cid = $deny_gid = false;
@@ -246,6 +263,14 @@ function populate_acl($user = null,$celeb = false) {
                array_walk($deny_gid,'fixacl');
        }
 
+       $allow_cid = prune_deadguys($allow_cid);
+
+       // We shouldn't need to prune deadguys from the block list. Either way they can't get the message.
+       // Also no point enumerating groups and checking them, that will take place on delivery.
+
+//     $deny_cid = prune_deadguys($deny_cid);
+
+
        /*$o = '';
        $o .= '<div id="acl-wrapper">';
        $o .= '<div id="acl-permit-outer-wrapper">';
index 8a93093c70ac910fb8a99ace62a2938b114e2070..667629e1393ede3a0d0806332c8190fc073098dd 100644 (file)
        $API = Array();
        $called_api = Null;
 
+        function api_user() {
+          // It is not sufficient to use local_user() to check whether someone is allowed to use the API,
+          // because this will open CSRF holes (just embed an image with src=friendicasite.com/api/statuses/update?status=CSRF
+          // into a page, and visitors will post something without noticing it).
+          // Instead, use this function.
+          if ($_SESSION["allow_api"])
+            return local_user();
+
+          return false;
+        }
+
        function api_date($str){
                //Wed May 23 06:01:13 +0000 2007
                return datetime_convert('UTC', 'UTC', $str, "D M d H:i:s +0000 Y" );
                }
 
                require_once('include/security.php');
-               authenticate_success($record);
+               authenticate_success($record); $_SESSION["allow_api"] = true;
 
                call_hooks('logged_in', $a->user);
 
                        if (strpos($a->query_string, $p)===0){
                                $called_api= explode("/",$p);
                                //unset($_SERVER['PHP_AUTH_USER']);
-                               if ($info['auth']===true && local_user()===false) {
+                               if ($info['auth']===true && api_user()===false) {
                                                api_login($a);
                                }
 
-                               load_contact_links(local_user());
+                               load_contact_links(api_user());
 
                                logger('API call for ' . $a->user['username'] . ': ' . $a->query_string);
                                logger('API parameters: ' . print_r($_REQUEST,true));
                if(is_null($user) && x($_GET, 'screen_name')) {
                        $user = dbesc($_GET['screen_name']);    
                        $extra_query = "AND `contact`.`nick` = '%s' ";
-                       if (local_user()!==false)  $extra_query .= "AND `contact`.`uid`=".intval(local_user());
+                       if (api_user()!==false)  $extra_query .= "AND `contact`.`uid`=".intval(api_user());
                        
                }
                
                        } else {
                                $user = dbesc($user);
                                $extra_query = "AND `contact`.`nick` = '%s' ";
-                               if (local_user()!==false)  $extra_query .= "AND `contact`.`uid`=".intval(local_user());
+                               if (api_user()!==false)  $extra_query .= "AND `contact`.`uid`=".intval(api_user());
                        }
                }
                
                if (! $user) {
-                       if (local_user()===false) {
+                       if (api_user()===false) {
                                api_login($a); return False;
                        } else {
                                $user = $_SESSION['uid'];
                
                if($uinfo[0]['self']) {
                        $usr = q("select * from user where uid = %d limit 1",
-                               intval(local_user())
+                               intval(api_user())
                        );
                        $profile = q("select * from profile where uid = %d and `is-default` = 1 limit 1",
-                               intval(local_user())
+                               intval(api_user())
                        );
 
                        // count public wall messages
         * http://developer.twitter.com/doc/get/account/verify_credentials
         */
        function api_account_verify_credentials(&$a, $type){
-               if (local_user()===false) return false;
+               if (api_user()===false) return false;
                $user_info = api_get_user($a);
                
                return api_apply_template("user", $type, array('$user' => $user_info));
 
 /*Waitman Gobble Mod*/
         function api_statuses_mediap(&$a, $type) {
-                if (local_user()===false) {
+                if (api_user()===false) {
                         logger('api_statuses_update: no user');
                         return false;
                 }
                 $user_info = api_get_user($a);
 
                 $_REQUEST['type'] = 'wall';
-                $_REQUEST['profile_uid'] = local_user();
+                $_REQUEST['profile_uid'] = api_user();
                 $_REQUEST['api_source'] = true;
                 $txt = requestdata('status');
                 //$txt = urldecode(requestdata('status'));
 
 
        function api_statuses_update(&$a, $type) {
-               if (local_user()===false) {
+               if (api_user()===false) {
                        logger('api_statuses_update: no user');
                        return false;
                }
 
                if(requestdata('lat') && requestdata('long'))
                        $_REQUEST['coord'] = sprintf("%s %s",requestdata('lat'),requestdata('long'));
-               $_REQUEST['profile_uid'] = local_user();
+               $_REQUEST['profile_uid'] = api_user();
 
                if($parent)
                        $_REQUEST['type'] = 'net-comment';
         * TODO: Add reply info
         */
        function api_statuses_home_timeline(&$a, $type){
-               if (local_user()===false) return false;
+               if (api_user()===false) return false;
 
                $user_info = api_get_user($a);
                // get last newtork messages
        api_register_func('api/statuses/friends_timeline','api_statuses_home_timeline', true);
 
        function api_statuses_public_timeline(&$a, $type){
-               if (local_user()===false) return false;
+               if (api_user()===false) return false;
 
                $user_info = api_get_user($a);
                // get last newtork messages
         * 
         */
        function api_statuses_show(&$a, $type){
-               if (local_user()===false) return false;
+               if (api_user()===false) return false;
 
                $user_info = api_get_user($a);
 
         * 
         */
        function api_statuses_repeat(&$a, $type){
-               if (local_user()===false) return false;
+               if (api_user()===false) return false;
 
                $user_info = api_get_user($a);
 
 
                if ($r[0]['body'] != "") {
                        $_REQUEST['body'] = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8')."[url=".$r[0]['reply_url']."]".$r[0]['reply_author']."[/url] \n".$r[0]['body'];
-                       $_REQUEST['profile_uid'] = local_user();
+                       $_REQUEST['profile_uid'] = api_user();
                        $_REQUEST['type'] = 'wall';
                        $_REQUEST['api_source'] = true;
 
         * 
         */
        function api_statuses_destroy(&$a, $type){
-               if (local_user()===false) return false;
+               if (api_user()===false) return false;
 
                $user_info = api_get_user($a);
 
         * 
         */
        function api_statuses_mentions(&$a, $type){
-               if (local_user()===false) return false;
+               if (api_user()===false) return false;
                                
                $user_info = api_get_user($a);
                // get last newtork messages
 
 
        function api_statuses_user_timeline(&$a, $type){
-               if (local_user()===false) return false;
+               if (api_user()===false) return false;
                
                $user_info = api_get_user($a);
                // get last newtork messages
 
 
-               logger("api_statuses_user_timeline: local_user: ". local_user() .
+               logger("api_statuses_user_timeline: api_user: ". api_user() .
                           "\nuser_info: ".print_r($user_info, true) .
                           "\n_REQUEST:  ".print_r($_REQUEST, true),
                           LOGGER_DEBUG);
                        $sql_extra
                        AND `item`.`id`>%d
                        ORDER BY `item`.`received` DESC LIMIT %d ,%d ",
-                       intval(local_user()),
+                       intval(api_user()),
                        intval($user_info['id']),
                        intval($since_id),
                        intval($start), intval($count)
 
 
        function api_favorites(&$a, $type){
-               if (local_user()===false) return false;
+               if (api_user()===false) return false;
 
                $user_info = api_get_user($a);
                // in friendica starred item are private
         *  returns: json, xml 
         **/
        function api_statuses_f(&$a, $type, $qtype) {
-               if (local_user()===false) return false;
+               if (api_user()===false) return false;
                $user_info = api_get_user($a);
                
                
                        $sql_extra = sprintf(" AND ( `rel` = %d OR `rel` = %d ) ", intval(CONTACT_IS_FOLLOWER), intval(CONTACT_IS_FRIEND));
  
                $r = q("SELECT id FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 $sql_extra",
-                       intval(local_user())
+                       intval(api_user())
                );
 
                $ret = array();
 
 
        function api_ff_ids(&$a,$type,$qtype) {
-               if(! local_user())
+               if(! api_user())
                        return false;
 
                if($qtype == 'friends')
  
 
                $r = q("SELECT id FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 $sql_extra",
-                       intval(local_user())
+                       intval(api_user())
                );
 
                if(is_array($r)) {
 
 
        function api_direct_messages_new(&$a, $type) {
-               if (local_user()===false) return false;
+               if (api_user()===false) return false;
                
                if (!x($_POST, "text") || !x($_POST,"screen_name")) return;
 
                require_once("include/message.php");
 
                $r = q("SELECT `id` FROM `contact` WHERE `uid`=%d AND `nick`='%s'",
-                               intval(local_user()),
+                               intval(api_user()),
                                dbesc($_POST['screen_name']));
 
                $recipient = api_get_user($a, $r[0]['id']);                     
                $sub     = '';
                if (x($_REQUEST,'replyto')) {
                        $r = q('SELECT `parent-uri`, `title` FROM `mail` WHERE `uid`=%d AND `id`=%d',
-                                       intval(local_user()),
+                                       intval(api_user()),
                                        intval($_REQUEST['replyto']));
                        $replyto = $r[0]['parent-uri'];
                        $sub     = $r[0]['title'];
        api_register_func('api/direct_messages/new','api_direct_messages_new',true);
 
        function api_direct_messages_box(&$a, $type, $box) {
-               if (local_user()===false) return false;
+               if (api_user()===false) return false;
                
                $user_info = api_get_user($a);
                
                }
                
                $r = q("SELECT * FROM `mail` WHERE uid=%d AND $sql_extra ORDER BY created DESC LIMIT %d,%d",
-                               intval(local_user()),
+                               intval(api_user()),
                                intval($start), intval($count)
                );
                
index 7ede242c087073b326a1d5de296d398d806cf00f..aa226688ae5242dae6220b0a00062acef44911ce 100644 (file)
@@ -279,7 +279,7 @@ function group_side($every="contacts",$each="group",$edit = false, $group_id = 0
        return $o;
 }
 
-function expand_groups($a) {
+function expand_groups($a,$check_dead = false) {
        if(! (is_array($a) && count($a)))
                return array();
        $groups = implode(',', $a);
@@ -289,6 +289,10 @@ function expand_groups($a) {
        if(count($r))
                foreach($r as $rr)
                        $ret[] = $rr['contact-id'];
+       if($check_dead) {
+               require_once('include/acl_selectors.php');
+               $ret = prune_deadguys($ret);
+       }
        return $ret;
 }
 
index 091d09b56211ac7714f2a796ebe74b807e86af67..3398254b6a43961f241ff1a69ac937a5c6eae8da 100644 (file)
@@ -309,7 +309,7 @@ function notifier_run(&$argv, &$argc){
                        }
 
                        $allow_people = expand_acl($parent['allow_cid']);
-                       $allow_groups = expand_groups(expand_acl($parent['allow_gid']));
+                       $allow_groups = expand_groups(expand_acl($parent['allow_gid']),true);
                        $deny_people  = expand_acl($parent['deny_cid']);
                        $deny_groups  = expand_groups(expand_acl($parent['deny_gid']));
 
index dbb96a67ca7e5aa9f14e9bfa7299ff77bf650e37..bc127b5c3515f61cd061bcb63f9fa2710dc2f426 100755 (executable)
@@ -74,9 +74,10 @@ function oembed_format_object($j){
        switch ($j->type) {
                case "video": {
                        if (isset($j->thumbnail_url)) {
-                               $tw = (isset($j->thumbnail_width)) ? $j->thumbnail_width:200;
-                               $th = (isset($j->thumbnail_height)) ? $j->thumbnail_height:180;
-                               $tr = $tw/$th;
+                               $tw = (isset($j->thumbnail_width) && intval($j->thumbnail_width)) ? $j->thumbnail_width:200;
+                               $th = (isset($j->thumbnail_height) && intval($j->thumbnail_height)) ? $j->thumbnail_height:180;
+                               // make sure we don't attempt divide by zero, fallback is a 1:1 ratio
+                               $tr = (($th) ? $tw/$th : 1);
                                
                                $th=120; $tw = $th*$tr;
                                $tpl=get_markup_template('oembed_video.tpl');
index 68d7873ecb9c3b54aeabc406c8a906d263eaf83b..10707ea9601dd40bfcd8452d8e800f57553ccd74 100644 (file)
@@ -118,6 +118,7 @@ function onepoll_run(&$argv, &$argc){
 
        if($contact['network'] === NETWORK_DFRN) {
 
+               
                $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
                if(intval($contact['duplex']) && $contact['dfrn-id'])
                        $idtosend = '0:' . $orig_id;
@@ -127,6 +128,12 @@ function onepoll_run(&$argv, &$argc){
                // they have permission to write to us. We already filtered this in the contact query.
                $perm = 'rw';
 
+               // But this may be our first communication, so set the writable flag if it isn't set already.
+
+               if(! intval($contact['writable']))
+                       q("update contact set writable = 1 where id = %d limit 1", intval($contact['id']));
+
+
                $url = $contact['poll'] . '?dfrn_id=' . $idtosend 
                        . '&dfrn_version=' . DFRN_PROTOCOL_VERSION 
                        . '&type=data&last_update=' . $last_update 
index 4088ddab60840864c6b111c81c81615b1371cc94..6c5908d92e8d8f1d1c5f318bb868c3c6199d1f55 100644 (file)
 <?php
-       define ("KEY_NOT_EXISTS", '^R_key_not_Exists^');
-
-       class Template {
-               var $r;
-               var $search;
-               var $replace;
-               var $stack = array();
-               var $nodes = array();
-               var $done = false;
-               var $d = false;
-               var $lang = null;
-               var $debug=false;
-               
-               private function _preg_error(){
-                       
-                       switch(preg_last_error()){
-                           case PREG_INTERNAL_ERROR: echo('PREG_INTERNAL_ERROR'); break;
-                           case PREG_BACKTRACK_LIMIT_ERROR: echo('PREG_BACKTRACK_LIMIT_ERROR'); break;
-                           case PREG_RECURSION_LIMIT_ERROR: echo('PREG_RECURSION_LIMIT_ERROR'); break;
-                           case PREG_BAD_UTF8_ERROR: echo('PREG_BAD_UTF8_ERROR'); break;
-// This is only valid for php > 5.3, not certain how to code around it for unit tests
-//                         case PREG_BAD_UTF8_OFFSET_ERROR: echo('PREG_BAD_UTF8_OFFSET_ERROR'); break;
-                           default:
-                                       //die("Unknown preg error.");
-                                       return;
-                       }
-                       echo "<hr><pre>";
-                       debug_print_backtrace();
-                       die();
-               }
-               
-               
-               private function _push_stack(){
-                       $this->stack[] = array($this->r, $this->nodes);
+
+define("KEY_NOT_EXISTS", '^R_key_not_Exists^');
+
+class Template {
+
+       var $r;
+       var $search;
+       var $replace;
+       var $stack = array();
+       var $nodes = array();
+       var $done = false;
+       var $d = false;
+       var $lang = null;
+       var $debug = false;
+
+       private function _preg_error() {
+
+               switch (preg_last_error()) {
+                       case PREG_INTERNAL_ERROR: echo('PREG_INTERNAL_ERROR');
+                               break;
+                       case PREG_BACKTRACK_LIMIT_ERROR: echo('PREG_BACKTRACK_LIMIT_ERROR');
+                               break;
+                       case PREG_RECURSION_LIMIT_ERROR: echo('PREG_RECURSION_LIMIT_ERROR');
+                               break;
+                       case PREG_BAD_UTF8_ERROR: echo('PREG_BAD_UTF8_ERROR');
+                               break;
+//                     This is only valid for php > 5.3, not certain how to code around it for unit tests
+//                     case PREG_BAD_UTF8_OFFSET_ERROR: echo('PREG_BAD_UTF8_OFFSET_ERROR'); break;
+                       default:
+                               //die("Unknown preg error.");
+                               return;
                }
-               private function _pop_stack(){
-                       list($this->r, $this->nodes) = array_pop($this->stack);
-                       
+               echo "<hr><pre>";
+               debug_print_backtrace();
+               die();
+       }
+
+       private function _push_stack() {
+               $this->stack[] = array($this->r, $this->nodes);
+       }
+
+       private function _pop_stack() {
+               list($this->r, $this->nodes) = array_pop($this->stack);
+       }
+
+       private function _get_var($name, $retNoKey = false) {
+               $keys = array_map('trim', explode(".", $name));
+               if ($retNoKey && !array_key_exists($keys[0], $this->r))
+                       return KEY_NOT_EXISTS;
+               $val = $this->r;
+               foreach ($keys as $k) {
+                       $val = (isset($val[$k]) ? $val[$k] : null);
                }
-               
-               private function _get_var($name, $retNoKey=false){
-                       $keys = array_map('trim',explode(".",$name));
-                       if ($retNoKey && !array_key_exists($keys[0], $this->r)) return KEY_NOT_EXISTS;
-                       $val = $this->r;
-                       foreach($keys as $k) {
-                               $val = (isset($val[$k]) ? $val[$k] : null);
-                       }
-                       return $val;
+               return $val;
+       }
+
+       /**
+        * IF node
+        * 
+        * {{ if <$var> }}...[{{ else }} ...] {{ endif }}
+        * {{ if <$var>==<val|$var> }}...[{{ else }} ...]{{ endif }}
+        * {{ if <$var>!=<val|$var> }}...[{{ else }} ...]{{ endif }}
+        */
+       private function _replcb_if($args) {
+               if (strpos($args[2], "==") > 0) {
+                       list($a, $b) = array_map("trim", explode("==", $args[2]));
+                       $a = $this->_get_var($a);
+                       if ($b[0] == "$")
+                               $b = $this->_get_var($b);
+                       $val = ($a == $b);
+               } else if (strpos($args[2], "!=") > 0) {
+                       list($a, $b) = array_map("trim", explode("!=", $args[2]));
+                       $a = $this->_get_var($a);
+                       if ($b[0] == "$")
+                               $b = $this->_get_var($b);
+                       $val = ($a != $b);
+               } else {
+                       $val = $this->_get_var($args[2]);
                }
-               
-               /**
-                * IF node
-                * 
-                * {{ if <$var> }}...[{{ else }} ...] {{ endif }}
-                * {{ if <$var>==<val|$var> }}...[{{ else }} ...]{{ endif }}
-                * {{ if <$var>!=<val|$var> }}...[{{ else }} ...]{{ endif }}
-                */
-               private function _replcb_if($args){
-                       if (strpos($args[2],"==")>0){
-                               list($a,$b) = array_map("trim",explode("==",$args[2]));
-                               $a = $this->_get_var($a);
-                               if ($b[0]=="$") $b =  $this->_get_var($b);
-                               $val = ($a == $b);
-                       } else if (strpos($args[2],"!=")>0){
-                               list($a,$b) = array_map("trim", explode("!=",$args[2]));
-                               $a = $this->_get_var($a);
-                               if ($b[0]=="$") $b =  $this->_get_var($b);
-                               $val = ($a != $b);
-                       } else {
-                               $val = $this->_get_var($args[2]);
-                       }
-                       $x = preg_split("|{{ *else *}}|", $args[3]);
-                       return ( $val ? $x[0] : (isset($x[1]) ? $x[1] : ""));
+               $x = preg_split("|{{ *else *}}|", $args[3]);
+               return ( $val ? $x[0] : (isset($x[1]) ? $x[1] : ""));
+       }
+
+       /**
+        * FOR node
+        * 
+        * {{ for <$var> as $name }}...{{ endfor }}
+        * {{ for <$var> as $key=>$name }}...{{ endfor }}
+        */
+       private function _replcb_for($args) {
+               $m = array_map('trim', explode(" as ", $args[2]));
+               $x = explode("=>", $m[1]);
+               if (count($x) == 1) {
+                       $varname = $x[0];
+                       $keyname = "";
+               } else {
+                       list($keyname, $varname) = $x;
                }
-               
-               /**
-                * FOR node
-                * 
-                * {{ for <$var> as $name }}...{{ endfor }}
-                * {{ for <$var> as $key=>$name }}...{{ endfor }}
-                */
-               private function _replcb_for($args){
-                       $m = array_map('trim', explode(" as ", $args[2]));
-                       $x = explode("=>",$m[1]);
-                       if (count($x) == 1) {
-                               $varname = $x[0];
-                               $keyname = "";
-                       } else {
-                               list($keyname, $varname) = $x;
-                       }
-                       if ($m[0]=="" || $varname=="" || is_null($varname)) die("template error: 'for ".$m[0]." as ".$varname."'") ;
-                       //$vals = $this->r[$m[0]];
-                       $vals = $this->_get_var($m[0]);
-                       $ret="";
-                       if (!is_array($vals)) return $ret; 
-                       foreach ($vals as $k=>$v){
-                               $this->_push_stack();
-                               $r = $this->r;
-                               $r[$varname] = $v;
-                               if ($keyname!='') $r[$keyname] = (($k === 0) ? '0' : $k);
-                               $ret .=  $this->replace($args[3], $r);
-                               $this->_pop_stack();
-                       }
+               if ($m[0] == "" || $varname == "" || is_null($varname))
+                       die("template error: 'for " . $m[0] . " as " . $varname . "'");
+               //$vals = $this->r[$m[0]];
+               $vals = $this->_get_var($m[0]);
+               $ret = "";
+               if (!is_array($vals))
                        return $ret;
-               }
-
-               /**
-                * INC node
-                * 
-                * {{ inc <templatefile> [with $var1=$var2] }}{{ endinc }}
-                */
-               private function _replcb_inc($args){
-                       if (strpos($args[2],"with")) {
-                               list($tplfile, $newctx) = array_map('trim', explode("with",$args[2]));
-                       } else {
-                               $tplfile = trim($args[2]);
-                               $newctx = null;
-                       }
-                       
-                       if ($tplfile[0]=="$") $tplfile = $this->_get_var($tplfile);
-                       
+               foreach ($vals as $k => $v) {
                        $this->_push_stack();
                        $r = $this->r;
-                       if (!is_null($newctx)) {
-                               list($a,$b) = array_map('trim', explode("=",$newctx));
-                               $r[$a] = $this->_get_var($b); 
-                       }
-                       $this->nodes = Array();
-                       $tpl = get_markup_template($tplfile);
-                       $ret = $this->replace($tpl, $r);
+                       $r[$varname] = $v;
+                       if ($keyname != '')
+                               $r[$keyname] = (($k === 0) ? '0' : $k);
+                       $ret .= $this->replace($args[3], $r);
                        $this->_pop_stack();
-                       return $ret;
-                       
                }
-               
-               /**
-                * DEBUG node
-                * 
-                * {{ debug $var [$var [$var [...]]] }}{{ enddebug }}
-                * 
-                * replace node with <pre>var_dump($var, $var, ...);</pre>
-                */
-               private function _replcb_debug($args){
-                       $vars = array_map('trim', explode(" ",$args[2]));
-                       $vars[] = $args[1];
-
-                       $ret = "<pre>";
-                       foreach ($vars as $var){
-                               $ret .= htmlspecialchars(var_export( $this->_get_var($var), true ));
-                               $ret .= "\n";
-                       }
-                       $ret .= "</pre>";
-                       return $ret;
+               return $ret;
+       }
+
+       /**
+        * INC node
+        * 
+        * {{ inc <templatefile> [with $var1=$var2] }}{{ endinc }}
+        */
+       private function _replcb_inc($args) {
+               if (strpos($args[2], "with")) {
+                       list($tplfile, $newctx) = array_map('trim', explode("with", $args[2]));
+               } else {
+                       $tplfile = trim($args[2]);
+                       $newctx = null;
                }
 
-               private function _replcb_node($m) {
-                       $node = $this->nodes[$m[1]];
-                       if (method_exists($this, "_replcb_".$node[1])){
-                               $s = call_user_func(array($this, "_replcb_".$node[1]),  $node);
-                       } else {
-                               $s = "";
-                       }
-                       $s = preg_replace_callback('/\|\|([0-9]+)\|\|/', array($this, "_replcb_node"), $s);
-                       return $s;
+               if ($tplfile[0] == "$")
+                       $tplfile = $this->_get_var($tplfile);
+
+               $this->_push_stack();
+               $r = $this->r;
+               if (!is_null($newctx)) {
+                       list($a, $b) = array_map('trim', explode("=", $newctx));
+                       $r[$a] = $this->_get_var($b);
                }
-                                               
-               private function _replcb($m){
-                       //var_dump(array_map('htmlspecialchars', $m));
-                       $this->done = false;    
-                       $this->nodes[] = (array) $m;
-                       return "||". (count($this->nodes)-1) ."||";
+               $this->nodes = Array();
+               $tpl = get_markup_template($tplfile);
+               $ret = $this->replace($tpl, $r);
+               $this->_pop_stack();
+               return $ret;
+       }
+
+       /**
+        * DEBUG node
+        * 
+        * {{ debug $var [$var [$var [...]]] }}{{ enddebug }}
+        * 
+        * replace node with <pre>var_dump($var, $var, ...);</pre>
+        */
+       private function _replcb_debug($args) {
+               $vars = array_map('trim', explode(" ", $args[2]));
+               $vars[] = $args[1];
+
+               $ret = "<pre>";
+               foreach ($vars as $var) {
+                       $ret .= htmlspecialchars(var_export($this->_get_var($var), true));
+                       $ret .= "\n";
                }
-               
-               private function _build_nodes($s){
-                       $this->done = false;
-                       while (!$this->done){
-                               $this->done=true;
-                               $s = preg_replace_callback('|{{ *([a-z]*) *([^}]*)}}([^{]*({{ *else *}}[^{]*)?){{ *end\1 *}}|', array($this, "_replcb"), $s);
-                               if ($s==Null) $this->_preg_error();
-                       }
-                       //({{ *else *}}[^{]*)?
-                       krsort($this->nodes);
-                       return $s;
+               $ret .= "</pre>";
+               return $ret;
+       }
+
+       private function _replcb_node($m) {
+               $node = $this->nodes[$m[1]];
+               if (method_exists($this, "_replcb_" . $node[1])) {
+                       $s = call_user_func(array($this, "_replcb_" . $node[1]), $node);
+               } else {
+                       $s = "";
                }
-               
-
-               private function var_replace($s){
-                       $m = array();
-                       /** regexp:
-                        * \$                                           literal $
-                        * (\[)?                                        optional open square bracket
-                        * ([a-zA-Z0-9-_]+\.?)+         var name, followed by optional
-                        *                                                      dot, repeated at least 1 time
-                        * (?(1)\])                                     if there was opened square bracket
-                        *                                                      (subgrup 1), match close bracket
-                        */
-                       if (preg_match_all('/\$(\[)?([a-zA-Z0-9-_]+\.?)+(?(1)\])/', $s,$m)){
-                               
-                               foreach($m[0] as $var){
-                                       $varn = str_replace(array("[","]"), array("",""), $var);
-                                       $val = $this->_get_var($varn, true);
-                                       if ($val!=KEY_NOT_EXISTS)
-                                               $s = str_replace($var, $val, $s);
-                               }
-                       }
-                       
-                       return $s;
+               $s = preg_replace_callback('/\|\|([0-9]+)\|\|/', array($this, "_replcb_node"), $s);
+               return $s;
+       }
+
+       private function _replcb($m) {
+               //var_dump(array_map('htmlspecialchars', $m));
+               $this->done = false;
+               $this->nodes[] = (array) $m;
+               return "||" . (count($this->nodes) - 1) . "||";
+       }
+
+       private function _build_nodes($s) {
+               $this->done = false;
+               while (!$this->done) {
+                       $this->done = true;
+                       $s = preg_replace_callback('|{{ *([a-z]*) *([^}]*)}}([^{]*({{ *else *}}[^{]*)?){{ *end\1 *}}|', array($this, "_replcb"), $s);
+                       if ($s == Null)
+                               $this->_preg_error();
                }
-       
-               public function replace($s, $r) {
-                       $this->r = $r;
-                       
-                       $s = $this->_build_nodes($s);
-
-                       $s = preg_replace_callback('/\|\|([0-9]+)\|\|/', array($this, "_replcb_node"), $s);
-                       if ($s==Null) $this->_preg_error();
-                       
-                       // remove comments block
-                       $s = preg_replace('/{#[^#]*#}/', "" , $s);
-                       
-                       // replace strings recursively (limit to 10 loops)
-                       $os = ""; $count=0;
-                       while($os!=$s && $count<10){
-                               $os=$s; $count++;
-                               $s = $this->var_replace($s);
+               //({{ *else *}}[^{]*)?
+               krsort($this->nodes);
+               return $s;
+       }
+
+       private function var_replace($s) {
+               $m = array();
+               /** regexp:
+                * \$                                           literal $
+                * (\[)?                                        optional open square bracket
+                * ([a-zA-Z0-9-_]+\.?)+         var name, followed by optional
+                *                                                      dot, repeated at least 1 time
+                * (|[a-zA-Z0-9-_:]+)*          pipe followed by filter name and args, zero or many
+                * (?(1)\])                                     if there was opened square bracket
+                *                                                      (subgrup 1), match close bracket
+                */
+               if (preg_match_all('/\$(\[)?([a-zA-Z0-9-_]+\.?)+(\|[a-zA-Z0-9-_:]+)*(?(1)\])/', $s, $m)) {
+                       foreach ($m[0] as $var) {
+
+                               $exp = str_replace(array("[", "]"), array("", ""), $var);
+                               $exptks = explode("|", $exp);
+
+                               $varn = $exptks[0];
+                               unset($exptks[0]);
+                               $val = $this->_get_var($varn, true);
+                               if ($val != KEY_NOT_EXISTS) {
+                                       /* run filters */
+                                       /*
+                                        * Filter are in form of:
+                                        * filtername:arg:arg:arg
+                                        * 
+                                        * "filtername" is function name
+                                        * "arg"s are optional, var value is appended to the end
+                                        *                      if one "arg"==='x' , is replaced with var value
+                                        * 
+                                        * examples:
+                                        * $item.body|htmlspecialchars                          // escape html chars
+                                        * $item.body|htmlspecialchars|strtoupper   // escape html and uppercase result
+                                        * $item.created|date:%Y %M %j                          // format date (created is a timestamp)
+                                        * $item.body|str_replace:cat:dog                       // replace all "cat" with "dog"
+                                        * $item.body|str_replace:cat:dog:x:1           // replace one "cat" with "dog"
+                                        
+                                        */
+                                       foreach ($exptks as $filterstr) {
+                                               $filter = explode(":", $filterstr);
+                                               $filtername = $filter[0];
+                                               unset($filter[0]);
+                                               $valkey = array_search("x", $filter);
+                                               if ($valkey === false) {
+                                                       $filter[] = $val;
+                                               } else {
+                                                       $filter[$valkey] = $val;
+                                               }
+                                               if (function_exists($filtername)) {
+                                                       $val = call_user_func_array($filtername, $filter);
+                                               }
+                                       }
+                                       $s = str_replace($var, $val, $s);
+                               }
                        }
-                       return $s;
                }
-       }
-       
-       $t = new Template;
 
+               return $s;
+       }
 
+       public function replace($s, $r) {
+               $this->r = $r;
 
+               $s = $this->_build_nodes($s);
 
-function template_escape($s) {
+               $s = preg_replace_callback('/\|\|([0-9]+)\|\|/', array($this, "_replcb_node"), $s);
+               if ($s == Null)
+                       $this->_preg_error();
 
-       return str_replace(array('$','{{'),array('!_Doll^Ars1Az_!','!_DoubLe^BraceS4Rw_!'),$s);
+               // remove comments block
+               $s = preg_replace('/{#[^#]*#}/', "", $s);
 
+               // replace strings recursively (limit to 10 loops)
+               $os = "";
+               $count = 0;
+               while ($os != $s && $count < 10) {
+                       $os = $s;
+                       $count++;
+                       $s = $this->var_replace($s);
+               }
+               return $s;
+       }
 
 }
 
-function template_unescape($s) {
+$t = new Template;
 
-       return str_replace(array('!_Doll^Ars1Az_!','!_DoubLe^BraceS4Rw_!'),array('$','{{'),$s);
+function template_escape($s) {
 
+       return str_replace(array('$', '{{'), array('!_Doll^Ars1Az_!', '!_DoubLe^BraceS4Rw_!'), $s);
+}
 
+function template_unescape($s) {
 
+       return str_replace(array('!_Doll^Ars1Az_!', '!_DoubLe^BraceS4Rw_!'), array('$', '{{'), $s);
 }
+
index 9adee8f65cd8d7d9c261f6d16522ea2ed0859cd9..400c248e05d5fd5961f80842449c315caf545f74 100644 (file)
@@ -239,6 +239,9 @@ function parse_url_content(&$a) {
        if(local_user() && intval(get_pconfig(local_user(),'system','plaintext')))
                $textmode = true;
 
+       if(local_user() && (! feature_enabled(local_user(),'richtext')))
+               $textmode = true;
+
        //if($textmode)
        $br = (($textmode) ? "\n" : '<br />');
 
index d4a3db83e0b104516c9c28fcdbfb49e3533825c2..eaa603a282bf537fbdebe9719969199078b98df4 100644 (file)
@@ -602,6 +602,7 @@ function profiles_content(&$a) {
                        '$profile_drop_link' => 'profiles/drop/' . $r[0]['id'] . '?t=' . get_form_security_token("profile_drop"),
                        '$banner' => t('Edit Profile Details'),
                        '$submit' => t('Submit'),
+                       '$profpic' => t('Change Profile Photo'),
                        '$viewprof' => t('View this profile'),
                        '$cr_prof' => t('Create a new profile using these settings'),
                        '$cl_prof' => t('Clone this profile'),
index c23efc7869a7181985afdd73c385dd5d43a74c2a..8a355d68314f427311377490693beb7a1cd6cf34 100644 (file)
@@ -122,10 +122,7 @@ function wall_attach_post(&$a) {
                killme();
        }
 
-       $lf = '<br />';
-
-       if(local_user() && intval(get_pconfig(local_user(),'system','plaintext')))
-               $lf = "\n";
+       $lf = "\n";
 
        echo  $lf . $lf . '[attachment]' . $r[0]['id'] . '[/attachment]' . $lf;
        
index 17de7cceb79e6403c9c9f78f23e4eeec08adcad3..6a6b894fbd49593373242f4737bba2194d76add2 100644 (file)
@@ -160,17 +160,9 @@ function wall_upload_post(&$a) {
 
 //if we get the signal then return the image url info in BBCODE, otherwise this outputs the info and bails (for the ajax image uploader on wall post)
        if ($_REQUEST['hush']!='yeah') {
-
-               /*existing code*/
-               if(local_user() && (intval(get_pconfig(local_user(),'system','plaintext')) || x($_REQUEST['nomce'])) ) {
-                       echo  "\n\n" . '[url=' . $a->get_baseurl() . '/photos/' . $page_owner_nick . '/image/' . $hash . '][img]' . $a->get_baseurl() . "/photo/{$hash}-{$smallest}.".$ph->getExt()."[/img][/url]\n\n";
-               }
-               else {
-                       echo  '<br /><br /><a href="' . $a->get_baseurl() . '/photos/' . $page_owner_nick . '/image/' . $hash . '" ><img src="' . $a->get_baseurl() . "/photo/{$hash}-{$smallest}.".$ph->getExt()."\" alt=\"$basename\" /></a><br /><br />";
-               }
-               /*existing code*/
-               
-       } else {
+               echo  "\n\n" . '[url=' . $a->get_baseurl() . '/photos/' . $page_owner_nick . '/image/' . $hash . '][img]' . $a->get_baseurl() . "/photo/{$hash}-{$smallest}.".$ph->getExt()."[/img][/url]\n\n";
+       }
+       else {
                $m = '[url=' . $a->get_baseurl() . '/photos/' . $page_owner_nick . '/image/' . $hash . '][img]' . $a->get_baseurl() . "/photo/{$hash}-{$smallest}.".$ph->getExt()."[/img][/url]";
                return($m);
        }
diff --git a/mods/sample-nginx.config b/mods/sample-nginx.config
new file mode 100644 (file)
index 0000000..0fb31ef
--- /dev/null
@@ -0,0 +1,111 @@
+##
+# Friendica Nginx configuration
+# by Olaf Conradi
+#
+# On Debian based distributions you can add this file to
+# /etc/nginx/sites-available
+#
+# Then customize to your needs. To enable the configuration
+# symlink it to /etc/nginx/sites-enabled and reload Nginx
+# using /etc/init.d/nginx reload
+##
+
+##
+# You should look at the following URL's in order to grasp a solid understanding
+# of Nginx configuration files in order to fully unleash the power of Nginx.
+#
+# http://wiki.nginx.org/Pitfalls
+# http://wiki.nginx.org/QuickStart
+# http://wiki.nginx.org/Configuration
+##
+
+##
+# This configuration assumes your domain is example.net
+# You have a separate subdomain friendica.example.net
+# You want all friendica traffic to be https
+# You have an SSL certificate and key for your subdomain
+# You have PHP FastCGI Process Manager (php5-fpm) running on localhost
+# You have Friendica installed in /mnt/friendica/www
+##
+
+server {
+  server_name friendica.example.net;
+  index index.php;
+  root /mnt/friendica/www;
+  rewrite ^ https://friendica.example.net$request_uri? permanent;
+}
+
+##
+# Configure Friendica with SSL
+#
+# All requests are routed to the front controller
+# except for certain known file types like images, css, etc.
+# Those are served statically whenever possible with a
+# fall back to the front controller (needed for avatars, for example)
+##
+
+server {
+  listen 443 ssl;
+  server_name friendica.example.net;
+
+  index index.php;
+  root /mnt/friendica/www;
+
+  ssl on;
+  ssl_certificate /etc/nginx/ssl/friendica.example.net.chain.pem;
+  ssl_certificate_key /etc/nginx/ssl/example.net.key;
+  ssl_session_timeout 5m;
+  ssl_protocols SSLv3 TLSv1;
+  ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv3:+EXP;
+  ssl_prefer_server_ciphers on;
+
+  # allow uploads up to 20MB in size
+  client_max_body_size 20m;
+  client_body_buffer_size 128k;
+
+  # rewrite to front controller as default rule
+  location / {
+    rewrite ^/(.*) /index.php?q=$uri&$args last;
+  }
+
+  # make sure webfinger and other well known services aren't blocked
+  # by denying dot files and rewrite request to the front controller
+  location ^~ /.well-known/ {
+    allow all;
+    rewrite ^/(.*) /index.php?q=$uri&$args last;
+  }
+
+  # statically serve these file types when possible
+  # otherwise fall back to front controller
+  # allow browser to cache them
+  # added .htm for advanced source code editor library
+  location ~* \.(jpg|jpeg|gif|png|css|js|htm|html)$ {
+    expires 30d;
+    try_files $uri /index.php?q=$uri&$args;
+  }
+
+  # block these file types
+  location ~* \.(tpl|md|tgz|log|out)$ {
+    deny all;
+  }
+
+  # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
+  location ~* \.php$ {
+    fastcgi_split_path_info ^(.+\.php)(/.+)$;
+    # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
+
+    # With php5-cgi alone:
+    # fastcgi_pass 127.0.0.1:9000;
+
+    # With php5-fpm:
+    fastcgi_pass unix:/var/run/php5-fpm.sock;
+    fastcgi_index index.php;
+    include fastcgi_params;
+  }
+
+  # deny access to all dot files
+  location ~ /\. {
+    deny all;
+  }
+}
+
index 9cc9fe15a60117c46c73a7861e07e9de7c8236f1..0c84146f9bb98e00ea0caf1d2ab5dde5c4de8ff8 100644 (file)
@@ -99,6 +99,7 @@ class Item extends BaseObject {
 
                $conv = $this->get_conversation();
 
+
                $lock = ((($item['private'] == 1) || (($item['uid'] == local_user()) && (strlen($item['allow_cid']) || strlen($item['allow_gid']) 
                        || strlen($item['deny_cid']) || strlen($item['deny_gid']))))
                        ? t('Private Message')
@@ -496,6 +497,12 @@ class Item extends BaseObject {
                if($conv) {
                        // This will allow us to comment on wall-to-wall items owned by our friends
                        // and community forums even if somebody else wrote the post.
+
+                       // bug #517 - this fixes for conversation owner
+                       if($conv->get_mode() == 'profile' && $conv->get_profile_owner() == local_user())
+                               return true; 
+
+                       // this fixes for visitors
                        return ($this->writable || ($this->is_visiting() && $conv->get_mode() == 'profile'));
                }
                return $this->writable;
index 5f2e345d039ab3ffb8445b0d379199c837f72dfe..b66db3e5555f4fe412f511a18ca711137abc324d 100644 (file)
@@ -6,9 +6,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: 3.0.1545\n"
+"Project-Id-Version: 3.1.1559\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-12-02 10:00-0800\n"
+"POT-Creation-Date: 2012-12-16 10:00-0800\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -54,12 +54,13 @@ msgstr ""
 #: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
 #: ../../mod/wall_upload.php:66 ../../mod/follow.php:9
 #: ../../mod/display.php:165 ../../mod/profiles.php:7
-#: ../../mod/profiles.php:424 ../../mod/delegate.php:6
+#: ../../mod/profiles.php:431 ../../mod/delegate.php:6
 #: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
 #: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
-#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
-#: ../../addon/fbpost/fbpost.php:165
-#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3977
+#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:166
+#: ../../addon/fbpost/fbpost.php:172
+#: ../../addon/dav/friendica/layout.fnk.php:354
+#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:3977
 #: ../../index.php:333 ../../addon.old/facebook/facebook.php:510
 #: ../../addon.old/facebook/facebook.php:516
 #: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
@@ -141,11 +142,11 @@ msgstr ""
 #: ../../mod/settings.php:1017 ../../mod/group.php:85 ../../mod/mood.php:137
 #: ../../mod/message.php:301 ../../mod/message.php:487 ../../mod/admin.php:445
 #: ../../mod/admin.php:692 ../../mod/admin.php:829 ../../mod/admin.php:1028
-#: ../../mod/admin.php:1115 ../../mod/profiles.php:597
-#: ../../mod/invite.php:119 ../../addon/fromgplus/fromgplus.php:40
+#: ../../mod/admin.php:1115 ../../mod/profiles.php:604
+#: ../../mod/invite.php:119 ../../addon/fromgplus/fromgplus.php:44
 #: ../../addon/facebook/facebook.php:619
 #: ../../addon/snautofollow/snautofollow.php:64
-#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76
+#: ../../addon/fbpost/fbpost.php:272 ../../addon/yourls/yourls.php:76
 #: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88
 #: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158
 #: ../../addon/uhremotestorage/uhremotestorage.php:89
@@ -154,16 +155,17 @@ msgstr ""
 #: ../../addon/remote_permissions/remote_permissions.php:195
 #: ../../addon/startpage/startpage.php:92
 #: ../../addon/geonames/geonames.php:187
-#: ../../addon/forumlist/forumlist.php:175
+#: ../../addon/forumlist/forumlist.php:178
 #: ../../addon/impressum/impressum.php:83
 #: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
 #: ../../addon/qcomment/qcomment.php:61
 #: ../../addon/openstreetmap/openstreetmap.php:70
 #: ../../addon/group_text/group_text.php:84
 #: ../../addon/libravatar/libravatar.php:99
-#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87
-#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84
-#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95
+#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:91
+#: ../../addon/altpager/altpager.php:98 ../../addon/mathjax/mathjax.php:42
+#: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:98
+#: ../../addon/gravatar/gravatar.php:95
 #: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
 #: ../../addon/jappixmini/jappixmini.php:307
 #: ../../addon/statusnet/statusnet.php:278
@@ -171,7 +173,7 @@ msgstr ""
 #: ../../addon/statusnet/statusnet.php:318
 #: ../../addon/statusnet/statusnet.php:325
 #: ../../addon/statusnet/statusnet.php:353
-#: ../../addon/statusnet/statusnet.php:685 ../../addon/tumblr/tumblr.php:90
+#: ../../addon/statusnet/statusnet.php:700 ../../addon/tumblr/tumblr.php:233
 #: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
 #: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
 #: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
@@ -182,7 +184,7 @@ msgstr ""
 #: ../../view/theme/diabook/theme.php:642
 #: ../../view/theme/diabook/config.php:152
 #: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
-#: ../../object/Item.php:570 ../../addon.old/fromgplus/fromgplus.php:40
+#: ../../object/Item.php:577 ../../addon.old/fromgplus/fromgplus.php:40
 #: ../../addon.old/facebook/facebook.php:619
 #: ../../addon.old/snautofollow/snautofollow.php:64
 #: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226
@@ -415,7 +417,7 @@ msgstr ""
 #: ../../mod/settings.php:1004 ../../mod/settings.php:1005
 #: ../../mod/settings.php:1006 ../../mod/settings.php:1007
 #: ../../mod/settings.php:1008 ../../mod/register.php:237
-#: ../../mod/profiles.php:577
+#: ../../mod/profiles.php:584
 msgid "Yes"
 msgstr ""
 
@@ -427,7 +429,7 @@ msgstr ""
 #: ../../mod/settings.php:1004 ../../mod/settings.php:1005
 #: ../../mod/settings.php:1006 ../../mod/settings.php:1007
 #: ../../mod/settings.php:1008 ../../mod/register.php:238
-#: ../../mod/profiles.php:578
+#: ../../mod/profiles.php:585
 msgid "No"
 msgstr ""
 
@@ -585,7 +587,7 @@ msgid "Use as profile photo"
 msgstr ""
 
 #: ../../mod/photos.php:1243 ../../mod/content.php:603
-#: ../../object/Item.php:104
+#: ../../object/Item.php:105
 msgid "Private Message"
 msgstr ""
 
@@ -626,12 +628,12 @@ msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr ""
 
 #: ../../mod/photos.php:1381 ../../mod/content.php:667
-#: ../../object/Item.php:202
+#: ../../object/Item.php:203
 msgid "I like this (toggle)"
 msgstr ""
 
 #: ../../mod/photos.php:1382 ../../mod/content.php:668
-#: ../../object/Item.php:203
+#: ../../object/Item.php:204
 msgid "I don't like this (toggle)"
 msgstr ""
 
@@ -643,33 +645,33 @@ msgstr ""
 #: ../../mod/content.php:482 ../../mod/content.php:848
 #: ../../mod/wallmessage.php:152 ../../mod/message.php:300
 #: ../../mod/message.php:488 ../../include/conversation.php:624
-#: ../../include/conversation.php:988 ../../object/Item.php:269
+#: ../../include/conversation.php:988 ../../object/Item.php:270
 msgid "Please wait"
 msgstr ""
 
 #: ../../mod/photos.php:1400 ../../mod/photos.php:1444
 #: ../../mod/photos.php:1516 ../../mod/content.php:690
-#: ../../object/Item.php:567
+#: ../../object/Item.php:574
 msgid "This is you"
 msgstr ""
 
 #: ../../mod/photos.php:1402 ../../mod/photos.php:1446
 #: ../../mod/photos.php:1518 ../../mod/content.php:692 ../../boot.php:608
-#: ../../object/Item.php:266 ../../object/Item.php:569
+#: ../../object/Item.php:267 ../../object/Item.php:576
 msgid "Comment"
 msgstr ""
 
 #: ../../mod/photos.php:1404 ../../mod/photos.php:1448
 #: ../../mod/photos.php:1520 ../../mod/editpost.php:142
 #: ../../mod/content.php:702 ../../include/conversation.php:1006
-#: ../../object/Item.php:579
+#: ../../object/Item.php:586
 msgid "Preview"
 msgstr ""
 
 #: ../../mod/photos.php:1488 ../../mod/content.php:439
 #: ../../mod/content.php:724 ../../mod/settings.php:622
 #: ../../mod/group.php:168 ../../mod/admin.php:699
-#: ../../include/conversation.php:569 ../../object/Item.php:118
+#: ../../include/conversation.php:569 ../../object/Item.php:119
 msgid "Delete"
 msgstr ""
 
@@ -740,7 +742,7 @@ msgid "Post to Email"
 msgstr ""
 
 #: ../../mod/editpost.php:106 ../../mod/content.php:711
-#: ../../mod/settings.php:621 ../../object/Item.php:108
+#: ../../mod/settings.php:621 ../../object/Item.php:109
 msgid "Edit"
 msgstr ""
 
@@ -1426,19 +1428,19 @@ msgid "Group: "
 msgstr ""
 
 #: ../../mod/content.php:438 ../../mod/content.php:723
-#: ../../include/conversation.php:568 ../../object/Item.php:117
+#: ../../include/conversation.php:568 ../../object/Item.php:118
 msgid "Select"
 msgstr ""
 
 #: ../../mod/content.php:455 ../../mod/content.php:817
 #: ../../mod/content.php:818 ../../include/conversation.php:587
-#: ../../object/Item.php:234 ../../object/Item.php:235
+#: ../../object/Item.php:235 ../../object/Item.php:236
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr ""
 
 #: ../../mod/content.php:465 ../../mod/content.php:829
-#: ../../include/conversation.php:607 ../../object/Item.php:248
+#: ../../include/conversation.php:607 ../../object/Item.php:249
 #, php-format
 msgid "%s from %s"
 msgstr ""
@@ -1447,7 +1449,7 @@ msgstr ""
 msgid "View in context"
 msgstr ""
 
-#: ../../mod/content.php:586 ../../object/Item.php:288
+#: ../../mod/content.php:586 ../../object/Item.php:289
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
@@ -1455,7 +1457,7 @@ msgstr[0] ""
 msgstr[1] ""
 
 #: ../../mod/content.php:588 ../../include/text.php:1446
-#: ../../object/Item.php:290 ../../object/Item.php:303
+#: ../../object/Item.php:291 ../../object/Item.php:304
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] ""
@@ -1464,92 +1466,92 @@ msgstr[1] ""
 #: ../../mod/content.php:589 ../../addon/page/page.php:77
 #: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
 #: ../../include/contact_widgets.php:204 ../../boot.php:609
-#: ../../object/Item.php:291 ../../addon.old/page/page.php:77
+#: ../../object/Item.php:292 ../../addon.old/page/page.php:77
 #: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119
 msgid "show more"
 msgstr ""
 
-#: ../../mod/content.php:667 ../../object/Item.php:202
+#: ../../mod/content.php:667 ../../object/Item.php:203
 msgid "like"
 msgstr ""
 
-#: ../../mod/content.php:668 ../../object/Item.php:203
+#: ../../mod/content.php:668 ../../object/Item.php:204
 msgid "dislike"
 msgstr ""
 
-#: ../../mod/content.php:670 ../../object/Item.php:205
+#: ../../mod/content.php:670 ../../object/Item.php:206
 msgid "Share this"
 msgstr ""
 
-#: ../../mod/content.php:670 ../../object/Item.php:205
+#: ../../mod/content.php:670 ../../object/Item.php:206
 msgid "share"
 msgstr ""
 
-#: ../../mod/content.php:694 ../../object/Item.php:571
+#: ../../mod/content.php:694 ../../object/Item.php:578
 msgid "Bold"
 msgstr ""
 
-#: ../../mod/content.php:695 ../../object/Item.php:572
+#: ../../mod/content.php:695 ../../object/Item.php:579
 msgid "Italic"
 msgstr ""
 
-#: ../../mod/content.php:696 ../../object/Item.php:573
+#: ../../mod/content.php:696 ../../object/Item.php:580
 msgid "Underline"
 msgstr ""
 
-#: ../../mod/content.php:697 ../../object/Item.php:574
+#: ../../mod/content.php:697 ../../object/Item.php:581
 msgid "Quote"
 msgstr ""
 
-#: ../../mod/content.php:698 ../../object/Item.php:575
+#: ../../mod/content.php:698 ../../object/Item.php:582
 msgid "Code"
 msgstr ""
 
-#: ../../mod/content.php:699 ../../object/Item.php:576
+#: ../../mod/content.php:699 ../../object/Item.php:583
 msgid "Image"
 msgstr ""
 
-#: ../../mod/content.php:700 ../../object/Item.php:577
+#: ../../mod/content.php:700 ../../object/Item.php:584
 msgid "Link"
 msgstr ""
 
-#: ../../mod/content.php:701 ../../object/Item.php:578
+#: ../../mod/content.php:701 ../../object/Item.php:585
 msgid "Video"
 msgstr ""
 
-#: ../../mod/content.php:736 ../../object/Item.php:181
+#: ../../mod/content.php:736 ../../object/Item.php:182
 msgid "add star"
 msgstr ""
 
-#: ../../mod/content.php:737 ../../object/Item.php:182
+#: ../../mod/content.php:737 ../../object/Item.php:183
 msgid "remove star"
 msgstr ""
 
-#: ../../mod/content.php:738 ../../object/Item.php:183
+#: ../../mod/content.php:738 ../../object/Item.php:184
 msgid "toggle star status"
 msgstr ""
 
-#: ../../mod/content.php:741 ../../object/Item.php:186
+#: ../../mod/content.php:741 ../../object/Item.php:187
 msgid "starred"
 msgstr ""
 
-#: ../../mod/content.php:742 ../../object/Item.php:191
+#: ../../mod/content.php:742 ../../object/Item.php:192
 msgid "add tag"
 msgstr ""
 
-#: ../../mod/content.php:746 ../../object/Item.php:121
+#: ../../mod/content.php:746 ../../object/Item.php:122
 msgid "save to folder"
 msgstr ""
 
-#: ../../mod/content.php:819 ../../object/Item.php:236
+#: ../../mod/content.php:819 ../../object/Item.php:237
 msgid "to"
 msgstr ""
 
-#: ../../mod/content.php:820 ../../object/Item.php:238
+#: ../../mod/content.php:820 ../../object/Item.php:239
 msgid "Wall-to-Wall"
 msgstr ""
 
-#: ../../mod/content.php:821 ../../object/Item.php:239
+#: ../../mod/content.php:821 ../../object/Item.php:240
 msgid "via Wall-To-Wall:"
 msgstr ""
 
@@ -2068,7 +2070,7 @@ msgstr ""
 #: ../../mod/register.php:91 ../../mod/register.php:145
 #: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
 #: ../../addon/facebook/facebook.php:702
-#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
+#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:777
 #: ../../addon/public_server/public_server.php:62
 #: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3365
 #: ../../boot.php:824 ../../addon.old/facebook/facebook.php:702
@@ -2194,12 +2196,12 @@ msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
 #: ../../mod/settings.php:487 ../../addon/facebook/facebook.php:495
-#: ../../addon/fbpost/fbpost.php:144
+#: ../../addon/fbpost/fbpost.php:151
 #: ../../addon/remote_permissions/remote_permissions.php:204
 #: ../../addon/impressum/impressum.php:78
 #: ../../addon/openstreetmap/openstreetmap.php:80
-#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
-#: ../../addon/twitter/twitter.php:501
+#: ../../addon/altpager/altpager.php:107 ../../addon/mathjax/mathjax.php:66
+#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:501
 #: ../../addon.old/facebook/facebook.php:495
 #: ../../addon.old/fbpost/fbpost.php:144
 #: ../../addon.old/impressum/impressum.php:78
@@ -2215,13 +2217,13 @@ msgid "Add application"
 msgstr ""
 
 #: ../../mod/settings.php:562 ../../mod/settings.php:588
-#: ../../addon/statusnet/statusnet.php:679
+#: ../../addon/statusnet/statusnet.php:694
 #: ../../addon.old/statusnet/statusnet.php:570
 msgid "Consumer Key"
 msgstr ""
 
 #: ../../mod/settings.php:563 ../../mod/settings.php:589
-#: ../../addon/statusnet/statusnet.php:678
+#: ../../addon/statusnet/statusnet.php:693
 #: ../../addon.old/statusnet/statusnet.php:569
 msgid "Consumer Secret"
 msgstr ""
@@ -2327,6 +2329,7 @@ msgid "Security:"
 msgstr ""
 
 #: ../../mod/settings.php:731 ../../mod/settings.php:736
+#: ../../addon/fbpost/fbpost.php:247 ../../addon/fbpost/fbpost.php:249
 #: ../../addon/dav/common/wdcal_edit.inc.php:191
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:191
 msgid "None"
@@ -2766,7 +2769,7 @@ msgstr ""
 #: ../../mod/notes.php:63 ../../mod/filer.php:30
 #: ../../addon/facebook/facebook.php:770
 #: ../../addon/privacy_image_cache/privacy_image_cache.php:281
-#: ../../addon/fbpost/fbpost.php:267
+#: ../../addon/fbpost/fbpost.php:314
 #: ../../addon/dav/friendica/layout.fnk.php:441
 #: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:688
 #: ../../addon.old/facebook/facebook.php:770
@@ -2968,7 +2971,7 @@ msgid "Connecting"
 msgstr ""
 
 #: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239
+#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:286
 #: ../../include/contact_selectors.php:81
 #: ../../addon.old/facebook/facebook.php:728
 #: ../../addon.old/fbpost/fbpost.php:239
@@ -3654,7 +3657,7 @@ msgstr ""
 msgid "Advanced"
 msgstr ""
 
-#: ../../mod/admin.php:453 ../../addon/statusnet/statusnet.php:676
+#: ../../mod/admin.php:453 ../../addon/statusnet/statusnet.php:691
 #: ../../addon.old/statusnet/statusnet.php:567
 msgid "Site name"
 msgstr ""
@@ -4290,8 +4293,8 @@ msgstr ""
 msgid "Search"
 msgstr ""
 
-#: ../../mod/profiles.php:21 ../../mod/profiles.php:434
-#: ../../mod/profiles.php:548 ../../mod/dfrn_confirm.php:62
+#: ../../mod/profiles.php:21 ../../mod/profiles.php:441
+#: ../../mod/profiles.php:555 ../../mod/dfrn_confirm.php:62
 msgid "Profile not found."
 msgstr ""
 
@@ -4299,303 +4302,307 @@ msgstr ""
 msgid "Profile Name is required."
 msgstr ""
 
-#: ../../mod/profiles.php:171
+#: ../../mod/profiles.php:178
 msgid "Marital Status"
 msgstr ""
 
-#: ../../mod/profiles.php:175
+#: ../../mod/profiles.php:182
 msgid "Romantic Partner"
 msgstr ""
 
-#: ../../mod/profiles.php:179
+#: ../../mod/profiles.php:186
 msgid "Likes"
 msgstr ""
 
-#: ../../mod/profiles.php:183
+#: ../../mod/profiles.php:190
 msgid "Dislikes"
 msgstr ""
 
-#: ../../mod/profiles.php:187
+#: ../../mod/profiles.php:194
 msgid "Work/Employment"
 msgstr ""
 
-#: ../../mod/profiles.php:190
+#: ../../mod/profiles.php:197
 msgid "Religion"
 msgstr ""
 
-#: ../../mod/profiles.php:194
+#: ../../mod/profiles.php:201
 msgid "Political Views"
 msgstr ""
 
-#: ../../mod/profiles.php:198
+#: ../../mod/profiles.php:205
 msgid "Gender"
 msgstr ""
 
-#: ../../mod/profiles.php:202
+#: ../../mod/profiles.php:209
 msgid "Sexual Preference"
 msgstr ""
 
-#: ../../mod/profiles.php:206
+#: ../../mod/profiles.php:213
 msgid "Homepage"
 msgstr ""
 
-#: ../../mod/profiles.php:210
+#: ../../mod/profiles.php:217
 msgid "Interests"
 msgstr ""
 
-#: ../../mod/profiles.php:214
+#: ../../mod/profiles.php:221
 msgid "Address"
 msgstr ""
 
-#: ../../mod/profiles.php:221 ../../addon/dav/common/wdcal_edit.inc.php:183
+#: ../../mod/profiles.php:228 ../../addon/dav/common/wdcal_edit.inc.php:183
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:183
 msgid "Location"
 msgstr ""
 
-#: ../../mod/profiles.php:304
+#: ../../mod/profiles.php:311
 msgid "Profile updated."
 msgstr ""
 
-#: ../../mod/profiles.php:371
+#: ../../mod/profiles.php:378
 msgid " and "
 msgstr ""
 
-#: ../../mod/profiles.php:379
+#: ../../mod/profiles.php:386
 msgid "public profile"
 msgstr ""
 
-#: ../../mod/profiles.php:382
+#: ../../mod/profiles.php:389
 #, php-format
 msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr ""
 
-#: ../../mod/profiles.php:383
+#: ../../mod/profiles.php:390
 #, php-format
 msgid " - Visit %1$s's %2$s"
 msgstr ""
 
-#: ../../mod/profiles.php:386
+#: ../../mod/profiles.php:393
 #, php-format
 msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr ""
 
-#: ../../mod/profiles.php:453
+#: ../../mod/profiles.php:460
 msgid "Profile deleted."
 msgstr ""
 
-#: ../../mod/profiles.php:471 ../../mod/profiles.php:505
+#: ../../mod/profiles.php:478 ../../mod/profiles.php:512
 msgid "Profile-"
 msgstr ""
 
-#: ../../mod/profiles.php:490 ../../mod/profiles.php:532
+#: ../../mod/profiles.php:497 ../../mod/profiles.php:539
 msgid "New profile created."
 msgstr ""
 
-#: ../../mod/profiles.php:511
+#: ../../mod/profiles.php:518
 msgid "Profile unavailable to clone."
 msgstr ""
 
-#: ../../mod/profiles.php:576
+#: ../../mod/profiles.php:583
 msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr ""
 
-#: ../../mod/profiles.php:596
+#: ../../mod/profiles.php:603
 msgid "Edit Profile Details"
 msgstr ""
 
-#: ../../mod/profiles.php:598
+#: ../../mod/profiles.php:605
+msgid "Change Profile Photo"
+msgstr ""
+
+#: ../../mod/profiles.php:606
 msgid "View this profile"
 msgstr ""
 
-#: ../../mod/profiles.php:599
+#: ../../mod/profiles.php:607
 msgid "Create a new profile using these settings"
 msgstr ""
 
-#: ../../mod/profiles.php:600
+#: ../../mod/profiles.php:608
 msgid "Clone this profile"
 msgstr ""
 
-#: ../../mod/profiles.php:601
+#: ../../mod/profiles.php:609
 msgid "Delete this profile"
 msgstr ""
 
-#: ../../mod/profiles.php:602
+#: ../../mod/profiles.php:610
 msgid "Profile Name:"
 msgstr ""
 
-#: ../../mod/profiles.php:603
+#: ../../mod/profiles.php:611
 msgid "Your Full Name:"
 msgstr ""
 
-#: ../../mod/profiles.php:604
+#: ../../mod/profiles.php:612
 msgid "Title/Description:"
 msgstr ""
 
-#: ../../mod/profiles.php:605
+#: ../../mod/profiles.php:613
 msgid "Your Gender:"
 msgstr ""
 
-#: ../../mod/profiles.php:606
+#: ../../mod/profiles.php:614
 #, php-format
 msgid "Birthday (%s):"
 msgstr ""
 
-#: ../../mod/profiles.php:607
+#: ../../mod/profiles.php:615
 msgid "Street Address:"
 msgstr ""
 
-#: ../../mod/profiles.php:608
+#: ../../mod/profiles.php:616
 msgid "Locality/City:"
 msgstr ""
 
-#: ../../mod/profiles.php:609
+#: ../../mod/profiles.php:617
 msgid "Postal/Zip Code:"
 msgstr ""
 
-#: ../../mod/profiles.php:610
+#: ../../mod/profiles.php:618
 msgid "Country:"
 msgstr ""
 
-#: ../../mod/profiles.php:611
+#: ../../mod/profiles.php:619
 msgid "Region/State:"
 msgstr ""
 
-#: ../../mod/profiles.php:612
+#: ../../mod/profiles.php:620
 msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr ""
 
-#: ../../mod/profiles.php:613
+#: ../../mod/profiles.php:621
 msgid "Who: (if applicable)"
 msgstr ""
 
-#: ../../mod/profiles.php:614
+#: ../../mod/profiles.php:622
 msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr ""
 
-#: ../../mod/profiles.php:615
+#: ../../mod/profiles.php:623
 msgid "Since [date]:"
 msgstr ""
 
-#: ../../mod/profiles.php:616 ../../include/profile_advanced.php:46
+#: ../../mod/profiles.php:624 ../../include/profile_advanced.php:46
 msgid "Sexual Preference:"
 msgstr ""
 
-#: ../../mod/profiles.php:617
+#: ../../mod/profiles.php:625
 msgid "Homepage URL:"
 msgstr ""
 
-#: ../../mod/profiles.php:618 ../../include/profile_advanced.php:50
+#: ../../mod/profiles.php:626 ../../include/profile_advanced.php:50
 msgid "Hometown:"
 msgstr ""
 
-#: ../../mod/profiles.php:619 ../../include/profile_advanced.php:54
+#: ../../mod/profiles.php:627 ../../include/profile_advanced.php:54
 msgid "Political Views:"
 msgstr ""
 
-#: ../../mod/profiles.php:620
+#: ../../mod/profiles.php:628
 msgid "Religious Views:"
 msgstr ""
 
-#: ../../mod/profiles.php:621
+#: ../../mod/profiles.php:629
 msgid "Public Keywords:"
 msgstr ""
 
-#: ../../mod/profiles.php:622
+#: ../../mod/profiles.php:630
 msgid "Private Keywords:"
 msgstr ""
 
-#: ../../mod/profiles.php:623 ../../include/profile_advanced.php:62
+#: ../../mod/profiles.php:631 ../../include/profile_advanced.php:62
 msgid "Likes:"
 msgstr ""
 
-#: ../../mod/profiles.php:624 ../../include/profile_advanced.php:64
+#: ../../mod/profiles.php:632 ../../include/profile_advanced.php:64
 msgid "Dislikes:"
 msgstr ""
 
-#: ../../mod/profiles.php:625
+#: ../../mod/profiles.php:633
 msgid "Example: fishing photography software"
 msgstr ""
 
-#: ../../mod/profiles.php:626
+#: ../../mod/profiles.php:634
 msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr ""
 
-#: ../../mod/profiles.php:627
+#: ../../mod/profiles.php:635
 msgid "(Used for searching profiles, never shown to others)"
 msgstr ""
 
-#: ../../mod/profiles.php:628
+#: ../../mod/profiles.php:636
 msgid "Tell us about yourself..."
 msgstr ""
 
-#: ../../mod/profiles.php:629
+#: ../../mod/profiles.php:637
 msgid "Hobbies/Interests"
 msgstr ""
 
-#: ../../mod/profiles.php:630
+#: ../../mod/profiles.php:638
 msgid "Contact information and Social Networks"
 msgstr ""
 
-#: ../../mod/profiles.php:631
+#: ../../mod/profiles.php:639
 msgid "Musical interests"
 msgstr ""
 
-#: ../../mod/profiles.php:632
+#: ../../mod/profiles.php:640
 msgid "Books, literature"
 msgstr ""
 
-#: ../../mod/profiles.php:633
+#: ../../mod/profiles.php:641
 msgid "Television"
 msgstr ""
 
-#: ../../mod/profiles.php:634
+#: ../../mod/profiles.php:642
 msgid "Film/dance/culture/entertainment"
 msgstr ""
 
-#: ../../mod/profiles.php:635
+#: ../../mod/profiles.php:643
 msgid "Love/romance"
 msgstr ""
 
-#: ../../mod/profiles.php:636
+#: ../../mod/profiles.php:644
 msgid "Work/employment"
 msgstr ""
 
-#: ../../mod/profiles.php:637
+#: ../../mod/profiles.php:645
 msgid "School/education"
 msgstr ""
 
-#: ../../mod/profiles.php:642
+#: ../../mod/profiles.php:650
 msgid ""
 "This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
 "be visible to anybody using the internet."
 msgstr ""
 
-#: ../../mod/profiles.php:652 ../../mod/directory.php:111
+#: ../../mod/profiles.php:660 ../../mod/directory.php:111
 #: ../../addon/forumdirectory/forumdirectory.php:133
 msgid "Age: "
 msgstr ""
 
-#: ../../mod/profiles.php:691
+#: ../../mod/profiles.php:699
 msgid "Edit/Manage Profiles"
 msgstr ""
 
-#: ../../mod/profiles.php:692 ../../boot.php:1244
+#: ../../mod/profiles.php:700 ../../boot.php:1244
 msgid "Change profile photo"
 msgstr ""
 
-#: ../../mod/profiles.php:693 ../../boot.php:1245
+#: ../../mod/profiles.php:701 ../../boot.php:1245
 msgid "Create New Profile"
 msgstr ""
 
-#: ../../mod/profiles.php:704 ../../boot.php:1255
+#: ../../mod/profiles.php:712 ../../boot.php:1255
 msgid "Profile Image"
 msgstr ""
 
-#: ../../mod/profiles.php:706 ../../boot.php:1258
+#: ../../mod/profiles.php:714 ../../boot.php:1258
 msgid "visible to everybody"
 msgstr ""
 
-#: ../../mod/profiles.php:707 ../../boot.php:1259
+#: ../../mod/profiles.php:715 ../../boot.php:1259
 msgid "Edit visibility"
 msgstr ""
 
@@ -4925,22 +4932,22 @@ msgstr ""
 msgid "%1$s has joined %2$s"
 msgstr ""
 
-#: ../../addon/fromgplus/fromgplus.php:29
+#: ../../addon/fromgplus/fromgplus.php:33
 #: ../../addon.old/fromgplus/fromgplus.php:29
 msgid "Google+ Import Settings"
 msgstr ""
 
-#: ../../addon/fromgplus/fromgplus.php:32
+#: ../../addon/fromgplus/fromgplus.php:36
 #: ../../addon.old/fromgplus/fromgplus.php:32
 msgid "Enable Google+ Import"
 msgstr ""
 
-#: ../../addon/fromgplus/fromgplus.php:35
+#: ../../addon/fromgplus/fromgplus.php:39
 #: ../../addon.old/fromgplus/fromgplus.php:35
 msgid "Google Account ID"
 msgstr ""
 
-#: ../../addon/fromgplus/fromgplus.php:55
+#: ../../addon/fromgplus/fromgplus.php:59
 #: ../../addon.old/fromgplus/fromgplus.php:55
 msgid "Google+ Import Settings saved."
 msgstr ""
@@ -4955,7 +4962,7 @@ msgstr ""
 msgid "Updating contacts"
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192
+#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:199
 #: ../../addon.old/facebook/facebook.php:551
 #: ../../addon.old/fbpost/fbpost.php:192
 msgid "Facebook API key is missing."
@@ -4976,7 +4983,7 @@ msgstr ""
 msgid "Remove Facebook connector"
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217
+#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:224
 #: ../../addon.old/facebook/facebook.php:576
 #: ../../addon.old/fbpost/fbpost.php:217
 msgid ""
@@ -4984,7 +4991,7 @@ msgid ""
 "changed.]"
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224
+#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:231
 #: ../../addon.old/facebook/facebook.php:583
 #: ../../addon.old/fbpost/fbpost.php:224
 msgid "Post to Facebook by default"
@@ -5064,13 +5071,13 @@ msgstr ""
 msgid "Facebook Connector Settings"
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255
+#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:302
 #: ../../addon.old/facebook/facebook.php:744
 #: ../../addon.old/fbpost/fbpost.php:255
 msgid "Facebook API Key"
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262
+#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:309
 #: ../../addon.old/facebook/facebook.php:754
 #: ../../addon.old/fbpost/fbpost.php:262
 msgid ""
@@ -5098,13 +5105,13 @@ msgid ""
 "going on."
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264
+#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:311
 #: ../../addon.old/facebook/facebook.php:766
 #: ../../addon.old/fbpost/fbpost.php:264
 msgid "App-ID / API-Key"
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265
+#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:312
 #: ../../addon.old/facebook/facebook.php:767
 #: ../../addon.old/fbpost/fbpost.php:265
 msgid "Application secret"
@@ -5148,7 +5155,7 @@ msgstr ""
 msgid "Activate Real-Time Updates"
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282
+#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:329
 #: ../../addon/dav/friendica/layout.fnk.php:361
 #: ../../addon.old/facebook/facebook.php:799
 #: ../../addon.old/fbpost/fbpost.php:282
@@ -5156,13 +5163,13 @@ msgstr ""
 msgid "The new values have been saved."
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301
+#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:348
 #: ../../addon.old/facebook/facebook.php:823
 #: ../../addon.old/fbpost/fbpost.php:301
 msgid "Post to Facebook"
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399
+#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:446
 #: ../../addon.old/facebook/facebook.php:921
 #: ../../addon.old/fbpost/fbpost.php:399
 msgid ""
@@ -5170,31 +5177,31 @@ msgid ""
 "conflict."
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610
+#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:722
 #: ../../addon.old/facebook/facebook.php:1149
 #: ../../addon.old/fbpost/fbpost.php:610
 msgid "View on Friendica"
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643
+#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:759
 #: ../../addon.old/facebook/facebook.php:1182
 #: ../../addon.old/fbpost/fbpost.php:643
 msgid "Facebook post failed. Queued for retry."
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683
+#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:799
 #: ../../addon.old/facebook/facebook.php:1222
 #: ../../addon.old/fbpost/fbpost.php:683
 msgid "Your Facebook connection became invalid. Please Re-authenticate."
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684
+#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:800
 #: ../../addon.old/facebook/facebook.php:1223
 #: ../../addon.old/fbpost/fbpost.php:684
 msgid "Facebook connection became invalid"
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685
+#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:801
 #: ../../addon.old/facebook/facebook.php:1224
 #: ../../addon.old/fbpost/fbpost.php:685
 #, php-format
@@ -5246,23 +5253,31 @@ msgstr ""
 msgid "Delete the whole cache"
 msgstr ""
 
-#: ../../addon/fbpost/fbpost.php:172 ../../addon.old/fbpost/fbpost.php:172
+#: ../../addon/fbpost/fbpost.php:179 ../../addon.old/fbpost/fbpost.php:172
 msgid "Facebook Post disabled"
 msgstr ""
 
-#: ../../addon/fbpost/fbpost.php:199 ../../addon.old/fbpost/fbpost.php:199
+#: ../../addon/fbpost/fbpost.php:206 ../../addon.old/fbpost/fbpost.php:199
 msgid "Facebook Post"
 msgstr ""
 
-#: ../../addon/fbpost/fbpost.php:205 ../../addon.old/fbpost/fbpost.php:205
+#: ../../addon/fbpost/fbpost.php:212 ../../addon.old/fbpost/fbpost.php:205
 msgid "Install Facebook Post connector for this account."
 msgstr ""
 
-#: ../../addon/fbpost/fbpost.php:212 ../../addon.old/fbpost/fbpost.php:212
+#: ../../addon/fbpost/fbpost.php:219 ../../addon.old/fbpost/fbpost.php:212
 msgid "Remove Facebook Post connector"
 msgstr ""
 
-#: ../../addon/fbpost/fbpost.php:240 ../../addon.old/fbpost/fbpost.php:240
+#: ../../addon/fbpost/fbpost.php:235
+msgid "Suppress \"View on friendica\""
+msgstr ""
+
+#: ../../addon/fbpost/fbpost.php:245
+msgid "Post to page/group:"
+msgstr ""
+
+#: ../../addon/fbpost/fbpost.php:287 ../../addon.old/fbpost/fbpost.php:240
 msgid "Facebook Post Settings"
 msgstr ""
 
@@ -5570,12 +5585,12 @@ msgid "%s - Click to open/close"
 msgstr ""
 
 #: ../../addon/page/page.php:62 ../../addon/page/page.php:92
-#: ../../addon/forumlist/forumlist.php:60 ../../addon.old/page/page.php:62
+#: ../../addon/forumlist/forumlist.php:64 ../../addon.old/page/page.php:62
 #: ../../addon.old/page/page.php:92 ../../addon.old/forumlist/forumlist.php:60
 msgid "Forums"
 msgstr ""
 
-#: ../../addon/page/page.php:130 ../../addon/forumlist/forumlist.php:94
+#: ../../addon/page/page.php:130 ../../addon/forumlist/forumlist.php:98
 #: ../../addon.old/page/page.php:130
 #: ../../addon.old/forumlist/forumlist.php:94
 msgid "Forums:"
@@ -6497,6 +6512,7 @@ msgid "may only be a partial list"
 msgstr ""
 
 #: ../../addon/remote_permissions/remote_permissions.php:196
+#: ../../addon/altpager/altpager.php:99
 msgid "Global"
 msgstr ""
 
@@ -6505,6 +6521,7 @@ msgid "The posts of every user on this server show the post recipients"
 msgstr ""
 
 #: ../../addon/remote_permissions/remote_permissions.php:197
+#: ../../addon/altpager/altpager.php:100
 msgid "Individual"
 msgstr ""
 
@@ -6600,37 +6617,37 @@ msgstr ""
 msgid "Upload was cancelled, or server error encountered"
 msgstr ""
 
-#: ../../addon/forumlist/forumlist.php:63
+#: ../../addon/forumlist/forumlist.php:67
 #: ../../addon.old/forumlist/forumlist.php:63
 msgid "show/hide"
 msgstr ""
 
-#: ../../addon/forumlist/forumlist.php:77
+#: ../../addon/forumlist/forumlist.php:81
 #: ../../addon.old/forumlist/forumlist.php:77
 msgid "No forum subscriptions"
 msgstr ""
 
-#: ../../addon/forumlist/forumlist.php:131
+#: ../../addon/forumlist/forumlist.php:134
 #: ../../addon.old/forumlist/forumlist.php:131
 msgid "Forumlist settings updated."
 msgstr ""
 
-#: ../../addon/forumlist/forumlist.php:159
+#: ../../addon/forumlist/forumlist.php:162
 #: ../../addon.old/forumlist/forumlist.php:159
 msgid "Forumlist Settings"
 msgstr ""
 
-#: ../../addon/forumlist/forumlist.php:161
+#: ../../addon/forumlist/forumlist.php:164
 #: ../../addon.old/forumlist/forumlist.php:161
 msgid "Randomise forum list"
 msgstr ""
 
-#: ../../addon/forumlist/forumlist.php:164
+#: ../../addon/forumlist/forumlist.php:167
 #: ../../addon.old/forumlist/forumlist.php:164
 msgid "Show forums on profile page"
 msgstr ""
 
-#: ../../addon/forumlist/forumlist.php:167
+#: ../../addon/forumlist/forumlist.php:170
 #: ../../addon.old/forumlist/forumlist.php:167
 msgid "Show forums on network page"
 msgstr ""
@@ -6826,10 +6843,7 @@ msgid "The default zoom level. (1:world, 18:highest)"
 msgstr ""
 
 #: ../../addon/group_text/group_text.php:46
-#: ../../addon/editplain/editplain.php:46
-#: ../../addon.old/group_text/group_text.php:46
-#: ../../addon.old/editplain/editplain.php:46
-msgid "Editplain settings updated."
+msgid "Group Text settings updated."
 msgstr ""
 
 #: ../../addon/group_text/group_text.php:76
@@ -6960,16 +6974,24 @@ msgstr ""
 msgid "Altpager settings updated."
 msgstr ""
 
-#: ../../addon/altpager/altpager.php:79
+#: ../../addon/altpager/altpager.php:83
 #: ../../addon.old/altpager/altpager.php:79
 msgid "Alternate Pagination Setting"
 msgstr ""
 
-#: ../../addon/altpager/altpager.php:81
+#: ../../addon/altpager/altpager.php:85
 #: ../../addon.old/altpager/altpager.php:81
 msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
 msgstr ""
 
+#: ../../addon/altpager/altpager.php:99
+msgid "Force global use of the alternate pager"
+msgstr ""
+
+#: ../../addon/altpager/altpager.php:100
+msgid "Each user chooses whether to use the alternate pager"
+msgstr ""
+
 #: ../../addon/mathjax/mathjax.php:37 ../../addon.old/mathjax/mathjax.php:37
 msgid ""
 "The MathJax addon renders mathematical formulae written using the LaTeX "
@@ -6991,6 +7013,12 @@ msgid ""
 "be either the MathJax CDN or another installation of MathJax."
 msgstr ""
 
+#: ../../addon/editplain/editplain.php:46
+#: ../../addon.old/group_text/group_text.php:46
+#: ../../addon.old/editplain/editplain.php:46
+msgid "Editplain settings updated."
+msgstr ""
+
 #: ../../addon/editplain/editplain.php:76
 #: ../../addon.old/editplain/editplain.php:76
 msgid "Editplain Settings"
@@ -7299,7 +7327,7 @@ msgstr ""
 msgid "Clear OAuth configuration"
 msgstr ""
 
-#: ../../addon/statusnet/statusnet.php:677
+#: ../../addon/statusnet/statusnet.php:692
 #: ../../addon.old/statusnet/statusnet.php:568
 msgid "API URL"
 msgstr ""
@@ -7309,28 +7337,40 @@ msgstr ""
 msgid "Infinite Improbability Drive"
 msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:36 ../../addon.old/tumblr/tumblr.php:36
+#: ../../addon/tumblr/tumblr.php:144
+msgid "You are now authenticated to tumblr."
+msgstr ""
+
+#: ../../addon/tumblr/tumblr.php:145
+msgid "return to the connector page"
+msgstr ""
+
+#: ../../addon/tumblr/tumblr.php:158 ../../addon.old/tumblr/tumblr.php:36
 msgid "Post to Tumblr"
 msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:67 ../../addon.old/tumblr/tumblr.php:67
+#: ../../addon/tumblr/tumblr.php:185 ../../addon.old/tumblr/tumblr.php:67
 msgid "Tumblr Post Settings"
 msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:69 ../../addon.old/tumblr/tumblr.php:69
+#: ../../addon/tumblr/tumblr.php:188
+msgid "(Re-)Authenticate your tumblr page"
+msgstr ""
+
+#: ../../addon/tumblr/tumblr.php:192 ../../addon.old/tumblr/tumblr.php:69
 msgid "Enable Tumblr Post Plugin"
 msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:74 ../../addon.old/tumblr/tumblr.php:74
-msgid "Tumblr login"
+#: ../../addon/tumblr/tumblr.php:197 ../../addon.old/tumblr/tumblr.php:84
+msgid "Post to Tumblr by default"
 msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:79 ../../addon.old/tumblr/tumblr.php:79
-msgid "Tumblr password"
+#: ../../addon/tumblr/tumblr.php:217
+msgid "Post to page:"
 msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:84 ../../addon.old/tumblr/tumblr.php:84
-msgid "Post to Tumblr by default"
+#: ../../addon/tumblr/tumblr.php:228
+msgid "You are not authenticated to tumblr"
 msgstr ""
 
 #: ../../addon/numfriends/numfriends.php:46
@@ -7796,12 +7836,12 @@ msgid "Set twitter search term"
 msgstr ""
 
 #: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:288
+#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:313
 msgid "don't show"
 msgstr ""
 
 #: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:287
+#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:312
 msgid "show"
 msgstr ""
 
@@ -8818,7 +8858,7 @@ msgstr ""
 msgid "Happy Birthday %s"
 msgstr ""
 
-#: ../../include/onepoll.php:414
+#: ../../include/onepoll.php:421
 msgid "From: "
 msgstr ""
 
@@ -8991,7 +9031,7 @@ msgstr ""
 msgid "[no subject]"
 msgstr ""
 
-#: ../../include/acl_selectors.php:286
+#: ../../include/acl_selectors.php:311
 msgid "Visible to everybody"
 msgstr ""
 
@@ -9382,11 +9422,11 @@ msgstr ""
 msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr ""
 
-#: ../../include/conversation.php:599 ../../object/Item.php:225
+#: ../../include/conversation.php:599 ../../object/Item.php:226
 msgid "Categories:"
 msgstr ""
 
-#: ../../include/conversation.php:600 ../../object/Item.php:226
+#: ../../include/conversation.php:600 ../../object/Item.php:227
 msgid "Filed under:"
 msgstr ""
 
@@ -9587,7 +9627,7 @@ msgstr ""
 msgid "Only You Can See This"
 msgstr ""
 
-#: ../../object/Item.php:237
+#: ../../object/Item.php:238
 msgid "via"
 msgstr ""
 
@@ -9650,3 +9690,11 @@ msgstr ""
 #: ../../addon.old/oembed.old/oembed.php:71
 msgid "URL to embed:"
 msgstr ""
+
+#: ../../addon.old/tumblr/tumblr.php:74
+msgid "Tumblr login"
+msgstr ""
+
+#: ../../addon.old/tumblr/tumblr.php:79
+msgid "Tumblr password"
+msgstr ""
index e94d1a912fba1a4ce324ff258c50876e6317dc0e..e1547fad84cffc2b3d348c5ce65cc084d8b87b84 100644 (file)
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2012-09-27 10:00-0700\n"
-"PO-Revision-Date: 2012-09-28 08:27+0000\n"
+"POT-Creation-Date: 2012-12-03 10:00-0800\n"
+"PO-Revision-Date: 2012-12-03 17:17+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"
@@ -24,6 +24,7 @@ msgstr "Innlegg vellykket."
 
 #: ../../mod/update_notes.php:41 ../../mod/update_community.php:18
 #: ../../mod/update_network.php:22 ../../mod/update_profile.php:41
+#: ../../mod/update_display.php:22
 msgid "[Embedded content - reload page to view]"
 msgstr "[Innebygget innhold - hent siden på nytt for å se det]"
 
@@ -37,30 +38,33 @@ msgstr "Kontaktoppdatering mislyktes."
 
 #: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
 #: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/photos.php:128 ../../mod/photos.php:972
+#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:995
 #: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
-#: ../../mod/notifications.php:66 ../../mod/contacts.php:146
-#: ../../mod/settings.php:86 ../../mod/settings.php:525
-#: ../../mod/settings.php:530 ../../mod/manage.php:87 ../../mod/network.php:6
-#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9
+#: ../../mod/notifications.php:66 ../../mod/contacts.php:147
+#: ../../mod/settings.php:91 ../../mod/settings.php:541
+#: ../../mod/settings.php:546 ../../mod/manage.php:90 ../../mod/network.php:6
+#: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9
 #: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
 #: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
 #: ../../mod/group.php:19 ../../mod/viewcontacts.php:22
-#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:126
-#: ../../mod/item.php:142 ../../mod/mood.php:114
+#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:139
+#: ../../mod/item.php:155 ../../mod/mood.php:114
 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../mod/message.php:38 ../../mod/message.php:168
+#: ../../mod/message.php:38 ../../mod/message.php:172
 #: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
-#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9
-#: ../../mod/display.php:141 ../../mod/profiles.php:7
-#: ../../mod/profiles.php:413 ../../mod/delegate.php:6
+#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9
+#: ../../mod/display.php:165 ../../mod/profiles.php:7
+#: ../../mod/profiles.php:431 ../../mod/delegate.php:6
 #: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
 #: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
 #: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
 #: ../../addon/fbpost/fbpost.php:165
-#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3913
-#: ../../index.php:317
+#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3977
+#: ../../index.php:333 ../../addon.old/facebook/facebook.php:510
+#: ../../addon.old/facebook/facebook.php:516
+#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
+#: ../../addon.old/dav/friendica/layout.fnk.php:354
 msgid "Permission denied."
 msgstr "Ingen tilgang."
 
@@ -77,7 +81,7 @@ msgstr "Reparer kontaktinnstillinger"
 msgid ""
 "<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
 " information your communications with this contact may stop working."
-msgstr ""
+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:138
 msgid ""
@@ -89,8 +93,8 @@ msgstr "Vennligst bruk Tilbake-knappen i nettleseren din <strong>nå</strong> hv
 msgid "Return to contact editor"
 msgstr ""
 
-#: ../../mod/crepair.php:148 ../../mod/settings.php:545
-#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702
+#: ../../mod/crepair.php:148 ../../mod/settings.php:561
+#: ../../mod/settings.php:587 ../../mod/admin.php:695 ../../mod/admin.php:705
 msgid "Name"
 msgstr "Navn"
 
@@ -100,7 +104,7 @@ msgstr "Konto Kallenavn"
 
 #: ../../mod/crepair.php:150
 msgid "@Tagname - overrides Name/Nickname"
-msgstr ""
+msgstr "@Merkelappnavn - overstyrer Navn/Kallenavn"
 
 #: ../../mod/crepair.php:151
 msgid "Account URL"
@@ -124,32 +128,34 @@ msgstr "Poll/Feed URL"
 
 #: ../../mod/crepair.php:156
 msgid "New photo from this URL"
-msgstr ""
+msgstr "Nytt bilde fra denne URL-en"
 
 #: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
-#: ../../mod/events.php:455 ../../mod/photos.php:1005
-#: ../../mod/photos.php:1081 ../../mod/photos.php:1338
-#: ../../mod/photos.php:1378 ../../mod/photos.php:1419
-#: ../../mod/photos.php:1451 ../../mod/install.php:246
+#: ../../mod/events.php:455 ../../mod/photos.php:1028
+#: ../../mod/photos.php:1100 ../../mod/photos.php:1363
+#: ../../mod/photos.php:1403 ../../mod/photos.php:1447
+#: ../../mod/photos.php:1519 ../../mod/install.php:246
 #: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
-#: ../../mod/content.php:693 ../../mod/contacts.php:348
-#: ../../mod/settings.php:543 ../../mod/settings.php:697
-#: ../../mod/settings.php:769 ../../mod/settings.php:976
-#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294
-#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689
-#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112
-#: ../../mod/profiles.php:583 ../../mod/invite.php:119
-#: ../../addon/fromgplus/fromgplus.php:40
+#: ../../mod/content.php:693 ../../mod/contacts.php:352
+#: ../../mod/settings.php:559 ../../mod/settings.php:669
+#: ../../mod/settings.php:738 ../../mod/settings.php:810
+#: ../../mod/settings.php:1017 ../../mod/group.php:85 ../../mod/mood.php:137
+#: ../../mod/message.php:301 ../../mod/message.php:487 ../../mod/admin.php:445
+#: ../../mod/admin.php:692 ../../mod/admin.php:829 ../../mod/admin.php:1028
+#: ../../mod/admin.php:1115 ../../mod/profiles.php:604
+#: ../../mod/invite.php:119 ../../addon/fromgplus/fromgplus.php:40
 #: ../../addon/facebook/facebook.php:619
-#: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90
+#: ../../addon/snautofollow/snautofollow.php:64
 #: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76
 #: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88
-#: ../../addon/page/page.php:210 ../../addon/planets/planets.php:158
+#: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158
 #: ../../addon/uhremotestorage/uhremotestorage.php:89
 #: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
-#: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92
-#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41
-#: ../../addon/forumlist/forumlist.php:163
+#: ../../addon/remote_permissions/remote_permissions.php:47
+#: ../../addon/remote_permissions/remote_permissions.php:195
+#: ../../addon/startpage/startpage.php:92
+#: ../../addon/geonames/geonames.php:187
+#: ../../addon/forumlist/forumlist.php:175
 #: ../../addon/impressum/impressum.php:83
 #: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
 #: ../../addon/qcomment/qcomment.php:61
@@ -166,35 +172,80 @@ msgstr ""
 #: ../../addon/statusnet/statusnet.php:318
 #: ../../addon/statusnet/statusnet.php:325
 #: ../../addon/statusnet/statusnet.php:353
-#: ../../addon/statusnet/statusnet.php:576 ../../addon/tumblr/tumblr.php:90
+#: ../../addon/statusnet/statusnet.php:685 ../../addon/tumblr/tumblr.php:90
 #: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
 #: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
 #: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
-#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394
+#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:506
 #: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
 #: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
 #: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/diabook/theme.php:757
-#: ../../view/theme/diabook/config.php:190
-#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70
-#: ../../object/Item.php:560
+#: ../../view/theme/diabook/theme.php:642
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
+#: ../../object/Item.php:570 ../../addon.old/fromgplus/fromgplus.php:40
+#: ../../addon.old/facebook/facebook.php:619
+#: ../../addon.old/snautofollow/snautofollow.php:64
+#: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226
+#: ../../addon.old/yourls/yourls.php:76 ../../addon.old/ljpost/ljpost.php:93
+#: ../../addon.old/nsfw/nsfw.php:88 ../../addon.old/page/page.php:211
+#: ../../addon.old/planets/planets.php:158
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:89
+#: ../../addon.old/randplace/randplace.php:177
+#: ../../addon.old/dwpost/dwpost.php:93 ../../addon.old/drpost/drpost.php:110
+#: ../../addon.old/startpage/startpage.php:92
+#: ../../addon.old/geonames/geonames.php:187
+#: ../../addon.old/oembed.old/oembed.php:41
+#: ../../addon.old/forumlist/forumlist.php:175
+#: ../../addon.old/impressum/impressum.php:83
+#: ../../addon.old/notimeline/notimeline.php:64
+#: ../../addon.old/blockem/blockem.php:57
+#: ../../addon.old/qcomment/qcomment.php:61
+#: ../../addon.old/openstreetmap/openstreetmap.php:70
+#: ../../addon.old/group_text/group_text.php:84
+#: ../../addon.old/libravatar/libravatar.php:99
+#: ../../addon.old/libertree/libertree.php:90
+#: ../../addon.old/altpager/altpager.php:87
+#: ../../addon.old/mathjax/mathjax.php:42
+#: ../../addon.old/editplain/editplain.php:84
+#: ../../addon.old/blackout/blackout.php:98
+#: ../../addon.old/gravatar/gravatar.php:95
+#: ../../addon.old/pageheader/pageheader.php:55
+#: ../../addon.old/ijpost/ijpost.php:93
+#: ../../addon.old/jappixmini/jappixmini.php:307
+#: ../../addon.old/statusnet/statusnet.php:278
+#: ../../addon.old/statusnet/statusnet.php:292
+#: ../../addon.old/statusnet/statusnet.php:318
+#: ../../addon.old/statusnet/statusnet.php:325
+#: ../../addon.old/statusnet/statusnet.php:353
+#: ../../addon.old/statusnet/statusnet.php:576
+#: ../../addon.old/tumblr/tumblr.php:90
+#: ../../addon.old/numfriends/numfriends.php:85
+#: ../../addon.old/gnot/gnot.php:88 ../../addon.old/wppost/wppost.php:110
+#: ../../addon.old/showmore/showmore.php:48 ../../addon.old/piwik/piwik.php:89
+#: ../../addon.old/twitter/twitter.php:180
+#: ../../addon.old/twitter/twitter.php:209
+#: ../../addon.old/twitter/twitter.php:394 ../../addon.old/irc/irc.php:55
+#: ../../addon.old/fromapp/fromapp.php:77
+#: ../../addon.old/blogger/blogger.php:102
+#: ../../addon.old/posterous/posterous.php:103
 msgid "Submit"
 msgstr "Lagre"
 
-#: ../../mod/help.php:30
+#: ../../mod/help.php:79
 msgid "Help:"
 msgstr "Hjelp:"
 
-#: ../../mod/help.php:34 ../../addon/dav/friendica/layout.fnk.php:225
-#: ../../include/nav.php:86
+#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225
+#: ../../include/nav.php:86 ../../addon.old/dav/friendica/layout.fnk.php:225
 msgid "Help"
 msgstr "Hjelp"
 
-#: ../../mod/help.php:38 ../../index.php:226
+#: ../../mod/help.php:90 ../../index.php:218
 msgid "Not Found"
 msgstr "Ikke funnet"
 
-#: ../../mod/help.php:41 ../../index.php:229
+#: ../../mod/help.php:93 ../../index.php:221
 msgid "Page not found."
 msgstr "Fant ikke siden."
 
@@ -232,12 +283,12 @@ msgstr ""
 msgid "Edit event"
 msgstr "Rediger hendelse"
 
-#: ../../mod/events.php:323 ../../include/text.php:1187
+#: ../../mod/events.php:323 ../../include/text.php:1190
 msgid "link to source"
 msgstr "lenke til kilde"
 
-#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:131
-#: ../../include/nav.php:52 ../../boot.php:1689
+#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:91
+#: ../../include/nav.php:52 ../../boot.php:1748
 msgid "Events"
 msgstr "Hendelser"
 
@@ -246,11 +297,13 @@ msgid "Create New Event"
 msgstr "Lag ny hendelse"
 
 #: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263
+#: ../../addon.old/dav/friendica/layout.fnk.php:263
 msgid "Previous"
 msgstr "Forrige"
 
 #: ../../mod/events.php:350 ../../mod/install.php:205
 #: ../../addon/dav/friendica/layout.fnk.php:266
+#: ../../addon.old/dav/friendica/layout.fnk.php:266
 msgid "Next"
 msgstr "Neste"
 
@@ -292,8 +345,9 @@ msgid "Description:"
 msgstr "Beskrivelse:"
 
 #: ../../mod/events.php:448 ../../mod/directory.php:134
+#: ../../addon/forumdirectory/forumdirectory.php:156
 #: ../../include/event.php:40 ../../include/bb2diaspora.php:412
-#: ../../boot.php:1226
+#: ../../boot.php:1278
 msgid "Location:"
 msgstr "Plassering:"
 
@@ -305,10 +359,11 @@ msgstr ""
 msgid "Share this event"
 msgstr "Del denne hendelsen"
 
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136
-#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544
-#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45
-#: ../../include/conversation.php:935
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:145
+#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:560
+#: ../../mod/settings.php:586 ../../addon/js_upload/js_upload.php:45
+#: ../../include/conversation.php:1009
+#: ../../addon.old/js_upload/js_upload.php:45
 msgid "Cancel"
 msgstr "Avbryt"
 
@@ -326,311 +381,305 @@ msgstr "Velg en tag å fjerne:"
 
 #: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
 #: ../../addon/dav/common/wdcal_edit.inc.php:468
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:468
 msgid "Remove"
 msgstr "Slett"
 
 #: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530
 #, php-format
-msgid "%s welcomes %s"
-msgstr "%s hilser %s velkommen"
+msgid "%1$s welcomes %2$s"
+msgstr ""
 
 #: ../../mod/api.php:76 ../../mod/api.php:102
 msgid "Authorize application connection"
-msgstr ""
+msgstr "Tillat forbindelse til program"
 
 #: ../../mod/api.php:77
 msgid "Return to your app and insert this Securty Code:"
-msgstr ""
+msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:"
 
 #: ../../mod/api.php:89
 msgid "Please login to continue."
-msgstr ""
+msgstr "Vennligst logg inn for å fortsette."
 
 #: ../../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 ""
+msgstr "Vil du tillate at dette programmet får tilgang til dine innlegg og kontakter, og/eller kan opprette nye innlegg for deg?"
 
 #: ../../mod/api.php:105 ../../mod/dfrn_request.php:835
-#: ../../mod/settings.php:892 ../../mod/settings.php:898
-#: ../../mod/settings.php:906 ../../mod/settings.php:910
-#: ../../mod/settings.php:915 ../../mod/settings.php:921
-#: ../../mod/settings.php:927 ../../mod/settings.php:933
-#: ../../mod/settings.php:963 ../../mod/settings.php:964
-#: ../../mod/settings.php:965 ../../mod/settings.php:966
-#: ../../mod/settings.php:967 ../../mod/register.php:236
-#: ../../mod/profiles.php:563
+#: ../../mod/settings.php:933 ../../mod/settings.php:939
+#: ../../mod/settings.php:947 ../../mod/settings.php:951
+#: ../../mod/settings.php:956 ../../mod/settings.php:962
+#: ../../mod/settings.php:968 ../../mod/settings.php:974
+#: ../../mod/settings.php:1004 ../../mod/settings.php:1005
+#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
+#: ../../mod/settings.php:1008 ../../mod/register.php:237
+#: ../../mod/profiles.php:584
 msgid "Yes"
 msgstr "Ja"
 
 #: ../../mod/api.php:106 ../../mod/dfrn_request.php:836
-#: ../../mod/settings.php:892 ../../mod/settings.php:898
-#: ../../mod/settings.php:906 ../../mod/settings.php:910
-#: ../../mod/settings.php:915 ../../mod/settings.php:921
-#: ../../mod/settings.php:927 ../../mod/settings.php:933
-#: ../../mod/settings.php:963 ../../mod/settings.php:964
-#: ../../mod/settings.php:965 ../../mod/settings.php:966
-#: ../../mod/settings.php:967 ../../mod/register.php:237
-#: ../../mod/profiles.php:564
+#: ../../mod/settings.php:933 ../../mod/settings.php:939
+#: ../../mod/settings.php:947 ../../mod/settings.php:951
+#: ../../mod/settings.php:956 ../../mod/settings.php:962
+#: ../../mod/settings.php:968 ../../mod/settings.php:974
+#: ../../mod/settings.php:1004 ../../mod/settings.php:1005
+#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
+#: ../../mod/settings.php:1008 ../../mod/register.php:238
+#: ../../mod/profiles.php:585
 msgid "No"
 msgstr "Nei"
 
-#: ../../mod/photos.php:46 ../../boot.php:1682
+#: ../../mod/photos.php:51 ../../boot.php:1741
 msgid "Photo Albums"
 msgstr "Fotoalbum"
 
-#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986
-#: ../../mod/photos.php:1073 ../../mod/photos.php:1088
-#: ../../mod/photos.php:1530 ../../mod/photos.php:1542
+#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1009
+#: ../../mod/photos.php:1092 ../../mod/photos.php:1107
+#: ../../mod/photos.php:1562 ../../mod/photos.php:1574
 #: ../../addon/communityhome/communityhome.php:110
-#: ../../view/theme/diabook/theme.php:598
+#: ../../view/theme/diabook/theme.php:492
+#: ../../addon.old/communityhome/communityhome.php:110
 msgid "Contact Photos"
 msgstr "Kontaktbilder"
 
-#: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1580
+#: ../../mod/photos.php:66 ../../mod/photos.php:1123 ../../mod/photos.php:1612
 msgid "Upload New Photos"
 msgstr "Last opp nye bilder"
 
-#: ../../mod/photos.php:74 ../../mod/settings.php:23
+#: ../../mod/photos.php:79 ../../mod/settings.php:23
 msgid "everybody"
 msgstr "alle"
 
-#: ../../mod/photos.php:138
+#: ../../mod/photos.php:143
 msgid "Contact information unavailable"
 msgstr "Kontaktinformasjon utilgjengelig"
 
-#: ../../mod/photos.php:149 ../../mod/photos.php:653 ../../mod/photos.php:1073
-#: ../../mod/photos.php:1088 ../../mod/profile_photo.php:74
+#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1092
+#: ../../mod/photos.php:1107 ../../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
 #: ../../addon/communityhome/communityhome.php:111
-#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:324
+#: ../../view/theme/diabook/theme.php:493 ../../include/user.php:324
 #: ../../include/user.php:331 ../../include/user.php:338
+#: ../../addon.old/communityhome/communityhome.php:111
 msgid "Profile Photos"
 msgstr "Profilbilder"
 
-#: ../../mod/photos.php:159
+#: ../../mod/photos.php:164
 msgid "Album not found."
 msgstr "Album ble ikke funnet."
 
-#: ../../mod/photos.php:177 ../../mod/photos.php:1082
+#: ../../mod/photos.php:182 ../../mod/photos.php:1101
 msgid "Delete Album"
 msgstr "Slett album"
 
-#: ../../mod/photos.php:240 ../../mod/photos.php:1339
+#: ../../mod/photos.php:245 ../../mod/photos.php:1364
 msgid "Delete Photo"
 msgstr "Slett bilde"
 
-#: ../../mod/photos.php:584
-msgid "was tagged in a"
-msgstr "ble tagget i et"
-
-#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62
-#: ../../addon/communityhome/communityhome.php:163
-#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439
-#: ../../include/diaspora.php:1824 ../../include/conversation.php:125
-#: ../../include/conversation.php:253
-msgid "photo"
-msgstr "bilde"
+#: ../../mod/photos.php:607
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr ""
 
-#: ../../mod/photos.php:584
-msgid "by"
-msgstr "av"
+#: ../../mod/photos.php:607
+msgid "a photo"
+msgstr ""
 
-#: ../../mod/photos.php:689 ../../addon/js_upload/js_upload.php:315
+#: ../../mod/photos.php:712 ../../addon/js_upload/js_upload.php:321
+#: ../../addon.old/js_upload/js_upload.php:315
 msgid "Image exceeds size limit of "
 msgstr "Bilde overstiger størrelsesbegrensningen på "
 
-#: ../../mod/photos.php:697
+#: ../../mod/photos.php:720
 msgid "Image file is empty."
 msgstr "Bildefilen er tom."
 
-#: ../../mod/photos.php:729 ../../mod/profile_photo.php:153
-#: ../../mod/wall_upload.php:110
+#: ../../mod/photos.php:752 ../../mod/profile_photo.php:153
+#: ../../mod/wall_upload.php:112
 msgid "Unable to process image."
 msgstr "Ikke i stand til å behandle bildet."
 
-#: ../../mod/photos.php:756 ../../mod/profile_photo.php:301
-#: ../../mod/wall_upload.php:136
+#: ../../mod/photos.php:779 ../../mod/profile_photo.php:301
+#: ../../mod/wall_upload.php:138
 msgid "Image upload failed."
 msgstr "Mislyktes med å laste opp bilde."
 
-#: ../../mod/photos.php:842 ../../mod/community.php:18
+#: ../../mod/photos.php:865 ../../mod/community.php:18
 #: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17
-#: ../../mod/display.php:7 ../../mod/search.php:73 ../../mod/directory.php:31
+#: ../../mod/display.php:7 ../../mod/search.php:89 ../../mod/directory.php:31
+#: ../../addon/forumdirectory/forumdirectory.php:53
 msgid "Public access denied."
 msgstr "Offentlig tilgang ikke tillatt."
 
-#: ../../mod/photos.php:852
+#: ../../mod/photos.php:875
 msgid "No photos selected"
 msgstr "Ingen bilder er valgt"
 
-#: ../../mod/photos.php:953
+#: ../../mod/photos.php:976
 msgid "Access to this item is restricted."
 msgstr "Tilgang til dette elementet er begrenset."
 
-#: ../../mod/photos.php:1015
+#: ../../mod/photos.php:1037
 #, php-format
 msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 msgstr ""
 
-#: ../../mod/photos.php:1018
-#, php-format
-msgid "You have used %1$.2f Mbytes of photo storage."
-msgstr ""
-
-#: ../../mod/photos.php:1024
+#: ../../mod/photos.php:1043
 msgid "Upload Photos"
 msgstr "Last opp bilder"
 
-#: ../../mod/photos.php:1028 ../../mod/photos.php:1077
+#: ../../mod/photos.php:1047 ../../mod/photos.php:1096
 msgid "New album name: "
 msgstr "Nytt albumnavn:"
 
-#: ../../mod/photos.php:1029
+#: ../../mod/photos.php:1048
 msgid "or existing album name: "
 msgstr "eller eksisterende albumnavn:"
 
-#: ../../mod/photos.php:1030
+#: ../../mod/photos.php:1049
 msgid "Do not show a status post for this upload"
 msgstr "Ikke vis statusoppdatering for denne opplastingen"
 
-#: ../../mod/photos.php:1032 ../../mod/photos.php:1334
+#: ../../mod/photos.php:1051 ../../mod/photos.php:1359
 msgid "Permissions"
 msgstr "Tillatelser"
 
-#: ../../mod/photos.php:1092
+#: ../../mod/photos.php:1111
 msgid "Edit Album"
 msgstr "Endre album"
 
-#: ../../mod/photos.php:1098
+#: ../../mod/photos.php:1117
 msgid "Show Newest First"
 msgstr ""
 
-#: ../../mod/photos.php:1100
+#: ../../mod/photos.php:1119
 msgid "Show Oldest First"
 msgstr ""
 
-#: ../../mod/photos.php:1124 ../../mod/photos.php:1563
+#: ../../mod/photos.php:1143 ../../mod/photos.php:1595
 msgid "View Photo"
 msgstr "Vis bilde"
 
-#: ../../mod/photos.php:1159
+#: ../../mod/photos.php:1178
 msgid "Permission denied. Access to this item may be restricted."
 msgstr "Tilgang nektet. Tilgang til dette elementet kan være begrenset."
 
-#: ../../mod/photos.php:1161
+#: ../../mod/photos.php:1180
 msgid "Photo not available"
 msgstr "Bilde ikke tilgjengelig"
 
-#: ../../mod/photos.php:1217
+#: ../../mod/photos.php:1236
 msgid "View photo"
 msgstr "Vis foto"
 
-#: ../../mod/photos.php:1217
+#: ../../mod/photos.php:1236
 msgid "Edit photo"
 msgstr "Endre bilde"
 
-#: ../../mod/photos.php:1218
+#: ../../mod/photos.php:1237
 msgid "Use as profile photo"
 msgstr "Bruk som profilbilde"
 
-#: ../../mod/photos.php:1224 ../../mod/content.php:603
-#: ../../object/Item.php:103
+#: ../../mod/photos.php:1243 ../../mod/content.php:603
+#: ../../object/Item.php:104
 msgid "Private Message"
 msgstr "Privat melding"
 
-#: ../../mod/photos.php:1243
+#: ../../mod/photos.php:1262
 msgid "View Full Size"
 msgstr "Vis i full størrelse"
 
-#: ../../mod/photos.php:1311
+#: ../../mod/photos.php:1336
 msgid "Tags: "
 msgstr "Tagger:"
 
-#: ../../mod/photos.php:1314
+#: ../../mod/photos.php:1339
 msgid "[Remove any tag]"
 msgstr "[Fjern en tag]"
 
-#: ../../mod/photos.php:1324
+#: ../../mod/photos.php:1349
 msgid "Rotate CW (right)"
 msgstr ""
 
-#: ../../mod/photos.php:1325
+#: ../../mod/photos.php:1350
 msgid "Rotate CCW (left)"
 msgstr ""
 
-#: ../../mod/photos.php:1327
+#: ../../mod/photos.php:1352
 msgid "New album name"
 msgstr "Nytt albumnavn"
 
-#: ../../mod/photos.php:1330
+#: ../../mod/photos.php:1355
 msgid "Caption"
 msgstr "Overskrift"
 
-#: ../../mod/photos.php:1332
+#: ../../mod/photos.php:1357
 msgid "Add a Tag"
 msgstr "Legg til tag"
 
-#: ../../mod/photos.php:1336
+#: ../../mod/photos.php:1361
 msgid ""
 "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../mod/photos.php:1356 ../../mod/content.php:667
-#: ../../object/Item.php:196
+#: ../../mod/photos.php:1381 ../../mod/content.php:667
+#: ../../object/Item.php:202
 msgid "I like this (toggle)"
 msgstr "Jeg liker dette (skru på/av)"
 
-#: ../../mod/photos.php:1357 ../../mod/content.php:668
-#: ../../object/Item.php:197
+#: ../../mod/photos.php:1382 ../../mod/content.php:668
+#: ../../object/Item.php:203
 msgid "I don't like this (toggle)"
 msgstr "Jeg liker ikke dette (skru på/av)"
 
-#: ../../mod/photos.php:1358 ../../include/conversation.php:896
+#: ../../mod/photos.php:1383 ../../include/conversation.php:969
 msgid "Share"
 msgstr "Del"
 
-#: ../../mod/photos.php:1359 ../../mod/editpost.php:112
-#: ../../mod/content.php:482 ../../mod/content.php:845
-#: ../../mod/wallmessage.php:152 ../../mod/message.php:293
-#: ../../mod/message.php:481 ../../include/conversation.php:570
-#: ../../include/conversation.php:915 ../../object/Item.php:258
+#: ../../mod/photos.php:1384 ../../mod/editpost.php:121
+#: ../../mod/content.php:482 ../../mod/content.php:848
+#: ../../mod/wallmessage.php:152 ../../mod/message.php:300
+#: ../../mod/message.php:488 ../../include/conversation.php:624
+#: ../../include/conversation.php:988 ../../object/Item.php:269
 msgid "Please wait"
 msgstr "Vennligst vent"
 
-#: ../../mod/photos.php:1375 ../../mod/photos.php:1416
-#: ../../mod/photos.php:1448 ../../mod/content.php:690
-#: ../../object/Item.php:557
+#: ../../mod/photos.php:1400 ../../mod/photos.php:1444
+#: ../../mod/photos.php:1516 ../../mod/content.php:690
+#: ../../object/Item.php:567
 msgid "This is you"
 msgstr "Dette er deg"
 
-#: ../../mod/photos.php:1377 ../../mod/photos.php:1418
-#: ../../mod/photos.php:1450 ../../mod/content.php:692 ../../boot.php:574
-#: ../../object/Item.php:559
+#: ../../mod/photos.php:1402 ../../mod/photos.php:1446
+#: ../../mod/photos.php:1518 ../../mod/content.php:692 ../../boot.php:608
+#: ../../object/Item.php:266 ../../object/Item.php:569
 msgid "Comment"
 msgstr "Kommentar"
 
-#: ../../mod/photos.php:1379 ../../mod/editpost.php:133
-#: ../../mod/content.php:702 ../../include/conversation.php:933
-#: ../../object/Item.php:569
+#: ../../mod/photos.php:1404 ../../mod/photos.php:1448
+#: ../../mod/photos.php:1520 ../../mod/editpost.php:142
+#: ../../mod/content.php:702 ../../include/conversation.php:1006
+#: ../../object/Item.php:579
 msgid "Preview"
 msgstr ""
 
-#: ../../mod/photos.php:1479 ../../mod/content.php:439
-#: ../../mod/content.php:723 ../../mod/settings.php:606
-#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696
-#: ../../include/conversation.php:515 ../../object/Item.php:117
+#: ../../mod/photos.php:1488 ../../mod/content.php:439
+#: ../../mod/content.php:724 ../../mod/settings.php:622
+#: ../../mod/group.php:168 ../../mod/admin.php:699
+#: ../../include/conversation.php:569 ../../object/Item.php:118
 msgid "Delete"
 msgstr "Slett"
 
-#: ../../mod/photos.php:1569
+#: ../../mod/photos.php:1601
 msgid "View Album"
 msgstr "Vis album"
 
-#: ../../mod/photos.php:1578
+#: ../../mod/photos.php:1610
 msgid "Recent Photos"
 msgstr "Nye bilder"
 
@@ -638,13 +687,13 @@ msgstr "Nye bilder"
 msgid "Not available."
 msgstr "Ikke tilgjengelig."
 
-#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:133
+#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
 #: ../../include/nav.php:101
 msgid "Community"
 msgstr "Fellesskap"
 
-#: ../../mod/community.php:63 ../../mod/community.php:88
-#: ../../mod/search.php:148 ../../mod/search.php:174
+#: ../../mod/community.php:61 ../../mod/community.php:86
+#: ../../mod/search.php:162 ../../mod/search.php:188
 msgid "No results."
 msgstr "Fant ikke noe."
 
@@ -684,76 +733,100 @@ msgstr "Ingen installerte plugins/tillegg/apper"
 msgid "Item not found"
 msgstr "Fant ikke elementet"
 
-#: ../../mod/editpost.php:36
+#: ../../mod/editpost.php:39
 msgid "Edit post"
 msgstr "Endre innlegg"
 
-#: ../../mod/editpost.php:88 ../../include/conversation.php:882
+#: ../../mod/editpost.php:91 ../../include/conversation.php:955
 msgid "Post to Email"
 msgstr "Innlegg til e-post"
 
-#: ../../mod/editpost.php:103 ../../mod/content.php:710
-#: ../../mod/settings.php:605 ../../object/Item.php:107
+#: ../../mod/editpost.php:106 ../../mod/content.php:711
+#: ../../mod/settings.php:621 ../../object/Item.php:108
 msgid "Edit"
 msgstr "Endre"
 
-#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
-#: ../../mod/message.php:291 ../../mod/message.php:478
-#: ../../include/conversation.php:897
+#: ../../mod/editpost.php:107 ../../mod/wallmessage.php:150
+#: ../../mod/message.php:298 ../../mod/message.php:485
+#: ../../include/conversation.php:970
 msgid "Upload photo"
 msgstr "Last opp bilde"
 
-#: ../../mod/editpost.php:105 ../../include/conversation.php:899
+#: ../../mod/editpost.php:108 ../../include/conversation.php:971
+msgid "upload photo"
+msgstr ""
+
+#: ../../mod/editpost.php:109 ../../include/conversation.php:972
 msgid "Attach file"
 msgstr "Legg ved fil"
 
-#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151
-#: ../../mod/message.php:292 ../../mod/message.php:479
-#: ../../include/conversation.php:901
+#: ../../mod/editpost.php:110 ../../include/conversation.php:973
+msgid "attach file"
+msgstr ""
+
+#: ../../mod/editpost.php:111 ../../mod/wallmessage.php:151
+#: ../../mod/message.php:299 ../../mod/message.php:486
+#: ../../include/conversation.php:974
 msgid "Insert web link"
 msgstr "Sett inn web-adresse"
 
-#: ../../mod/editpost.php:107
-msgid "Insert YouTube video"
-msgstr "Sett inn YouTube-video"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:975
+msgid "web link"
+msgstr ""
 
-#: ../../mod/editpost.php:108
-msgid "Insert Vorbis [.ogg] video"
-msgstr "Sett inn Vorbis [.ogg] video"
+#: ../../mod/editpost.php:113 ../../include/conversation.php:976
+msgid "Insert video link"
+msgstr ""
 
-#: ../../mod/editpost.php:109
-msgid "Insert Vorbis [.ogg] audio"
-msgstr "Sett inn Vorbis [ogg] lydfil"
+#: ../../mod/editpost.php:114 ../../include/conversation.php:977
+msgid "video link"
+msgstr ""
 
-#: ../../mod/editpost.php:110 ../../include/conversation.php:907
+#: ../../mod/editpost.php:115 ../../include/conversation.php:978
+msgid "Insert audio link"
+msgstr ""
+
+#: ../../mod/editpost.php:116 ../../include/conversation.php:979
+msgid "audio link"
+msgstr ""
+
+#: ../../mod/editpost.php:117 ../../include/conversation.php:980
 msgid "Set your location"
 msgstr "Angi din plassering"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:909
+#: ../../mod/editpost.php:118 ../../include/conversation.php:981
+msgid "set location"
+msgstr ""
+
+#: ../../mod/editpost.php:119 ../../include/conversation.php:982
 msgid "Clear browser location"
 msgstr "Fjern nettleserplassering"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:916
+#: ../../mod/editpost.php:120 ../../include/conversation.php:983
+msgid "clear location"
+msgstr ""
+
+#: ../../mod/editpost.php:122 ../../include/conversation.php:989
 msgid "Permission settings"
 msgstr "Tillatelser"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:925
+#: ../../mod/editpost.php:130 ../../include/conversation.php:998
 msgid "CC: email addresses"
 msgstr "Kopi: e-postadresser"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:926
+#: ../../mod/editpost.php:131 ../../include/conversation.php:999
 msgid "Public post"
 msgstr "Offentlig innlegg"
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:912
+#: ../../mod/editpost.php:134 ../../include/conversation.php:985
 msgid "Set title"
 msgstr "Lagre tittel"
 
-#: ../../mod/editpost.php:127 ../../include/conversation.php:914
+#: ../../mod/editpost.php:136 ../../include/conversation.php:987
 msgid "Categories (comma-separated list)"
 msgstr ""
 
-#: ../../mod/editpost.php:128 ../../include/conversation.php:928
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1001
 msgid "Example: bob@example.com, mary@example.com"
 msgstr "Eksempel: ola@example.com, kari@example.com"
 
@@ -838,7 +911,7 @@ msgstr "Ugyldig profil-URL."
 msgid "Disallowed profile URL."
 msgstr "Underkjent profil-URL."
 
-#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:123
+#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:124
 msgid "Failed to update contact record."
 msgstr "Mislyktes med å oppdatere kontaktposten."
 
@@ -874,7 +947,7 @@ msgstr "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s."
 msgid "Confirm"
 msgstr "Bekreft"
 
-#: ../../mod/dfrn_request.php:715 ../../include/items.php:3292
+#: ../../mod/dfrn_request.php:715 ../../include/items.php:3356
 msgid "[Name Withheld]"
 msgstr "[Navnet tilbakeholdt]"
 
@@ -903,7 +976,7 @@ msgstr "Venne-/Koblings-forespørsel"
 msgid ""
 "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
 "testuser@identi.ca"
-msgstr ""
+msgstr "Eksempler: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
 #: ../../mod/dfrn_request.php:833
 msgid "Please answer the following:"
@@ -920,13 +993,13 @@ msgstr "Legg til en personlig melding:"
 
 #: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76
 msgid "Friendica"
-msgstr ""
+msgstr "Friendica"
 
 #: ../../mod/dfrn_request.php:840
 msgid "StatusNet/Federated Social Web"
 msgstr "StatusNet/Federeated Social Web"
 
-#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640
+#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:681
 #: ../../include/contact_selectors.php:80
 msgid "Diaspora"
 msgstr "Diaspora"
@@ -946,6 +1019,65 @@ msgstr "Din identitetsadresse:"
 msgid "Submit Request"
 msgstr "Send forespørsel"
 
+#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:138
+msgid "Account settings"
+msgstr "Kontoinnstillinger"
+
+#: ../../mod/uexport.php:14 ../../mod/settings.php:40
+msgid "Display settings"
+msgstr ""
+
+#: ../../mod/uexport.php:20 ../../mod/settings.php:46
+msgid "Connector settings"
+msgstr "Koblingsinnstillinger"
+
+#: ../../mod/uexport.php:25 ../../mod/settings.php:51
+msgid "Plugin settings"
+msgstr "Tilleggsinnstillinger"
+
+#: ../../mod/uexport.php:30 ../../mod/settings.php:56
+msgid "Connected apps"
+msgstr "Tilkoblede programmer"
+
+#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:61
+msgid "Export personal data"
+msgstr "Eksporter personlige data"
+
+#: ../../mod/uexport.php:40 ../../mod/settings.php:66
+msgid "Remove account"
+msgstr ""
+
+#: ../../mod/uexport.php:48 ../../mod/settings.php:74
+#: ../../mod/newmember.php:22 ../../mod/admin.php:788 ../../mod/admin.php:993
+#: ../../addon/dav/friendica/layout.fnk.php:225
+#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:138
+#: ../../addon.old/dav/friendica/layout.fnk.php:225
+#: ../../addon.old/mathjax/mathjax.php:36
+msgid "Settings"
+msgstr "Innstillinger"
+
+#: ../../mod/uexport.php:72
+msgid "Export account"
+msgstr ""
+
+#: ../../mod/uexport.php:72
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr ""
+
+#: ../../mod/uexport.php:73
+msgid "Export all"
+msgstr ""
+
+#: ../../mod/uexport.php:73
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr ""
+
 #: ../../mod/install.php:117
 msgid "Friendica Social Communications Server - Setup"
 msgstr ""
@@ -1213,7 +1345,7 @@ msgstr "Tidskonvertering"
 msgid ""
 "Friendica provides this service for sharing events with other networks and "
 "friends in unknown timezones."
-msgstr "Friendica har denne tjenesten for å dele hendelser med andre nettverk og venner i ukjente tidssoner."
+msgstr ""
 
 #: ../../mod/localtime.php:30
 #, php-format
@@ -1267,7 +1399,7 @@ msgid "is interested in:"
 msgstr ""
 
 #: ../../mod/match.php:58 ../../mod/suggest.php:59
-#: ../../include/contact_widgets.php:9 ../../boot.php:1164
+#: ../../include/contact_widgets.php:9 ../../boot.php:1216
 msgid "Connect"
 msgstr "Forbindelse"
 
@@ -1275,154 +1407,157 @@ msgstr "Forbindelse"
 msgid "No matches"
 msgstr "Ingen treff"
 
-#: ../../mod/lockview.php:39
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
 msgid "Remote privacy information not available."
 msgstr "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig."
 
-#: ../../mod/lockview.php:43
+#: ../../mod/lockview.php:48
+#: ../../addon/remote_permissions/remote_permissions.php:123
 msgid "Visible to:"
 msgstr "Synlig for:"
 
-#: ../../mod/content.php:119 ../../mod/network.php:436
+#: ../../mod/content.php:119 ../../mod/network.php:594
 msgid "No such group"
 msgstr "Gruppen finnes ikke"
 
-#: ../../mod/content.php:130 ../../mod/network.php:447
+#: ../../mod/content.php:130 ../../mod/network.php:605
 msgid "Group is empty"
 msgstr "Gruppen er tom"
 
-#: ../../mod/content.php:134 ../../mod/network.php:451
+#: ../../mod/content.php:134 ../../mod/network.php:609
 msgid "Group: "
 msgstr "Gruppe:"
 
-#: ../../mod/content.php:438 ../../mod/content.php:722
-#: ../../include/conversation.php:514 ../../object/Item.php:116
+#: ../../mod/content.php:438 ../../mod/content.php:723
+#: ../../include/conversation.php:568 ../../object/Item.php:117
 msgid "Select"
 msgstr "Velg"
 
-#: ../../mod/content.php:455 ../../mod/content.php:815
-#: ../../mod/content.php:816 ../../include/conversation.php:533
-#: ../../object/Item.php:227 ../../object/Item.php:228
+#: ../../mod/content.php:455 ../../mod/content.php:817
+#: ../../mod/content.php:818 ../../include/conversation.php:587
+#: ../../object/Item.php:234 ../../object/Item.php:235
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr ""
 
-#: ../../mod/content.php:465 ../../mod/content.php:827
-#: ../../include/conversation.php:553 ../../object/Item.php:240
+#: ../../mod/content.php:465 ../../mod/content.php:829
+#: ../../include/conversation.php:607 ../../object/Item.php:248
 #, php-format
 msgid "%s from %s"
 msgstr "%s fra %s"
 
-#: ../../mod/content.php:480 ../../include/conversation.php:568
+#: ../../mod/content.php:480 ../../include/conversation.php:622
 msgid "View in context"
 msgstr "Vis i sammenheng"
 
-#: ../../mod/content.php:586 ../../object/Item.php:277
+#: ../../mod/content.php:586 ../../object/Item.php:288
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../mod/content.php:588 ../../include/text.php:1443
-#: ../../object/Item.php:279 ../../object/Item.php:292
+#: ../../mod/content.php:588 ../../include/text.php:1446
+#: ../../object/Item.php:290 ../../object/Item.php:303
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../mod/content.php:589 ../../addon/page/page.php:76
-#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119
-#: ../../include/contact_widgets.php:195 ../../boot.php:575
-#: ../../object/Item.php:280
+#: ../../mod/content.php:589 ../../addon/page/page.php:77
+#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
+#: ../../include/contact_widgets.php:204 ../../boot.php:609
+#: ../../object/Item.php:291 ../../addon.old/page/page.php:77
+#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119
 msgid "show more"
 msgstr ""
 
-#: ../../mod/content.php:667 ../../object/Item.php:196
+#: ../../mod/content.php:667 ../../object/Item.php:202
 msgid "like"
 msgstr ""
 
-#: ../../mod/content.php:668 ../../object/Item.php:197
+#: ../../mod/content.php:668 ../../object/Item.php:203
 msgid "dislike"
 msgstr ""
 
-#: ../../mod/content.php:670 ../../object/Item.php:199
+#: ../../mod/content.php:670 ../../object/Item.php:205
 msgid "Share this"
 msgstr ""
 
-#: ../../mod/content.php:670 ../../object/Item.php:199
+#: ../../mod/content.php:670 ../../object/Item.php:205
 msgid "share"
 msgstr ""
 
-#: ../../mod/content.php:694 ../../object/Item.php:561
+#: ../../mod/content.php:694 ../../object/Item.php:571
 msgid "Bold"
 msgstr ""
 
-#: ../../mod/content.php:695 ../../object/Item.php:562
+#: ../../mod/content.php:695 ../../object/Item.php:572
 msgid "Italic"
 msgstr ""
 
-#: ../../mod/content.php:696 ../../object/Item.php:563
+#: ../../mod/content.php:696 ../../object/Item.php:573
 msgid "Underline"
 msgstr ""
 
-#: ../../mod/content.php:697 ../../object/Item.php:564
+#: ../../mod/content.php:697 ../../object/Item.php:574
 msgid "Quote"
 msgstr ""
 
-#: ../../mod/content.php:698 ../../object/Item.php:565
+#: ../../mod/content.php:698 ../../object/Item.php:575
 msgid "Code"
 msgstr ""
 
-#: ../../mod/content.php:699 ../../object/Item.php:566
+#: ../../mod/content.php:699 ../../object/Item.php:576
 msgid "Image"
 msgstr ""
 
-#: ../../mod/content.php:700 ../../object/Item.php:567
+#: ../../mod/content.php:700 ../../object/Item.php:577
 msgid "Link"
 msgstr ""
 
-#: ../../mod/content.php:701 ../../object/Item.php:568
+#: ../../mod/content.php:701 ../../object/Item.php:578
 msgid "Video"
 msgstr ""
 
-#: ../../mod/content.php:735 ../../object/Item.php:180
+#: ../../mod/content.php:736 ../../object/Item.php:181
 msgid "add star"
 msgstr ""
 
-#: ../../mod/content.php:736 ../../object/Item.php:181
+#: ../../mod/content.php:737 ../../object/Item.php:182
 msgid "remove star"
 msgstr ""
 
-#: ../../mod/content.php:737 ../../object/Item.php:182
+#: ../../mod/content.php:738 ../../object/Item.php:183
 msgid "toggle star status"
 msgstr "veksle stjernestatus"
 
-#: ../../mod/content.php:740 ../../object/Item.php:185
+#: ../../mod/content.php:741 ../../object/Item.php:186
 msgid "starred"
 msgstr ""
 
-#: ../../mod/content.php:741 ../../object/Item.php:186
+#: ../../mod/content.php:742 ../../object/Item.php:191
 msgid "add tag"
 msgstr ""
 
-#: ../../mod/content.php:745 ../../object/Item.php:120
+#: ../../mod/content.php:746 ../../object/Item.php:121
 msgid "save to folder"
 msgstr ""
 
-#: ../../mod/content.php:817 ../../object/Item.php:229
+#: ../../mod/content.php:819 ../../object/Item.php:236
 msgid "to"
 msgstr "til"
 
-#: ../../mod/content.php:818 ../../object/Item.php:230
+#: ../../mod/content.php:820 ../../object/Item.php:238
 msgid "Wall-to-Wall"
 msgstr "vegg-til-vegg"
 
-#: ../../mod/content.php:819 ../../object/Item.php:231
+#: ../../mod/content.php:821 ../../object/Item.php:239
 msgid "via Wall-To-Wall:"
 msgstr "via vegg-til-vegg"
 
-#: ../../mod/home.php:28 ../../addon/communityhome/communityhome.php:179
+#: ../../mod/home.php:30 ../../addon/communityhome/communityhome.php:179
+#: ../../addon.old/communityhome/communityhome.php:179
 #, php-format
 msgid "Welcome to %s"
 msgstr "Velkommen til %s"
@@ -1431,488 +1566,490 @@ msgstr "Velkommen til %s"
 msgid "Invalid request identifier."
 msgstr "Ugyldig forespørselsidentifikator."
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:207
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210
 msgid "Discard"
 msgstr "Forkast"
 
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:160
-#: ../../mod/notifications.php:206 ../../mod/contacts.php:321
-#: ../../mod/contacts.php:375
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:163
+#: ../../mod/notifications.php:209 ../../mod/contacts.php:325
+#: ../../mod/contacts.php:379
 msgid "Ignore"
 msgstr "Ignorer"
 
-#: ../../mod/notifications.php:75
+#: ../../mod/notifications.php:78
 msgid "System"
 msgstr ""
 
-#: ../../mod/notifications.php:80 ../../include/nav.php:113
+#: ../../mod/notifications.php:83 ../../include/nav.php:113
 msgid "Network"
 msgstr "Nettverk"
 
-#: ../../mod/notifications.php:85 ../../mod/network.php:300
+#: ../../mod/notifications.php:88 ../../mod/network.php:444
 msgid "Personal"
 msgstr ""
 
-#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:127
-#: ../../include/nav.php:77 ../../include/nav.php:115
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
+#: ../../include/nav.php:77 ../../include/nav.php:116
 msgid "Home"
 msgstr "Hjem"
 
-#: ../../mod/notifications.php:95 ../../include/nav.php:121
+#: ../../mod/notifications.php:98 ../../include/nav.php:122
 msgid "Introductions"
-msgstr ""
+msgstr "Introduksjoner"
 
-#: ../../mod/notifications.php:100 ../../mod/message.php:176
-#: ../../include/nav.php:128
+#: ../../mod/notifications.php:103 ../../mod/message.php:180
+#: ../../include/nav.php:129
 msgid "Messages"
 msgstr "Meldinger"
 
-#: ../../mod/notifications.php:119
+#: ../../mod/notifications.php:122
 msgid "Show Ignored Requests"
 msgstr "Vis ignorerte forespørsler"
 
-#: ../../mod/notifications.php:119
+#: ../../mod/notifications.php:122
 msgid "Hide Ignored Requests"
 msgstr "Skjul ignorerte forespørsler"
 
-#: ../../mod/notifications.php:145 ../../mod/notifications.php:191
+#: ../../mod/notifications.php:148 ../../mod/notifications.php:194
 msgid "Notification type: "
 msgstr "Beskjedtype:"
 
-#: ../../mod/notifications.php:146
+#: ../../mod/notifications.php:149
 msgid "Friend Suggestion"
 msgstr "Venneforslag"
 
-#: ../../mod/notifications.php:148
+#: ../../mod/notifications.php:151
 #, php-format
 msgid "suggested by %s"
 msgstr "foreslått av %s"
 
-#: ../../mod/notifications.php:153 ../../mod/notifications.php:200
-#: ../../mod/contacts.php:381
+#: ../../mod/notifications.php:156 ../../mod/notifications.php:203
+#: ../../mod/contacts.php:385
 msgid "Hide this contact from others"
 msgstr ""
 
-#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
 msgid "Post a new friend activity"
 msgstr ""
 
-#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
 msgid "if applicable"
 msgstr ""
 
-#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
-#: ../../mod/admin.php:694
+#: ../../mod/notifications.php:160 ../../mod/notifications.php:207
+#: ../../mod/admin.php:697
 msgid "Approve"
 msgstr "Godkjenn"
 
-#: ../../mod/notifications.php:177
+#: ../../mod/notifications.php:180
 msgid "Claims to be known to you: "
 msgstr "Påstår å kjenne deg:"
 
-#: ../../mod/notifications.php:177
+#: ../../mod/notifications.php:180
 msgid "yes"
 msgstr "ja"
 
-#: ../../mod/notifications.php:177
+#: ../../mod/notifications.php:180
 msgid "no"
 msgstr "ei"
 
-#: ../../mod/notifications.php:184
+#: ../../mod/notifications.php:187
 msgid "Approve as: "
 msgstr "Godkjenn som:"
 
-#: ../../mod/notifications.php:185
+#: ../../mod/notifications.php:188
 msgid "Friend"
 msgstr "Venn"
 
-#: ../../mod/notifications.php:186
+#: ../../mod/notifications.php:189
 msgid "Sharer"
-msgstr ""
+msgstr "Deler"
 
-#: ../../mod/notifications.php:186
+#: ../../mod/notifications.php:189
 msgid "Fan/Admirer"
 msgstr "Fan/Beundrer"
 
-#: ../../mod/notifications.php:192
+#: ../../mod/notifications.php:195
 msgid "Friend/Connect Request"
 msgstr "Venn/kontakt-forespørsel"
 
-#: ../../mod/notifications.php:192
+#: ../../mod/notifications.php:195
 msgid "New Follower"
 msgstr "Ny følgesvenn"
 
-#: ../../mod/notifications.php:213
+#: ../../mod/notifications.php:216
 msgid "No introductions."
 msgstr ""
 
-#: ../../mod/notifications.php:216 ../../include/nav.php:122
+#: ../../mod/notifications.php:219 ../../include/nav.php:123
 msgid "Notifications"
 msgstr "Varslinger"
 
-#: ../../mod/notifications.php:253 ../../mod/notifications.php:378
-#: ../../mod/notifications.php:465
+#: ../../mod/notifications.php:256 ../../mod/notifications.php:381
+#: ../../mod/notifications.php:468
 #, php-format
 msgid "%s liked %s's post"
-msgstr ""
+msgstr "%s likte %s sitt innlegg"
 
-#: ../../mod/notifications.php:262 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:474
+#: ../../mod/notifications.php:265 ../../mod/notifications.php:390
+#: ../../mod/notifications.php:477
 #, php-format
 msgid "%s disliked %s's post"
-msgstr ""
+msgstr "%s mislikte %s sitt innlegg"
 
-#: ../../mod/notifications.php:276 ../../mod/notifications.php:401
-#: ../../mod/notifications.php:488
+#: ../../mod/notifications.php:279 ../../mod/notifications.php:404
+#: ../../mod/notifications.php:491
 #, php-format
 msgid "%s is now friends with %s"
-msgstr ""
+msgstr "%s er nå venner med %s"
 
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:408
+#: ../../mod/notifications.php:286 ../../mod/notifications.php:411
 #, php-format
 msgid "%s created a new post"
-msgstr ""
+msgstr "%s skrev et nytt innlegg"
 
-#: ../../mod/notifications.php:284 ../../mod/notifications.php:409
-#: ../../mod/notifications.php:497
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#: ../../mod/notifications.php:500
 #, php-format
 msgid "%s commented on %s's post"
-msgstr ""
+msgstr "%s kommenterte på %s sitt innlegg"
 
-#: ../../mod/notifications.php:298
+#: ../../mod/notifications.php:301
 msgid "No more network notifications."
 msgstr ""
 
-#: ../../mod/notifications.php:302
+#: ../../mod/notifications.php:305
 msgid "Network Notifications"
 msgstr ""
 
-#: ../../mod/notifications.php:328 ../../mod/notify.php:61
+#: ../../mod/notifications.php:331 ../../mod/notify.php:61
 msgid "No more system notifications."
 msgstr ""
 
-#: ../../mod/notifications.php:332 ../../mod/notify.php:65
+#: ../../mod/notifications.php:335 ../../mod/notify.php:65
 msgid "System Notifications"
 msgstr ""
 
-#: ../../mod/notifications.php:423
+#: ../../mod/notifications.php:426
 msgid "No more personal notifications."
 msgstr ""
 
-#: ../../mod/notifications.php:427
+#: ../../mod/notifications.php:430
 msgid "Personal Notifications"
 msgstr ""
 
-#: ../../mod/notifications.php:504
+#: ../../mod/notifications.php:507
 msgid "No more home notifications."
 msgstr ""
 
-#: ../../mod/notifications.php:508
+#: ../../mod/notifications.php:511
 msgid "Home Notifications"
 msgstr ""
 
-#: ../../mod/contacts.php:84 ../../mod/contacts.php:164
+#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
 msgid "Could not access contact record."
 msgstr "Fikk ikke tilgang til kontaktposten."
 
-#: ../../mod/contacts.php:98
+#: ../../mod/contacts.php:99
 msgid "Could not locate selected profile."
 msgstr "Kunne ikke lokalisere valgt profil."
 
-#: ../../mod/contacts.php:121
+#: ../../mod/contacts.php:122
 msgid "Contact updated."
 msgstr "Kontakt oppdatert."
 
-#: ../../mod/contacts.php:186
+#: ../../mod/contacts.php:187
 msgid "Contact has been blocked"
 msgstr "Kontakten er blokkert"
 
-#: ../../mod/contacts.php:186
+#: ../../mod/contacts.php:187
 msgid "Contact has been unblocked"
 msgstr "Kontakten er ikke blokkert lenger"
 
-#: ../../mod/contacts.php:200
+#: ../../mod/contacts.php:201
 msgid "Contact has been ignored"
 msgstr "Kontakten er ignorert"
 
-#: ../../mod/contacts.php:200
+#: ../../mod/contacts.php:201
 msgid "Contact has been unignored"
 msgstr "Kontakten er ikke ignorert lenger"
 
-#: ../../mod/contacts.php:216
+#: ../../mod/contacts.php:220
 msgid "Contact has been archived"
 msgstr ""
 
-#: ../../mod/contacts.php:216
+#: ../../mod/contacts.php:220
 msgid "Contact has been unarchived"
 msgstr ""
 
-#: ../../mod/contacts.php:229
+#: ../../mod/contacts.php:233
 msgid "Contact has been removed."
 msgstr "Kontakten er fjernet."
 
-#: ../../mod/contacts.php:263
+#: ../../mod/contacts.php:267
 #, php-format
 msgid "You are mutual friends with %s"
 msgstr "Du er gjensidig venn med %s"
 
-#: ../../mod/contacts.php:267
+#: ../../mod/contacts.php:271
 #, php-format
 msgid "You are sharing with %s"
 msgstr "Du deler med %s"
 
-#: ../../mod/contacts.php:272
+#: ../../mod/contacts.php:276
 #, php-format
 msgid "%s is sharing with you"
 msgstr "%s deler med deg"
 
-#: ../../mod/contacts.php:289
+#: ../../mod/contacts.php:293
 msgid "Private communications are not available for this contact."
 msgstr "Privat kommunikasjon er ikke tilgjengelig mot denne kontakten."
 
-#: ../../mod/contacts.php:292
+#: ../../mod/contacts.php:296
 msgid "Never"
 msgstr "Aldri"
 
-#: ../../mod/contacts.php:296
+#: ../../mod/contacts.php:300
 msgid "(Update was successful)"
 msgstr "(Oppdatering vellykket)"
 
-#: ../../mod/contacts.php:296
+#: ../../mod/contacts.php:300
 msgid "(Update was not successful)"
 msgstr "(Oppdatering mislykket)"
 
-#: ../../mod/contacts.php:298
+#: ../../mod/contacts.php:302
 msgid "Suggest friends"
 msgstr "Foreslå venner"
 
-#: ../../mod/contacts.php:302
+#: ../../mod/contacts.php:306
 #, php-format
 msgid "Network type: %s"
 msgstr "Nettverkstype: %s"
 
-#: ../../mod/contacts.php:305 ../../include/contact_widgets.php:190
+#: ../../mod/contacts.php:309 ../../include/contact_widgets.php:199
 #, php-format
 msgid "%d contact in common"
 msgid_plural "%d contacts in common"
 msgstr[0] "%d felles kontakt"
 msgstr[1] "%d felles kontakter"
 
-#: ../../mod/contacts.php:310
+#: ../../mod/contacts.php:314
 msgid "View all contacts"
 msgstr "Vis alle kontakter"
 
-#: ../../mod/contacts.php:315 ../../mod/contacts.php:374
-#: ../../mod/admin.php:698
+#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
+#: ../../mod/admin.php:701
 msgid "Unblock"
 msgstr "Ikke blokker"
 
-#: ../../mod/contacts.php:315 ../../mod/contacts.php:374
-#: ../../mod/admin.php:697
+#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
+#: ../../mod/admin.php:700
 msgid "Block"
 msgstr "Blokker"
 
-#: ../../mod/contacts.php:318
+#: ../../mod/contacts.php:322
 msgid "Toggle Blocked status"
 msgstr ""
 
-#: ../../mod/contacts.php:321 ../../mod/contacts.php:375
+#: ../../mod/contacts.php:325 ../../mod/contacts.php:379
 msgid "Unignore"
 msgstr "Fjern ignorering"
 
-#: ../../mod/contacts.php:324
+#: ../../mod/contacts.php:328
 msgid "Toggle Ignored status"
 msgstr ""
 
-#: ../../mod/contacts.php:328
+#: ../../mod/contacts.php:332
 msgid "Unarchive"
 msgstr ""
 
-#: ../../mod/contacts.php:328
+#: ../../mod/contacts.php:332
 msgid "Archive"
 msgstr ""
 
-#: ../../mod/contacts.php:331
+#: ../../mod/contacts.php:335
 msgid "Toggle Archive status"
 msgstr ""
 
-#: ../../mod/contacts.php:334
+#: ../../mod/contacts.php:338
 msgid "Repair"
 msgstr "Reparer"
 
-#: ../../mod/contacts.php:337
+#: ../../mod/contacts.php:341
 msgid "Advanced Contact Settings"
 msgstr ""
 
-#: ../../mod/contacts.php:343
+#: ../../mod/contacts.php:347
 msgid "Communications lost with this contact!"
 msgstr ""
 
-#: ../../mod/contacts.php:346
+#: ../../mod/contacts.php:350
 msgid "Contact Editor"
 msgstr "Endre kontakt"
 
-#: ../../mod/contacts.php:349
+#: ../../mod/contacts.php:353
 msgid "Profile Visibility"
 msgstr "Profilens synlighet"
 
-#: ../../mod/contacts.php:350
+#: ../../mod/contacts.php:354
 #, php-format
 msgid ""
 "Please choose the profile you would like to display to %s when viewing your "
 "profile securely."
 msgstr "Vennligst velg profilen du ønsker å vise til %s når denne ser profilen på en sikret måte."
 
-#: ../../mod/contacts.php:351
+#: ../../mod/contacts.php:355
 msgid "Contact Information / Notes"
 msgstr "Kontaktinformasjon/-notater"
 
-#: ../../mod/contacts.php:352
+#: ../../mod/contacts.php:356
 msgid "Edit contact notes"
 msgstr "Endre kontaktnotater"
 
-#: ../../mod/contacts.php:357 ../../mod/contacts.php:549
+#: ../../mod/contacts.php:361 ../../mod/contacts.php:553
 #: ../../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:358
+#: ../../mod/contacts.php:362
 msgid "Block/Unblock contact"
 msgstr "Blokker kontakt/fjern blokkering for kontakt"
 
-#: ../../mod/contacts.php:359
+#: ../../mod/contacts.php:363
 msgid "Ignore contact"
 msgstr "Ignorer kontakt"
 
-#: ../../mod/contacts.php:360
+#: ../../mod/contacts.php:364
 msgid "Repair URL settings"
 msgstr "Reparer URL-innstillinger"
 
-#: ../../mod/contacts.php:361
+#: ../../mod/contacts.php:365
 msgid "View conversations"
 msgstr "Vis samtaler"
 
-#: ../../mod/contacts.php:363
+#: ../../mod/contacts.php:367
 msgid "Delete contact"
 msgstr "Slett kontakt"
 
-#: ../../mod/contacts.php:367
+#: ../../mod/contacts.php:371
 msgid "Last update:"
 msgstr "Siste oppdatering:"
 
-#: ../../mod/contacts.php:369
+#: ../../mod/contacts.php:373
 msgid "Update public posts"
 msgstr "Oppdater offentlige innlegg"
 
-#: ../../mod/contacts.php:371 ../../mod/admin.php:1170
+#: ../../mod/contacts.php:375 ../../mod/admin.php:1173
 msgid "Update now"
 msgstr "Oppdater nå"
 
-#: ../../mod/contacts.php:378
+#: ../../mod/contacts.php:382
 msgid "Currently blocked"
 msgstr "Blokkert nå"
 
-#: ../../mod/contacts.php:379
+#: ../../mod/contacts.php:383
 msgid "Currently ignored"
 msgstr "Ignorert nå"
 
-#: ../../mod/contacts.php:380
+#: ../../mod/contacts.php:384
 msgid "Currently archived"
 msgstr ""
 
-#: ../../mod/contacts.php:381
+#: ../../mod/contacts.php:385
 msgid ""
 "Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr ""
 
-#: ../../mod/contacts.php:434
+#: ../../mod/contacts.php:438
 msgid "Suggestions"
 msgstr ""
 
-#: ../../mod/contacts.php:437
+#: ../../mod/contacts.php:441
 msgid "Suggest potential friends"
 msgstr ""
 
-#: ../../mod/contacts.php:440 ../../mod/group.php:191
+#: ../../mod/contacts.php:444 ../../mod/group.php:191
 msgid "All Contacts"
 msgstr "Alle kontakter"
 
-#: ../../mod/contacts.php:443
+#: ../../mod/contacts.php:447
 msgid "Show all contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:446
+#: ../../mod/contacts.php:450
 msgid "Unblocked"
 msgstr ""
 
-#: ../../mod/contacts.php:449
+#: ../../mod/contacts.php:453
 msgid "Only show unblocked contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:453
+#: ../../mod/contacts.php:457
 msgid "Blocked"
 msgstr ""
 
-#: ../../mod/contacts.php:456
+#: ../../mod/contacts.php:460
 msgid "Only show blocked contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:460
+#: ../../mod/contacts.php:464
 msgid "Ignored"
 msgstr ""
 
-#: ../../mod/contacts.php:463
+#: ../../mod/contacts.php:467
 msgid "Only show ignored contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:467
+#: ../../mod/contacts.php:471
 msgid "Archived"
 msgstr ""
 
-#: ../../mod/contacts.php:470
+#: ../../mod/contacts.php:474
 msgid "Only show archived contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:474
+#: ../../mod/contacts.php:478
 msgid "Hidden"
 msgstr ""
 
-#: ../../mod/contacts.php:477
+#: ../../mod/contacts.php:481
 msgid "Only show hidden contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:525
+#: ../../mod/contacts.php:529
 msgid "Mutual Friendship"
 msgstr "Gjensidig vennskap"
 
-#: ../../mod/contacts.php:529
+#: ../../mod/contacts.php:533
 msgid "is a fan of yours"
 msgstr "er en tilhenger av deg"
 
-#: ../../mod/contacts.php:533
+#: ../../mod/contacts.php:537
 msgid "you are a fan of"
 msgstr "du er en tilhenger av"
 
-#: ../../mod/contacts.php:550 ../../mod/nogroup.php:41
+#: ../../mod/contacts.php:554 ../../mod/nogroup.php:41
 msgid "Edit contact"
 msgstr "Endre kontakt"
 
-#: ../../mod/contacts.php:571 ../../view/theme/diabook/theme.php:129
-#: ../../include/nav.php:139
+#: ../../mod/contacts.php:575 ../../view/theme/diabook/theme.php:89
+#: ../../include/nav.php:142
 msgid "Contacts"
 msgstr "Kontakter"
 
-#: ../../mod/contacts.php:575
+#: ../../mod/contacts.php:579
 msgid "Search your contacts"
 msgstr "Søk i dine kontakter"
 
-#: ../../mod/contacts.php:576 ../../mod/directory.php:59
+#: ../../mod/contacts.php:580 ../../mod/directory.php:59
+#: ../../addon/forumdirectory/forumdirectory.php:81
 msgid "Finding: "
 msgstr "Fant:"
 
-#: ../../mod/contacts.php:577 ../../mod/directory.php:61
+#: ../../mod/contacts.php:581 ../../mod/directory.php:61
+#: ../../addon/forumdirectory/forumdirectory.php:83
 #: ../../include/contact_widgets.php:33
 msgid "Find"
 msgstr "Finn"
@@ -1931,13 +2068,17 @@ msgid "Password reset requested at %s"
 msgstr "Forespørsel om tilbakestilling av passord ved %s"
 
 #: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
-#: ../../mod/register.php:90 ../../mod/register.php:144
+#: ../../mod/register.php:91 ../../mod/register.php:145
 #: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
 #: ../../addon/facebook/facebook.php:702
 #: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
 #: ../../addon/public_server/public_server.php:62
-#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3301
-#: ../../boot.php:788
+#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3365
+#: ../../boot.php:824 ../../addon.old/facebook/facebook.php:702
+#: ../../addon.old/facebook/facebook.php:1200
+#: ../../addon.old/fbpost/fbpost.php:661
+#: ../../addon.old/public_server/public_server.php:62
+#: ../../addon.old/testdrive/testdrive.php:67
 msgid "Administrator"
 msgstr "Administrator"
 
@@ -1947,7 +2088,7 @@ msgid ""
 "Password reset failed."
 msgstr "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes."
 
-#: ../../mod/lostpass.php:83 ../../boot.php:925
+#: ../../mod/lostpass.php:83 ../../boot.php:963
 msgid "Password Reset"
 msgstr "Passord tilbakestilling"
 
@@ -1991,617 +2132,614 @@ msgstr "Kallenavn eller e-post:"
 msgid "Reset"
 msgstr "Tilbakestill"
 
-#: ../../mod/settings.php:30 ../../include/nav.php:137
-msgid "Account settings"
-msgstr "Kontoinnstillinger"
-
 #: ../../mod/settings.php:35
-msgid "Display settings"
-msgstr ""
-
-#: ../../mod/settings.php:41
-msgid "Connector settings"
-msgstr "Koblingsinnstillinger"
-
-#: ../../mod/settings.php:46
-msgid "Plugin settings"
-msgstr "Tilleggsinnstillinger"
-
-#: ../../mod/settings.php:51
-msgid "Connected apps"
-msgstr "Tilkoblede programmer"
-
-#: ../../mod/settings.php:56
-msgid "Export personal data"
-msgstr "Eksporter personlige data"
-
-#: ../../mod/settings.php:61
-msgid "Remove account"
+msgid "Additional features"
 msgstr ""
 
-#: ../../mod/settings.php:69 ../../mod/newmember.php:22
-#: ../../mod/admin.php:785 ../../mod/admin.php:990
-#: ../../addon/dav/friendica/layout.fnk.php:225
-#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643
-#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137
-msgid "Settings"
-msgstr "Innstillinger"
-
-#: ../../mod/settings.php:113
+#: ../../mod/settings.php:118
 msgid "Missing some important data!"
 msgstr "Mangler noen viktige data!"
 
-#: ../../mod/settings.php:116 ../../mod/settings.php:569
+#: ../../mod/settings.php:121 ../../mod/settings.php:585
 msgid "Update"
 msgstr "Oppdater"
 
-#: ../../mod/settings.php:221
+#: ../../mod/settings.php:226
 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:226
+#: ../../mod/settings.php:231
 msgid "Email settings updated."
 msgstr "E-postinnstillinger er oppdatert."
 
-#: ../../mod/settings.php:290
+#: ../../mod/settings.php:246
+msgid "Features updated"
+msgstr ""
+
+#: ../../mod/settings.php:306
 msgid "Passwords do not match. Password unchanged."
 msgstr "Passordene er ikke like. Passord uendret."
 
-#: ../../mod/settings.php:295
+#: ../../mod/settings.php:311
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Tomme passord er ikke lov. Passord uendret."
 
-#: ../../mod/settings.php:306
+#: ../../mod/settings.php:322
 msgid "Password changed."
 msgstr "Passord endret."
 
-#: ../../mod/settings.php:308
+#: ../../mod/settings.php:324
 msgid "Password update failed. Please try again."
 msgstr "Passordoppdatering mislyktes. Vennligst prøv igjen."
 
-#: ../../mod/settings.php:373
+#: ../../mod/settings.php:389
 msgid " Please use a shorter name."
 msgstr "Vennligst bruk et kortere navn."
 
-#: ../../mod/settings.php:375
+#: ../../mod/settings.php:391
 msgid " Name too short."
 msgstr "Navnet er for kort."
 
-#: ../../mod/settings.php:381
+#: ../../mod/settings.php:397
 msgid " Not valid email."
 msgstr "Ugyldig e-postadresse."
 
-#: ../../mod/settings.php:383
+#: ../../mod/settings.php:399
 msgid " Cannot change to that email."
 msgstr "Kan ikke endre til den e-postadressen."
 
-#: ../../mod/settings.php:437
+#: ../../mod/settings.php:453
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: ../../mod/settings.php:441
+#: ../../mod/settings.php:457
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
-#: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495
-#: ../../addon/fbpost/fbpost.php:144 ../../addon/impressum/impressum.php:78
+#: ../../mod/settings.php:487 ../../addon/facebook/facebook.php:495
+#: ../../addon/fbpost/fbpost.php:144
+#: ../../addon/remote_permissions/remote_permissions.php:204
+#: ../../addon/impressum/impressum.php:78
 #: ../../addon/openstreetmap/openstreetmap.php:80
 #: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
-#: ../../addon/twitter/twitter.php:389
+#: ../../addon/twitter/twitter.php:501
+#: ../../addon.old/facebook/facebook.php:495
+#: ../../addon.old/fbpost/fbpost.php:144
+#: ../../addon.old/impressum/impressum.php:78
+#: ../../addon.old/openstreetmap/openstreetmap.php:80
+#: ../../addon.old/mathjax/mathjax.php:66 ../../addon.old/piwik/piwik.php:105
+#: ../../addon.old/twitter/twitter.php:389
 msgid "Settings updated."
 msgstr "Innstillinger oppdatert."
 
-#: ../../mod/settings.php:542 ../../mod/settings.php:568
-#: ../../mod/settings.php:604
+#: ../../mod/settings.php:558 ../../mod/settings.php:584
+#: ../../mod/settings.php:620
 msgid "Add application"
 msgstr "Legg til program"
 
-#: ../../mod/settings.php:546 ../../mod/settings.php:572
-#: ../../addon/statusnet/statusnet.php:570
+#: ../../mod/settings.php:562 ../../mod/settings.php:588
+#: ../../addon/statusnet/statusnet.php:679
+#: ../../addon.old/statusnet/statusnet.php:570
 msgid "Consumer Key"
 msgstr "Consumer Key"
 
-#: ../../mod/settings.php:547 ../../mod/settings.php:573
-#: ../../addon/statusnet/statusnet.php:569
+#: ../../mod/settings.php:563 ../../mod/settings.php:589
+#: ../../addon/statusnet/statusnet.php:678
+#: ../../addon.old/statusnet/statusnet.php:569
 msgid "Consumer Secret"
 msgstr "Consumer Secret"
 
-#: ../../mod/settings.php:548 ../../mod/settings.php:574
+#: ../../mod/settings.php:564 ../../mod/settings.php:590
 msgid "Redirect"
 msgstr "Omdiriger"
 
-#: ../../mod/settings.php:549 ../../mod/settings.php:575
+#: ../../mod/settings.php:565 ../../mod/settings.php:591
 msgid "Icon url"
 msgstr "Ikon URL"
 
-#: ../../mod/settings.php:560
+#: ../../mod/settings.php:576
 msgid "You can't edit this application."
 msgstr "Du kan ikke redigere dette programmet."
 
-#: ../../mod/settings.php:603
+#: ../../mod/settings.php:619
 msgid "Connected Apps"
 msgstr "Tilkoblede programmer"
 
-#: ../../mod/settings.php:607
+#: ../../mod/settings.php:623
 msgid "Client key starts with"
 msgstr "Klientnøkkelen starter med"
 
-#: ../../mod/settings.php:608
+#: ../../mod/settings.php:624
 msgid "No name"
 msgstr "Ingen navn"
 
-#: ../../mod/settings.php:609
+#: ../../mod/settings.php:625
 msgid "Remove authorization"
 msgstr "Fjern tillatelse"
 
-#: ../../mod/settings.php:620
+#: ../../mod/settings.php:637
 msgid "No Plugin settings configured"
 msgstr "Ingen tilleggsinnstillinger konfigurert"
 
-#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123
+#: ../../mod/settings.php:645 ../../addon/widgets/widgets.php:123
+#: ../../addon.old/widgets/widgets.php:123
 msgid "Plugin Settings"
 msgstr "Tilleggsinnstillinger"
 
-#: ../../mod/settings.php:640 ../../mod/settings.php:641
+#: ../../mod/settings.php:659
+msgid "Off"
+msgstr ""
+
+#: ../../mod/settings.php:659
+msgid "On"
+msgstr ""
+
+#: ../../mod/settings.php:667
+msgid "Additional Features"
+msgstr ""
+
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Innebygget støtte for %s forbindelse er %s"
 
-#: ../../mod/settings.php:640 ../../mod/settings.php:641
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
 msgid "enabled"
 msgstr "aktivert"
 
-#: ../../mod/settings.php:640 ../../mod/settings.php:641
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
 msgid "disabled"
 msgstr "avskrudd"
 
-#: ../../mod/settings.php:641
+#: ../../mod/settings.php:682
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:673
+#: ../../mod/settings.php:714
 msgid "Email access is disabled on this site."
 msgstr "E-posttilgang er avskrudd på dette stedet."
 
-#: ../../mod/settings.php:679
+#: ../../mod/settings.php:720
 msgid "Connector Settings"
 msgstr "Koblingsinnstillinger"
 
-#: ../../mod/settings.php:684
+#: ../../mod/settings.php:725
 msgid "Email/Mailbox Setup"
 msgstr "E-post-/postboksinnstillinger"
 
-#: ../../mod/settings.php:685
+#: ../../mod/settings.php:726
 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:686
+#: ../../mod/settings.php:727
 msgid "Last successful email check:"
 msgstr "Siste vellykkede e-postsjekk:"
 
-#: ../../mod/settings.php:688
+#: ../../mod/settings.php:729
 msgid "IMAP server name:"
 msgstr "IMAP-tjeners navn:"
 
-#: ../../mod/settings.php:689
+#: ../../mod/settings.php:730
 msgid "IMAP port:"
 msgstr "IMAP port:"
 
-#: ../../mod/settings.php:690
+#: ../../mod/settings.php:731
 msgid "Security:"
 msgstr "Sikkerhet:"
 
-#: ../../mod/settings.php:690 ../../mod/settings.php:695
+#: ../../mod/settings.php:731 ../../mod/settings.php:736
 #: ../../addon/dav/common/wdcal_edit.inc.php:191
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
 msgid "None"
 msgstr "Ingen"
 
-#: ../../mod/settings.php:691
+#: ../../mod/settings.php:732
 msgid "Email login name:"
 msgstr "E-post brukernavn:"
 
-#: ../../mod/settings.php:692
+#: ../../mod/settings.php:733
 msgid "Email password:"
 msgstr "E-post passord:"
 
-#: ../../mod/settings.php:693
+#: ../../mod/settings.php:734
 msgid "Reply-to address:"
 msgstr "Svar-til-adresse:"
 
-#: ../../mod/settings.php:694
+#: ../../mod/settings.php:735
 msgid "Send public posts to all email contacts:"
 msgstr "Send offentlige meldinger til alle e-postkontakter:"
 
-#: ../../mod/settings.php:695
+#: ../../mod/settings.php:736
 msgid "Action after import:"
 msgstr ""
 
-#: ../../mod/settings.php:695
+#: ../../mod/settings.php:736
 msgid "Mark as seen"
 msgstr ""
 
-#: ../../mod/settings.php:695
+#: ../../mod/settings.php:736
 msgid "Move to folder"
 msgstr ""
 
-#: ../../mod/settings.php:696
+#: ../../mod/settings.php:737
 msgid "Move to folder:"
 msgstr ""
 
-#: ../../mod/settings.php:727 ../../mod/admin.php:402
+#: ../../mod/settings.php:768 ../../mod/admin.php:404
 msgid "No special theme for mobile devices"
 msgstr ""
 
-#: ../../mod/settings.php:767
+#: ../../mod/settings.php:808
 msgid "Display Settings"
 msgstr ""
 
-#: ../../mod/settings.php:773 ../../mod/settings.php:784
+#: ../../mod/settings.php:814 ../../mod/settings.php:825
 msgid "Display Theme:"
 msgstr "Vis tema:"
 
-#: ../../mod/settings.php:774
+#: ../../mod/settings.php:815
 msgid "Mobile Theme:"
 msgstr ""
 
-#: ../../mod/settings.php:775
+#: ../../mod/settings.php:816
 msgid "Update browser every xx seconds"
 msgstr ""
 
-#: ../../mod/settings.php:775
+#: ../../mod/settings.php:816
 msgid "Minimum of 10 seconds, no maximum"
 msgstr ""
 
-#: ../../mod/settings.php:776
+#: ../../mod/settings.php:817
 msgid "Number of items to display per page:"
 msgstr ""
 
-#: ../../mod/settings.php:776
+#: ../../mod/settings.php:817
 msgid "Maximum of 100 items"
 msgstr ""
 
-#: ../../mod/settings.php:777
+#: ../../mod/settings.php:818
 msgid "Don't show emoticons"
 msgstr ""
 
-#: ../../mod/settings.php:853
+#: ../../mod/settings.php:894
 msgid "Normal Account Page"
 msgstr ""
 
-#: ../../mod/settings.php:854
+#: ../../mod/settings.php:895
 msgid "This account is a normal personal profile"
 msgstr "Denne kontoen er en vanlig personlig profil"
 
-#: ../../mod/settings.php:857
+#: ../../mod/settings.php:898
 msgid "Soapbox Page"
 msgstr ""
 
-#: ../../mod/settings.php:858
+#: ../../mod/settings.php:899
 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:861
+#: ../../mod/settings.php:902
 msgid "Community Forum/Celebrity Account"
 msgstr ""
 
-#: ../../mod/settings.php:862
+#: ../../mod/settings.php:903
 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:865
+#: ../../mod/settings.php:906
 msgid "Automatic Friend Page"
 msgstr ""
 
-#: ../../mod/settings.php:866
+#: ../../mod/settings.php:907
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som venner"
 
-#: ../../mod/settings.php:869
+#: ../../mod/settings.php:910
 msgid "Private Forum [Experimental]"
 msgstr ""
 
-#: ../../mod/settings.php:870
+#: ../../mod/settings.php:911
 msgid "Private forum - approved members only"
 msgstr ""
 
-#: ../../mod/settings.php:882
+#: ../../mod/settings.php:923
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:882
+#: ../../mod/settings.php:923
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "(Valgfritt) Tillat denne OpenID-en å logge inn i denne kontoen."
 
-#: ../../mod/settings.php:892
+#: ../../mod/settings.php:933
 msgid "Publish your default profile in your local site directory?"
 msgstr "Skal standardprofilen din publiseres i katalogen til nettstedet ditt?"
 
-#: ../../mod/settings.php:898
+#: ../../mod/settings.php:939
 msgid "Publish your default profile in the global social directory?"
 msgstr "Skal standardprofilen din publiseres i den globale sosiale katalogen?"
 
-#: ../../mod/settings.php:906
+#: ../../mod/settings.php:947
 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:910
+#: ../../mod/settings.php:951
 msgid "Hide your profile details from unknown viewers?"
 msgstr ""
 
-#: ../../mod/settings.php:915
+#: ../../mod/settings.php:956
 msgid "Allow friends to post to your profile page?"
 msgstr "Tillat venner å poste innlegg på din profilside?"
 
-#: ../../mod/settings.php:921
+#: ../../mod/settings.php:962
 msgid "Allow friends to tag your posts?"
 msgstr "Tillat venner å merke dine innlegg?"
 
-#: ../../mod/settings.php:927
+#: ../../mod/settings.php:968
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: ../../mod/settings.php:933
+#: ../../mod/settings.php:974
 msgid "Permit unknown people to send you private mail?"
 msgstr ""
 
-#: ../../mod/settings.php:941
+#: ../../mod/settings.php:982
 msgid "Profile is <strong>not published</strong>."
 msgstr "Profilen er <strong>ikke publisert</strong>."
 
-#: ../../mod/settings.php:944 ../../mod/profile_photo.php:248
+#: ../../mod/settings.php:985 ../../mod/profile_photo.php:248
 msgid "or"
 msgstr "eller"
 
-#: ../../mod/settings.php:949
+#: ../../mod/settings.php:990
 msgid "Your Identity Address is"
 msgstr "Din identitetsadresse er"
 
-#: ../../mod/settings.php:960
+#: ../../mod/settings.php:1001
 msgid "Automatically expire posts after this many days:"
 msgstr ""
 
-#: ../../mod/settings.php:960
+#: ../../mod/settings.php:1001
 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:961
+#: ../../mod/settings.php:1002
 msgid "Advanced expiration settings"
 msgstr ""
 
-#: ../../mod/settings.php:962
+#: ../../mod/settings.php:1003
 msgid "Advanced Expiration"
 msgstr ""
 
-#: ../../mod/settings.php:963
+#: ../../mod/settings.php:1004
 msgid "Expire posts:"
 msgstr ""
 
-#: ../../mod/settings.php:964
+#: ../../mod/settings.php:1005
 msgid "Expire personal notes:"
 msgstr ""
 
-#: ../../mod/settings.php:965
+#: ../../mod/settings.php:1006
 msgid "Expire starred posts:"
 msgstr ""
 
-#: ../../mod/settings.php:966
+#: ../../mod/settings.php:1007
 msgid "Expire photos:"
 msgstr ""
 
-#: ../../mod/settings.php:967
+#: ../../mod/settings.php:1008
 msgid "Only expire posts by others:"
 msgstr ""
 
-#: ../../mod/settings.php:974
+#: ../../mod/settings.php:1015
 msgid "Account Settings"
 msgstr "Kontoinnstillinger"
 
-#: ../../mod/settings.php:982
+#: ../../mod/settings.php:1023
 msgid "Password Settings"
 msgstr "Passordinnstillinger"
 
-#: ../../mod/settings.php:983
+#: ../../mod/settings.php:1024
 msgid "New Password:"
 msgstr "Nytt passord:"
 
-#: ../../mod/settings.php:984
+#: ../../mod/settings.php:1025
 msgid "Confirm:"
 msgstr "Bekreft:"
 
-#: ../../mod/settings.php:984
+#: ../../mod/settings.php:1025
 msgid "Leave password fields blank unless changing"
 msgstr "La passordfeltene stå tomme hvis du ikke skal bytte"
 
-#: ../../mod/settings.php:988
+#: ../../mod/settings.php:1029
 msgid "Basic Settings"
 msgstr "Grunninnstillinger"
 
-#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15
+#: ../../mod/settings.php:1030 ../../include/profile_advanced.php:15
 msgid "Full Name:"
 msgstr "Fullt navn:"
 
-#: ../../mod/settings.php:990
+#: ../../mod/settings.php:1031
 msgid "Email Address:"
 msgstr "E-postadresse:"
 
-#: ../../mod/settings.php:991
+#: ../../mod/settings.php:1032
 msgid "Your Timezone:"
 msgstr "Din tidssone:"
 
-#: ../../mod/settings.php:992
+#: ../../mod/settings.php:1033
 msgid "Default Post Location:"
 msgstr "Standard oppholdssted når du poster:"
 
-#: ../../mod/settings.php:993
+#: ../../mod/settings.php:1034
 msgid "Use Browser Location:"
 msgstr "Bruk nettleserens oppholdssted:"
 
-#: ../../mod/settings.php:996
+#: ../../mod/settings.php:1037
 msgid "Security and Privacy Settings"
 msgstr "Sikkerhet og privatlivsinnstillinger"
 
-#: ../../mod/settings.php:998
+#: ../../mod/settings.php:1039
 msgid "Maximum Friend Requests/Day:"
 msgstr "Maksimum venneforespørsler/dag:"
 
-#: ../../mod/settings.php:998 ../../mod/settings.php:1017
+#: ../../mod/settings.php:1039 ../../mod/settings.php:1058
 msgid "(to prevent spam abuse)"
 msgstr "(for å forhindre søppelpost)"
 
-#: ../../mod/settings.php:999
+#: ../../mod/settings.php:1040
 msgid "Default Post Permissions"
 msgstr "Standardtillatelser ved posting"
 
-#: ../../mod/settings.php:1000
+#: ../../mod/settings.php:1041
 msgid "(click to open/close)"
 msgstr "(klikk for å åpne/lukke)"
 
-#: ../../mod/settings.php:1017
+#: ../../mod/settings.php:1058
 msgid "Maximum private messages per day from unknown people:"
 msgstr ""
 
-#: ../../mod/settings.php:1020
+#: ../../mod/settings.php:1061
 msgid "Notification Settings"
 msgstr "Beskjedinnstillinger"
 
-#: ../../mod/settings.php:1021
+#: ../../mod/settings.php:1062
 msgid "By default post a status message when:"
 msgstr ""
 
-#: ../../mod/settings.php:1022
+#: ../../mod/settings.php:1063
 msgid "accepting a friend request"
 msgstr ""
 
-#: ../../mod/settings.php:1023
+#: ../../mod/settings.php:1064
 msgid "joining a forum/community"
 msgstr ""
 
-#: ../../mod/settings.php:1024
+#: ../../mod/settings.php:1065
 msgid "making an <em>interesting</em> profile change"
 msgstr ""
 
-#: ../../mod/settings.php:1025
+#: ../../mod/settings.php:1066
 msgid "Send a notification email when:"
 msgstr "Send en e-post med beskjed når:"
 
-#: ../../mod/settings.php:1026
+#: ../../mod/settings.php:1067
 msgid "You receive an introduction"
 msgstr "Du mottar en introduksjon"
 
-#: ../../mod/settings.php:1027
+#: ../../mod/settings.php:1068
 msgid "Your introductions are confirmed"
 msgstr "Dine introduksjoner er bekreftet"
 
-#: ../../mod/settings.php:1028
+#: ../../mod/settings.php:1069
 msgid "Someone writes on your profile wall"
 msgstr "Noen skriver på veggen til profilen din"
 
-#: ../../mod/settings.php:1029
+#: ../../mod/settings.php:1070
 msgid "Someone writes a followup comment"
 msgstr "Noen skriver en oppfølgingskommentar"
 
-#: ../../mod/settings.php:1030
+#: ../../mod/settings.php:1071
 msgid "You receive a private message"
 msgstr "Du mottar en privat melding"
 
-#: ../../mod/settings.php:1031
+#: ../../mod/settings.php:1072
 msgid "You receive a friend suggestion"
 msgstr ""
 
-#: ../../mod/settings.php:1032
+#: ../../mod/settings.php:1073
 msgid "You are tagged in a post"
 msgstr ""
 
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1074
 msgid "You are poked/prodded/etc. in a post"
 msgstr ""
 
-#: ../../mod/settings.php:1036
+#: ../../mod/settings.php:1077
 msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: ../../mod/settings.php:1037
+#: ../../mod/settings.php:1078
 msgid "Change the behaviour of this account for special situations"
 msgstr ""
 
-#: ../../mod/manage.php:91
+#: ../../mod/manage.php:94
 msgid "Manage Identities and/or Pages"
 msgstr "Behandle identiteter og/eller sider"
 
-#: ../../mod/manage.php:94
+#: ../../mod/manage.php:97
 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/manage.php:96
+#: ../../mod/manage.php:99
 msgid "Select an identity to manage: "
 msgstr "Velg en identitet å behandle:"
 
-#: ../../mod/network.php:97
+#: ../../mod/network.php:181
 msgid "Search Results For:"
 msgstr ""
 
-#: ../../mod/network.php:137 ../../mod/search.php:16
+#: ../../mod/network.php:224 ../../mod/search.php:21
 msgid "Remove term"
 msgstr "Fjern uttrykk"
 
-#: ../../mod/network.php:146 ../../mod/search.php:13
+#: ../../mod/network.php:233 ../../mod/search.php:30
+#: ../../include/features.php:41
 msgid "Saved Searches"
 msgstr "Lagrede søk"
 
-#: ../../mod/network.php:147 ../../include/group.php:244
+#: ../../mod/network.php:234 ../../include/group.php:275
 msgid "add"
 msgstr ""
 
-#: ../../mod/network.php:287
+#: ../../mod/network.php:397
 msgid "Commented Order"
-msgstr ""
+msgstr "Etter kommentarer"
 
-#: ../../mod/network.php:290
+#: ../../mod/network.php:400
 msgid "Sort by Comment Date"
 msgstr ""
 
-#: ../../mod/network.php:293
+#: ../../mod/network.php:403
 msgid "Posted Order"
-msgstr ""
+msgstr "Etter innlegg"
 
-#: ../../mod/network.php:296
+#: ../../mod/network.php:406
 msgid "Sort by Post Date"
 msgstr ""
 
-#: ../../mod/network.php:303
+#: ../../mod/network.php:447
 msgid "Posts that mention or involve you"
 msgstr ""
 
-#: ../../mod/network.php:306
+#: ../../mod/network.php:453
 msgid "New"
-msgstr ""
+msgstr "Ny"
 
-#: ../../mod/network.php:309
+#: ../../mod/network.php:456
 msgid "Activity Stream - by date"
 msgstr ""
 
-#: ../../mod/network.php:312
-msgid "Starred"
+#: ../../mod/network.php:462
+msgid "Shared Links"
 msgstr ""
 
-#: ../../mod/network.php:315
-msgid "Favourite Posts"
+#: ../../mod/network.php:465
+msgid "Interesting Links"
 msgstr ""
 
-#: ../../mod/network.php:318
-msgid "Shared Links"
-msgstr ""
+#: ../../mod/network.php:471
+msgid "Starred"
+msgstr "Med stjerne"
 
-#: ../../mod/network.php:321
-msgid "Interesting Links"
+#: ../../mod/network.php:474
+msgid "Favourite Posts"
 msgstr ""
 
-#: ../../mod/network.php:388
+#: ../../mod/network.php:546
 #, php-format
 msgid "Warning: This group contains %s member from an insecure network."
 msgid_plural ""
@@ -2609,41 +2747,77 @@ msgid_plural ""
 msgstr[0] "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk."
 msgstr[1] "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk."
 
-#: ../../mod/network.php:391
+#: ../../mod/network.php:549
 msgid "Private messages to this group are at risk of public disclosure."
 msgstr "Private meldinger til denne gruppen risikerer å bli offentliggjort."
 
-#: ../../mod/network.php:461
+#: ../../mod/network.php:619
 msgid "Contact: "
 msgstr "Kontakt:"
 
-#: ../../mod/network.php:463
+#: ../../mod/network.php:621
 msgid "Private messages to this person are at risk of public disclosure."
 msgstr "Private meldinger til denne personen risikerer å bli offentliggjort."
 
-#: ../../mod/network.php:468
+#: ../../mod/network.php:626
 msgid "Invalid contact."
 msgstr "Ugyldig kontakt."
 
-#: ../../mod/notes.php:44 ../../boot.php:1696
+#: ../../mod/notes.php:44 ../../boot.php:1755
 msgid "Personal Notes"
 msgstr "Personlige notater"
 
 #: ../../mod/notes.php:63 ../../mod/filer.php:30
 #: ../../addon/facebook/facebook.php:770
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:263
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:281
 #: ../../addon/fbpost/fbpost.php:267
 #: ../../addon/dav/friendica/layout.fnk.php:441
-#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681
+#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:688
+#: ../../addon.old/facebook/facebook.php:770
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
+#: ../../addon.old/fbpost/fbpost.php:267
+#: ../../addon.old/dav/friendica/layout.fnk.php:441
+#: ../../addon.old/dav/friendica/layout.fnk.php:488
 msgid "Save"
 msgstr "Lagre"
 
+#: ../../mod/uimport.php:50 ../../mod/register.php:190
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr ""
+
+#: ../../mod/uimport.php:64
+msgid "Import"
+msgstr ""
+
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr ""
+
+#: ../../mod/uimport.php:67
+msgid ""
+"You can import an account from another Friendica server. <br>\r\n"
+"                            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.<br>\r\n"
+"                            <b>This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"
+msgstr ""
+
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr ""
+
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your accont, go to \"Settings->Export your porsonal data\" and "
+"select \"Export account\""
+msgstr ""
+
 #: ../../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/wallmessage.php:56 ../../mod/message.php:59
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
 msgid "No recipient selected."
 msgstr "Ingen mottaker valgt."
 
@@ -2651,15 +2825,15 @@ msgstr "Ingen mottaker valgt."
 msgid "Unable to check your home location."
 msgstr ""
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:66
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
 msgid "Message could not be sent."
 msgstr "Meldingen kunne ikke sendes."
 
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:69
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
 msgid "Message collection failure."
 msgstr ""
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:72
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
 msgid "Message sent."
 msgstr "Melding sendt."
 
@@ -2668,12 +2842,12 @@ msgid "No recipient."
 msgstr ""
 
 #: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
-#: ../../mod/message.php:242 ../../mod/message.php:250
-#: ../../include/conversation.php:833 ../../include/conversation.php:850
+#: ../../mod/message.php:249 ../../mod/message.php:257
+#: ../../include/conversation.php:905 ../../include/conversation.php:923
 msgid "Please enter a link URL:"
 msgstr "Vennligst skriv inn en lenke URL:"
 
-#: ../../mod/wallmessage.php:138 ../../mod/message.php:278
+#: ../../mod/wallmessage.php:138 ../../mod/message.php:285
 msgid "Send Private Message"
 msgstr "Send privat melding"
 
@@ -2684,18 +2858,18 @@ msgid ""
 "your site allow private mail from unknown senders."
 msgstr ""
 
-#: ../../mod/wallmessage.php:140 ../../mod/message.php:279
-#: ../../mod/message.php:469
+#: ../../mod/wallmessage.php:140 ../../mod/message.php:286
+#: ../../mod/message.php:476
 msgid "To:"
 msgstr "Til:"
 
-#: ../../mod/wallmessage.php:141 ../../mod/message.php:284
-#: ../../mod/message.php:471
+#: ../../mod/wallmessage.php:141 ../../mod/message.php:291
+#: ../../mod/message.php:478
 msgid "Subject:"
 msgstr "Emne:"
 
-#: ../../mod/wallmessage.php:147 ../../mod/message.php:288
-#: ../../mod/message.php:474 ../../mod/invite.php:113
+#: ../../mod/wallmessage.php:147 ../../mod/message.php:295
+#: ../../mod/message.php:481 ../../mod/invite.php:113
 msgid "Your message:"
 msgstr "Din melding:"
 
@@ -2750,9 +2924,9 @@ msgid ""
 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/newmember.php:32 ../../mod/profperm.php:103
-#: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7
+#: ../../view/theme/diabook/theme.php:88 ../../include/profile_advanced.php:7
 #: ../../include/profile_advanced.php:84 ../../include/nav.php:50
-#: ../../boot.php:1672
+#: ../../boot.php:1731
 msgid "Profile"
 msgstr "Profil"
 
@@ -2796,6 +2970,8 @@ msgstr ""
 #: ../../mod/newmember.php:49 ../../mod/newmember.php:51
 #: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239
 #: ../../include/contact_selectors.php:81
+#: ../../addon.old/facebook/facebook.php:728
+#: ../../addon.old/fbpost/fbpost.php:239
 msgid "Facebook"
 msgstr "Facebook"
 
@@ -2857,7 +3033,7 @@ msgid ""
 "hours."
 msgstr ""
 
-#: ../../mod/newmember.php:66 ../../include/group.php:239
+#: ../../mod/newmember.php:66 ../../include/group.php:270
 msgid "Groups"
 msgstr ""
 
@@ -2921,7 +3097,7 @@ msgstr "Fant ikke gruppen."
 msgid "Group name changed."
 msgstr "Gruppenavnet er endret"
 
-#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:316
+#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:332
 msgid "Permission denied"
 msgstr "Tilgang nektet"
 
@@ -2973,95 +3149,89 @@ msgstr "Alle kontakter (med sikret profiltilgang)"
 msgid "No contacts."
 msgstr "Ingen kontakter."
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:618
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:625
 msgid "View Contacts"
 msgstr "Vis kontakter"
 
-#: ../../mod/register.php:88 ../../mod/regmod.php:52
+#: ../../mod/register.php:89 ../../mod/regmod.php:52
 #, php-format
 msgid "Registration details for %s"
 msgstr "Registeringsdetaljer for %s"
 
-#: ../../mod/register.php:96
+#: ../../mod/register.php:97
 msgid ""
 "Registration successful. Please check your email for further instructions."
 msgstr "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner."
 
-#: ../../mod/register.php:100
+#: ../../mod/register.php:101
 msgid "Failed to send email message. Here is the message that failed."
 msgstr "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes."
 
-#: ../../mod/register.php:105
+#: ../../mod/register.php:106
 msgid "Your registration can not be processed."
 msgstr "Din registrering kan ikke behandles."
 
-#: ../../mod/register.php:142
+#: ../../mod/register.php:143
 #, php-format
 msgid "Registration request at %s"
 msgstr "Henvendelse om registrering ved %s"
 
-#: ../../mod/register.php:151
+#: ../../mod/register.php:152
 msgid "Your registration is pending approval by the site owner."
 msgstr "Din registrering venter på godkjenning fra eier av stedet."
 
-#: ../../mod/register.php:189
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr ""
-
-#: ../../mod/register.php:217
+#: ../../mod/register.php:218
 msgid ""
 "You may (optionally) fill in this form via OpenID by supplying your OpenID "
 "and clicking 'Register'."
 msgstr "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\"."
 
-#: ../../mod/register.php:218
+#: ../../mod/register.php:219
 msgid ""
 "If you are not familiar with OpenID, please leave that field blank and fill "
 "in the rest of the items."
 msgstr "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene."
 
-#: ../../mod/register.php:219
+#: ../../mod/register.php:220
 msgid "Your OpenID (optional): "
 msgstr "Din OpenID (valgfritt):"
 
-#: ../../mod/register.php:233
+#: ../../mod/register.php:234
 msgid "Include your profile in member directory?"
 msgstr "Legg til profilen din i medlemskatalogen?"
 
-#: ../../mod/register.php:255
+#: ../../mod/register.php:256
 msgid "Membership on this site is by invitation only."
 msgstr "Medlemskap ved dette nettstedet skjer bare på invitasjon."
 
-#: ../../mod/register.php:256
+#: ../../mod/register.php:257
 msgid "Your invitation ID: "
 msgstr "Din invitasjons-ID:"
 
-#: ../../mod/register.php:259 ../../mod/admin.php:444
+#: ../../mod/register.php:260 ../../mod/admin.php:446
 msgid "Registration"
 msgstr "Registrering"
 
-#: ../../mod/register.php:267
+#: ../../mod/register.php:268
 msgid "Your Full Name (e.g. Joe Smith): "
 msgstr "Ditt fulle navn (f.eks. Ola Nordmann):"
 
-#: ../../mod/register.php:268
+#: ../../mod/register.php:269
 msgid "Your Email Address: "
 msgstr "Din e-postadresse:"
 
-#: ../../mod/register.php:269
+#: ../../mod/register.php:270
 msgid ""
 "Choose a profile nickname. This must begin with a text character. Your "
 "profile address on this site will then be "
 "'<strong>nickname@$sitename</strong>'."
 msgstr "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"<strong>kallenavn@$sitename</strong>\"."
 
-#: ../../mod/register.php:270
+#: ../../mod/register.php:271
 msgid "Choose a nickname: "
 msgstr "Velg et kallenavn:"
 
-#: ../../mod/register.php:273 ../../include/nav.php:81 ../../boot.php:887
+#: ../../mod/register.php:274 ../../include/nav.php:81 ../../boot.php:923
 msgid "Register"
 msgstr "Registrer"
 
@@ -3069,21 +3239,35 @@ msgstr "Registrer"
 msgid "People Search"
 msgstr "Personsøk"
 
-#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62
-#: ../../addon/facebook/facebook.php:1598
+#: ../../mod/like.php:145 ../../mod/subthread.php:87 ../../mod/tagger.php:62
+#: ../../addon/communityhome/communityhome.php:163
+#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1442
+#: ../../include/diaspora.php:1848 ../../include/conversation.php:125
+#: ../../include/conversation.php:253
+#: ../../addon.old/communityhome/communityhome.php:163
+msgid "photo"
+msgstr "bilde"
+
+#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/subthread.php:87
+#: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1598
 #: ../../addon/communityhome/communityhome.php:158
 #: ../../addon/communityhome/communityhome.php:167
-#: ../../view/theme/diabook/theme.php:565
-#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824
+#: ../../view/theme/diabook/theme.php:459
+#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1848
 #: ../../include/conversation.php:120 ../../include/conversation.php:129
 #: ../../include/conversation.php:248 ../../include/conversation.php:257
+#: ../../addon.old/facebook/facebook.php:1598
+#: ../../addon.old/communityhome/communityhome.php:158
+#: ../../addon.old/communityhome/communityhome.php:167
 msgid "status"
 msgstr "status"
 
 #: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602
 #: ../../addon/communityhome/communityhome.php:172
-#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840
+#: ../../view/theme/diabook/theme.php:473 ../../include/diaspora.php:1864
 #: ../../include/conversation.php:136
+#: ../../addon.old/facebook/facebook.php:1602
+#: ../../addon.old/communityhome/communityhome.php:172
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
 msgstr "%1$s liker %2$s's %3$s"
@@ -3094,8 +3278,8 @@ msgid "%1$s doesn't like %2$s's %3$s"
 msgstr "%1$s liker ikke %2$s's %3$s"
 
 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
-#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29
-#: ../../mod/display.php:145 ../../include/items.php:3779
+#: ../../mod/admin.php:737 ../../mod/admin.php:936 ../../mod/display.php:39
+#: ../../mod/display.php:169 ../../include/items.php:3843
 msgid "Item not found."
 msgstr "Enheten ble ikke funnet."
 
@@ -3103,8 +3287,8 @@ msgstr "Enheten ble ikke funnet."
 msgid "Access denied."
 msgstr ""
 
-#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130
-#: ../../include/nav.php:51 ../../boot.php:1679
+#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
+#: ../../include/nav.php:51 ../../boot.php:1738
 msgid "Photos"
 msgstr "Bilder"
 
@@ -3125,43 +3309,43 @@ msgstr "Registreringen til  %s er trukket tilbake"
 msgid "Please login."
 msgstr "Vennligst logg inn."
 
-#: ../../mod/item.php:91
+#: ../../mod/item.php:104
 msgid "Unable to locate original post."
 msgstr "Mislyktes med å lokalisere opprinnelig melding."
 
-#: ../../mod/item.php:275
+#: ../../mod/item.php:288
 msgid "Empty post discarded."
 msgstr "Tom melding forkastet."
 
-#: ../../mod/item.php:407 ../../mod/wall_upload.php:133
-#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149
+#: ../../mod/item.php:424 ../../mod/wall_upload.php:135
+#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151
 #: ../../include/message.php:144
 msgid "Wall Photos"
 msgstr "Veggbilder"
 
-#: ../../mod/item.php:820
+#: ../../mod/item.php:837
 msgid "System error. Post not saved."
 msgstr "Systemfeil. Meldingen ble ikke lagret."
 
-#: ../../mod/item.php:845
+#: ../../mod/item.php:862
 #, php-format
 msgid ""
 "This message was sent to you by %s, a member of the Friendica social "
 "network."
 msgstr ""
 
-#: ../../mod/item.php:847
+#: ../../mod/item.php:864
 #, php-format
 msgid "You may visit them online at %s"
 msgstr "Du kan besøke dem online på %s"
 
-#: ../../mod/item.php:848
+#: ../../mod/item.php:865
 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:850
+#: ../../mod/item.php:867
 #, php-format
 msgid "%s posted an update."
 msgstr "%s postet en oppdatering."
@@ -3199,7 +3383,7 @@ msgstr "Shift-last-siden-på-nytt eller slett mellomlagret i nettleseren hvis de
 msgid "Unable to process image"
 msgstr "Mislyktes med å behandle bilde"
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:88
+#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90
 #, php-format
 msgid "Image exceeds size limit of %d"
 msgstr "Bildets størrelse overstiger størrelsesbegrensningen på %d"
@@ -3214,6 +3398,7 @@ msgstr ""
 
 #: ../../mod/profile_photo.php:245
 #: ../../addon/dav/friendica/layout.fnk.php:152
+#: ../../addon.old/dav/friendica/layout.fnk.php:152
 msgid "Upload"
 msgstr "Last opp"
 
@@ -3259,71 +3444,71 @@ msgstr "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke
 msgid "Please enter your password for verification:"
 msgstr "Vennligst skriv inn ditt passord for å bekrefte:"
 
-#: ../../mod/message.php:9 ../../include/nav.php:131
+#: ../../mod/message.php:9 ../../include/nav.php:132
 msgid "New Message"
 msgstr "Ny melding"
 
-#: ../../mod/message.php:63
+#: ../../mod/message.php:67
 msgid "Unable to locate contact information."
 msgstr "Mislyktes med å finne kontaktinformasjon."
 
-#: ../../mod/message.php:191
+#: ../../mod/message.php:195
 msgid "Message deleted."
 msgstr "Melding slettet."
 
-#: ../../mod/message.php:221
+#: ../../mod/message.php:225
 msgid "Conversation removed."
 msgstr "Samtale slettet."
 
-#: ../../mod/message.php:327
+#: ../../mod/message.php:334
 msgid "No messages."
 msgstr "Ingen meldinger."
 
-#: ../../mod/message.php:334
+#: ../../mod/message.php:341
 #, php-format
 msgid "Unknown sender - %s"
 msgstr ""
 
-#: ../../mod/message.php:337
+#: ../../mod/message.php:344
 #, php-format
 msgid "You and %s"
 msgstr ""
 
-#: ../../mod/message.php:340
+#: ../../mod/message.php:347
 #, php-format
 msgid "%s and You"
 msgstr ""
 
-#: ../../mod/message.php:350 ../../mod/message.php:462
+#: ../../mod/message.php:357 ../../mod/message.php:469
 msgid "Delete conversation"
 msgstr "Slett samtale"
 
-#: ../../mod/message.php:353
+#: ../../mod/message.php:360
 msgid "D, d M Y - g:i A"
 msgstr "D, d M Y - g:i A"
 
-#: ../../mod/message.php:356
+#: ../../mod/message.php:363
 #, php-format
 msgid "%d message"
 msgid_plural "%d messages"
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../mod/message.php:391
+#: ../../mod/message.php:398
 msgid "Message not available."
 msgstr "Melding utilgjengelig."
 
-#: ../../mod/message.php:444
+#: ../../mod/message.php:451
 msgid "Delete message"
 msgstr "Slett melding"
 
-#: ../../mod/message.php:464
+#: ../../mod/message.php:471
 msgid ""
 "No secure communications available. You <strong>may</strong> be able to "
 "respond from the sender's profile page."
 msgstr ""
 
-#: ../../mod/message.php:468
+#: ../../mod/message.php:475
 msgid "Send Reply"
 msgstr "Send svar"
 
@@ -3334,25 +3519,25 @@ msgstr "Venner av %s"
 
 #: ../../mod/allfriends.php:40
 msgid "No friends to display."
-msgstr ""
+msgstr "Ingen venner å vise."
 
 #: ../../mod/admin.php:55
 msgid "Theme settings updated."
 msgstr ""
 
-#: ../../mod/admin.php:96 ../../mod/admin.php:442
+#: ../../mod/admin.php:96 ../../mod/admin.php:444
 msgid "Site"
 msgstr "Nettsted"
 
-#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701
+#: ../../mod/admin.php:97 ../../mod/admin.php:691 ../../mod/admin.php:704
 msgid "Users"
 msgstr "Brukere"
 
-#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825
+#: ../../mod/admin.php:98 ../../mod/admin.php:786 ../../mod/admin.php:828
 msgid "Plugins"
 msgstr "Tillegg"
 
-#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024
+#: ../../mod/admin.php:99 ../../mod/admin.php:991 ../../mod/admin.php:1027
 msgid "Themes"
 msgstr ""
 
@@ -3360,11 +3545,11 @@ msgstr ""
 msgid "DB updates"
 msgstr ""
 
-#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111
+#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1114
 msgid "Logs"
 msgstr "Logger"
 
-#: ../../mod/admin.php:120 ../../include/nav.php:146
+#: ../../mod/admin.php:120 ../../include/nav.php:149
 msgid "Admin"
 msgstr "Administrator"
 
@@ -3376,19 +3561,19 @@ msgstr ""
 msgid "User registrations waiting for confirmation"
 msgstr "Brukerregistreringer venter på bekreftelse"
 
-#: ../../mod/admin.php:183 ../../mod/admin.php:669
+#: ../../mod/admin.php:183 ../../mod/admin.php:672
 msgid "Normal Account"
 msgstr "Vanlig konto"
 
-#: ../../mod/admin.php:184 ../../mod/admin.php:670
+#: ../../mod/admin.php:184 ../../mod/admin.php:673
 msgid "Soapbox Account"
 msgstr "Talerstol-konto"
 
-#: ../../mod/admin.php:185 ../../mod/admin.php:671
+#: ../../mod/admin.php:185 ../../mod/admin.php:674
 msgid "Community/Celebrity Account"
 msgstr "Gruppe-/kjendiskonto"
 
-#: ../../mod/admin.php:186 ../../mod/admin.php:672
+#: ../../mod/admin.php:186 ../../mod/admin.php:675
 msgid "Automatic Friend Account"
 msgstr "Automatisk vennekonto"
 
@@ -3404,9 +3589,9 @@ msgstr ""
 msgid "Message queues"
 msgstr ""
 
-#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687
-#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987
-#: ../../mod/admin.php:1023 ../../mod/admin.php:1110
+#: ../../mod/admin.php:212 ../../mod/admin.php:443 ../../mod/admin.php:690
+#: ../../mod/admin.php:785 ../../mod/admin.php:827 ../../mod/admin.php:990
+#: ../../mod/admin.php:1026 ../../mod/admin.php:1113
 msgid "Administration"
 msgstr "Administrasjon"
 
@@ -3430,565 +3615,578 @@ msgstr "Versjon"
 msgid "Active plugins"
 msgstr "Aktive tillegg"
 
-#: ../../mod/admin.php:373
+#: ../../mod/admin.php:375
 msgid "Site settings updated."
 msgstr "Nettstedets innstillinger er oppdatert."
 
-#: ../../mod/admin.php:428
+#: ../../mod/admin.php:430
 msgid "Closed"
 msgstr "Stengt"
 
-#: ../../mod/admin.php:429
+#: ../../mod/admin.php:431
 msgid "Requires approval"
 msgstr "Krever godkjenning"
 
-#: ../../mod/admin.php:430
+#: ../../mod/admin.php:432
 msgid "Open"
 msgstr "Åpen"
 
-#: ../../mod/admin.php:434
+#: ../../mod/admin.php:436
 msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: ../../mod/admin.php:435
+#: ../../mod/admin.php:437
 msgid "Force all links to use SSL"
 msgstr ""
 
-#: ../../mod/admin.php:436
+#: ../../mod/admin.php:438
 msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: ../../mod/admin.php:445
+#: ../../mod/admin.php:447
 msgid "File upload"
 msgstr "Last opp fil"
 
-#: ../../mod/admin.php:446
+#: ../../mod/admin.php:448
 msgid "Policies"
 msgstr "Retningslinjer"
 
-#: ../../mod/admin.php:447
+#: ../../mod/admin.php:449
 msgid "Advanced"
 msgstr "Avansert"
 
-#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567
+#: ../../mod/admin.php:453 ../../addon/statusnet/statusnet.php:676
+#: ../../addon.old/statusnet/statusnet.php:567
 msgid "Site name"
 msgstr "Nettstedets navn"
 
-#: ../../mod/admin.php:452
+#: ../../mod/admin.php:454
 msgid "Banner/Logo"
 msgstr "Banner/logo"
 
-#: ../../mod/admin.php:453
+#: ../../mod/admin.php:455
 msgid "System language"
 msgstr "Systemspråk"
 
-#: ../../mod/admin.php:454
+#: ../../mod/admin.php:456
 msgid "System theme"
 msgstr "Systemtema"
 
-#: ../../mod/admin.php:454
+#: ../../mod/admin.php:456
 msgid ""
 "Default system theme - may be over-ridden by user profiles - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: ../../mod/admin.php:455
+#: ../../mod/admin.php:457
 msgid "Mobile system theme"
 msgstr ""
 
-#: ../../mod/admin.php:455
+#: ../../mod/admin.php:457
 msgid "Theme for mobile devices"
 msgstr ""
 
-#: ../../mod/admin.php:456
+#: ../../mod/admin.php:458
 msgid "SSL link policy"
 msgstr ""
 
-#: ../../mod/admin.php:456
+#: ../../mod/admin.php:458
 msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: ../../mod/admin.php:457
+#: ../../mod/admin.php:459
 msgid "Maximum image size"
 msgstr "Maksimum bildestørrelse"
 
-#: ../../mod/admin.php:457
+#: ../../mod/admin.php:459
 msgid ""
 "Maximum size in bytes of uploaded images. Default is 0, which means no "
 "limits."
 msgstr ""
 
-#: ../../mod/admin.php:458
+#: ../../mod/admin.php:460
 msgid "Maximum image length"
 msgstr ""
 
-#: ../../mod/admin.php:458
+#: ../../mod/admin.php:460
 msgid ""
 "Maximum length in pixels of the longest side of uploaded images. Default is "
 "-1, which means no limits."
 msgstr ""
 
-#: ../../mod/admin.php:459
+#: ../../mod/admin.php:461
 msgid "JPEG image quality"
 msgstr ""
 
-#: ../../mod/admin.php:459
+#: ../../mod/admin.php:461
 msgid ""
 "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
 "100, which is full quality."
 msgstr ""
 
-#: ../../mod/admin.php:461
+#: ../../mod/admin.php:463
 msgid "Register policy"
 msgstr "Registrer retningslinjer"
 
-#: ../../mod/admin.php:462
+#: ../../mod/admin.php:464
+msgid "Maximum Daily Registrations"
+msgstr ""
+
+#: ../../mod/admin.php:464
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr ""
+
+#: ../../mod/admin.php:465
 msgid "Register text"
 msgstr "Registrer tekst"
 
-#: ../../mod/admin.php:462
+#: ../../mod/admin.php:465
 msgid "Will be displayed prominently on the registration page."
 msgstr ""
 
-#: ../../mod/admin.php:463
+#: ../../mod/admin.php:466
 msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: ../../mod/admin.php:463
+#: ../../mod/admin.php:466
 msgid ""
 "Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: ../../mod/admin.php:464
+#: ../../mod/admin.php:467
 msgid "Allowed friend domains"
 msgstr "Tillate vennedomener"
 
-#: ../../mod/admin.php:464
+#: ../../mod/admin.php:467
 msgid ""
 "Comma separated list of domains which are allowed to establish friendships "
 "with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr ""
 
-#: ../../mod/admin.php:465
+#: ../../mod/admin.php:468
 msgid "Allowed email domains"
 msgstr "Tillate e-postdomener"
 
-#: ../../mod/admin.php:465
+#: ../../mod/admin.php:468
 msgid ""
 "Comma separated list of domains which are allowed in email addresses for "
 "registrations to this site. Wildcards are accepted. Empty to allow any "
 "domains"
 msgstr ""
 
-#: ../../mod/admin.php:466
+#: ../../mod/admin.php:469
 msgid "Block public"
 msgstr "Utesteng publikum"
 
-#: ../../mod/admin.php:466
+#: ../../mod/admin.php:469
 msgid ""
 "Check to block public access to all otherwise public personal pages on this "
 "site unless you are currently logged in."
 msgstr ""
 
-#: ../../mod/admin.php:467
+#: ../../mod/admin.php:470
 msgid "Force publish"
 msgstr "Tving publisering"
 
-#: ../../mod/admin.php:467
+#: ../../mod/admin.php:470
 msgid ""
 "Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: ../../mod/admin.php:468
+#: ../../mod/admin.php:471
 msgid "Global directory update URL"
 msgstr "URL for oppdatering av Global-katalog"
 
-#: ../../mod/admin.php:468
+#: ../../mod/admin.php:471
 msgid ""
 "URL to update the global directory. If this is not set, the global directory"
 " is completely unavailable to the application."
 msgstr ""
 
-#: ../../mod/admin.php:469
+#: ../../mod/admin.php:472
 msgid "Allow threaded items"
 msgstr ""
 
-#: ../../mod/admin.php:469
+#: ../../mod/admin.php:472
 msgid "Allow infinite level threading for items on this site."
 msgstr ""
 
-#: ../../mod/admin.php:470
+#: ../../mod/admin.php:473
 msgid "Private posts by default for new users"
 msgstr ""
 
-#: ../../mod/admin.php:470
+#: ../../mod/admin.php:473
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
 msgstr ""
 
-#: ../../mod/admin.php:472
+#: ../../mod/admin.php:475
 msgid "Block multiple registrations"
 msgstr "Blokker flere registreringer"
 
-#: ../../mod/admin.php:472
+#: ../../mod/admin.php:475
 msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:476
 msgid "OpenID support"
 msgstr "OpenID-støtte"
 
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:476
 msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: ../../mod/admin.php:474
+#: ../../mod/admin.php:477
 msgid "Fullname check"
 msgstr "Sjekk fullt navn"
 
-#: ../../mod/admin.php:474
+#: ../../mod/admin.php:477
 msgid ""
 "Force users to register with a space between firstname and lastname in Full "
 "name, as an antispam measure"
 msgstr ""
 
-#: ../../mod/admin.php:475
+#: ../../mod/admin.php:478
 msgid "UTF-8 Regular expressions"
 msgstr "UTF-8 regulære uttrykk"
 
-#: ../../mod/admin.php:475
+#: ../../mod/admin.php:478
 msgid "Use PHP UTF8 regular expressions"
 msgstr ""
 
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:479
 msgid "Show Community Page"
 msgstr "Vis Felleskap-side"
 
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:479
 msgid ""
 "Display a Community page showing all recent public postings on this site."
 msgstr ""
 
-#: ../../mod/admin.php:477
+#: ../../mod/admin.php:480
 msgid "Enable OStatus support"
 msgstr "Aktiver Ostatus-støtte"
 
-#: ../../mod/admin.php:477
+#: ../../mod/admin.php:480
 msgid ""
 "Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
 "communications in OStatus are public, so privacy warnings will be "
 "occasionally displayed."
 msgstr ""
 
-#: ../../mod/admin.php:478
+#: ../../mod/admin.php:481
 msgid "Enable Diaspora support"
 msgstr ""
 
-#: ../../mod/admin.php:478
+#: ../../mod/admin.php:481
 msgid "Provide built-in Diaspora network compatibility."
 msgstr ""
 
-#: ../../mod/admin.php:479
+#: ../../mod/admin.php:482
 msgid "Only allow Friendica contacts"
 msgstr ""
 
-#: ../../mod/admin.php:479
+#: ../../mod/admin.php:482
 msgid ""
 "All contacts must use Friendica protocols. All other built-in communication "
 "protocols disabled."
 msgstr ""
 
-#: ../../mod/admin.php:480
+#: ../../mod/admin.php:483
 msgid "Verify SSL"
 msgstr "Bekreft SSL"
 
-#: ../../mod/admin.php:480
+#: ../../mod/admin.php:483
 msgid ""
 "If you wish, you can turn on strict certificate checking. This will mean you"
 " cannot connect (at all) to self-signed SSL sites."
 msgstr ""
 
-#: ../../mod/admin.php:481
+#: ../../mod/admin.php:484
 msgid "Proxy user"
 msgstr "Brukernavn til mellomtjener"
 
-#: ../../mod/admin.php:482
+#: ../../mod/admin.php:485
 msgid "Proxy URL"
 msgstr "Mellomtjener URL"
 
-#: ../../mod/admin.php:483
+#: ../../mod/admin.php:486
 msgid "Network timeout"
 msgstr "Tidsavbrudd for nettverk"
 
-#: ../../mod/admin.php:483
+#: ../../mod/admin.php:486
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: ../../mod/admin.php:484
+#: ../../mod/admin.php:487
 msgid "Delivery interval"
 msgstr ""
 
-#: ../../mod/admin.php:484
+#: ../../mod/admin.php:487
 msgid ""
 "Delay background delivery processes by this many seconds to reduce system "
 "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
 "for large dedicated servers."
 msgstr ""
 
-#: ../../mod/admin.php:485
+#: ../../mod/admin.php:488
 msgid "Poll interval"
 msgstr ""
 
-#: ../../mod/admin.php:485
+#: ../../mod/admin.php:488
 msgid ""
 "Delay background polling processes by this many seconds to reduce system "
 "load. If 0, use delivery interval."
 msgstr ""
 
-#: ../../mod/admin.php:486
+#: ../../mod/admin.php:489
 msgid "Maximum Load Average"
 msgstr ""
 
-#: ../../mod/admin.php:486
+#: ../../mod/admin.php:489
 msgid ""
 "Maximum system load before delivery and poll processes are deferred - "
 "default 50."
 msgstr ""
 
-#: ../../mod/admin.php:503
+#: ../../mod/admin.php:506
 msgid "Update has been marked successful"
 msgstr ""
 
-#: ../../mod/admin.php:513
+#: ../../mod/admin.php:516
 #, php-format
 msgid "Executing %s failed. Check system logs."
 msgstr "Utføring av %s mislyktes. Sjekk systemlogger."
 
-#: ../../mod/admin.php:516
+#: ../../mod/admin.php:519
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr ""
 
-#: ../../mod/admin.php:520
+#: ../../mod/admin.php:523
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: ../../mod/admin.php:523
+#: ../../mod/admin.php:526
 #, php-format
 msgid "Update function %s could not be found."
 msgstr ""
 
-#: ../../mod/admin.php:538
+#: ../../mod/admin.php:541
 msgid "No failed updates."
 msgstr "Ingen mislykkede oppdateringer."
 
-#: ../../mod/admin.php:542
+#: ../../mod/admin.php:545
 msgid "Failed Updates"
 msgstr "Mislykkede oppdateringer"
 
-#: ../../mod/admin.php:543
+#: ../../mod/admin.php:546
 msgid ""
 "This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: ../../mod/admin.php:544
+#: ../../mod/admin.php:547
 msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: ../../mod/admin.php:545
+#: ../../mod/admin.php:548
 msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: ../../mod/admin.php:570
+#: ../../mod/admin.php:573
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../mod/admin.php:577
+#: ../../mod/admin.php:580
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
 msgstr[0] "%s bruker slettet"
 msgstr[1] "%s brukere slettet"
 
-#: ../../mod/admin.php:616
+#: ../../mod/admin.php:619
 #, php-format
 msgid "User '%s' deleted"
 msgstr "Brukeren '%s' er slettet"
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:627
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "Brukeren '%s' er ikke blokkert"
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:627
 #, php-format
 msgid "User '%s' blocked"
 msgstr "Brukeren '%s' er blokkert"
 
-#: ../../mod/admin.php:690
+#: ../../mod/admin.php:693
 msgid "select all"
 msgstr "velg alle"
 
-#: ../../mod/admin.php:691
+#: ../../mod/admin.php:694
 msgid "User registrations waiting for confirm"
 msgstr "Brukerregistreringer venter på bekreftelse"
 
-#: ../../mod/admin.php:692
+#: ../../mod/admin.php:695
 msgid "Request date"
 msgstr "Forespørselsdato"
 
-#: ../../mod/admin.php:692 ../../mod/admin.php:702
+#: ../../mod/admin.php:695 ../../mod/admin.php:705
 #: ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86
 msgid "Email"
 msgstr "E-post"
 
-#: ../../mod/admin.php:693
+#: ../../mod/admin.php:696
 msgid "No registrations."
 msgstr "Ingen registreringer."
 
-#: ../../mod/admin.php:695
+#: ../../mod/admin.php:698
 msgid "Deny"
 msgstr "Nekt"
 
-#: ../../mod/admin.php:699
+#: ../../mod/admin.php:702
 msgid "Site admin"
 msgstr ""
 
-#: ../../mod/admin.php:702
+#: ../../mod/admin.php:705
 msgid "Register date"
 msgstr "Registreringsdato"
 
-#: ../../mod/admin.php:702
+#: ../../mod/admin.php:705
 msgid "Last login"
 msgstr "Siste innlogging"
 
-#: ../../mod/admin.php:702
+#: ../../mod/admin.php:705
 msgid "Last item"
 msgstr "Siste element"
 
-#: ../../mod/admin.php:702
+#: ../../mod/admin.php:705
 msgid "Account"
 msgstr "Konto"
 
-#: ../../mod/admin.php:704
+#: ../../mod/admin.php:707
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Valgte brukere vil bli slettet!\\n\\nAlt disse brukerne har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse brukerne?"
 
-#: ../../mod/admin.php:705
+#: ../../mod/admin.php:708
 msgid ""
 "The user {0} will be deleted!\\n\\nEverything this user has posted on this "
 "site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Brukeren {0} vil bli slettet!\\n\\nAlt denne brukeren har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne brukeren?"
 
-#: ../../mod/admin.php:746
+#: ../../mod/admin.php:749
 #, php-format
 msgid "Plugin %s disabled."
 msgstr "Tillegget %s er avskrudd."
 
-#: ../../mod/admin.php:750
+#: ../../mod/admin.php:753
 #, php-format
 msgid "Plugin %s enabled."
 msgstr "Tillegget %s er aktivert."
 
-#: ../../mod/admin.php:760 ../../mod/admin.php:958
+#: ../../mod/admin.php:763 ../../mod/admin.php:961
 msgid "Disable"
 msgstr "Skru av"
 
-#: ../../mod/admin.php:762 ../../mod/admin.php:960
+#: ../../mod/admin.php:765 ../../mod/admin.php:963
 msgid "Enable"
 msgstr "Aktiver"
 
-#: ../../mod/admin.php:784 ../../mod/admin.php:989
+#: ../../mod/admin.php:787 ../../mod/admin.php:992
 msgid "Toggle"
 msgstr "Veksle"
 
-#: ../../mod/admin.php:792 ../../mod/admin.php:999
+#: ../../mod/admin.php:795 ../../mod/admin.php:1002
 msgid "Author: "
 msgstr ""
 
-#: ../../mod/admin.php:793 ../../mod/admin.php:1000
+#: ../../mod/admin.php:796 ../../mod/admin.php:1003
 msgid "Maintainer: "
 msgstr ""
 
-#: ../../mod/admin.php:922
+#: ../../mod/admin.php:925
 msgid "No themes found."
 msgstr ""
 
-#: ../../mod/admin.php:981
+#: ../../mod/admin.php:984
 msgid "Screenshot"
 msgstr ""
 
-#: ../../mod/admin.php:1029
+#: ../../mod/admin.php:1032
 msgid "[Experimental]"
 msgstr ""
 
-#: ../../mod/admin.php:1030
+#: ../../mod/admin.php:1033
 msgid "[Unsupported]"
 msgstr ""
 
-#: ../../mod/admin.php:1057
+#: ../../mod/admin.php:1060
 msgid "Log settings updated."
 msgstr "Logginnstillinger er oppdatert."
 
-#: ../../mod/admin.php:1113
+#: ../../mod/admin.php:1116
 msgid "Clear"
 msgstr "Tøm"
 
-#: ../../mod/admin.php:1119
+#: ../../mod/admin.php:1122
 msgid "Debugging"
 msgstr "Feilsøking"
 
-#: ../../mod/admin.php:1120
+#: ../../mod/admin.php:1123
 msgid "Log file"
 msgstr "Loggfil"
 
-#: ../../mod/admin.php:1120
+#: ../../mod/admin.php:1123
 msgid ""
 "Must be writable by web server. Relative to your Friendica top-level "
 "directory."
 msgstr ""
 
-#: ../../mod/admin.php:1121
+#: ../../mod/admin.php:1124
 msgid "Log level"
 msgstr "Loggnivå"
 
-#: ../../mod/admin.php:1171
+#: ../../mod/admin.php:1174
 msgid "Close"
 msgstr "Lukk"
 
-#: ../../mod/admin.php:1177
+#: ../../mod/admin.php:1180
 msgid "FTP Host"
 msgstr "FTP-tjener"
 
-#: ../../mod/admin.php:1178
+#: ../../mod/admin.php:1181
 msgid "FTP Path"
 msgstr "FTP-sti"
 
-#: ../../mod/admin.php:1179
+#: ../../mod/admin.php:1182
 msgid "FTP User"
 msgstr "FTP-bruker"
 
-#: ../../mod/admin.php:1180
+#: ../../mod/admin.php:1183
 msgid "FTP Password"
 msgstr "FTP-passord"
 
-#: ../../mod/profile.php:22 ../../boot.php:1074
+#: ../../mod/profile.php:21 ../../boot.php:1126
 msgid "Requested profile is not available."
 msgstr ""
 
-#: ../../mod/profile.php:152 ../../mod/display.php:77
+#: ../../mod/profile.php:155 ../../mod/display.php:87
 msgid "Access to this profile has been restricted."
 msgstr "Tilgang til denne profilen er blitt begrenset."
 
-#: ../../mod/profile.php:177
+#: ../../mod/profile.php:180
 msgid "Tips for New Members"
 msgstr "Tips til nye medlemmer"
 
@@ -4050,8 +4248,8 @@ msgid ""
 "Account not found and OpenID registration is not permitted on this site."
 msgstr ""
 
-#: ../../mod/openid.php:93 ../../include/auth.php:98
-#: ../../include/auth.php:161
+#: ../../mod/openid.php:93 ../../include/auth.php:110
+#: ../../include/auth.php:173
 msgid "Login failed."
 msgstr "Innlogging mislyktes."
 
@@ -4067,11 +4265,16 @@ msgstr ""
 msgid "No contacts in common."
 msgstr ""
 
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr ""
+
 #: ../../mod/share.php:28
 msgid "link"
 msgstr ""
 
-#: ../../mod/display.php:138
+#: ../../mod/display.php:162
 msgid "Item has been removed."
 msgstr "Elementet har blitt slettet."
 
@@ -4083,13 +4286,13 @@ msgstr "Programmer"
 msgid "No installed applications."
 msgstr "Ingen installerte programmer."
 
-#: ../../mod/search.php:85 ../../include/text.php:678
-#: ../../include/text.php:679 ../../include/nav.php:91
+#: ../../mod/search.php:99 ../../include/text.php:685
+#: ../../include/text.php:686 ../../include/nav.php:91
 msgid "Search"
 msgstr "Søk"
 
-#: ../../mod/profiles.php:21 ../../mod/profiles.php:423
-#: ../../mod/profiles.php:537 ../../mod/dfrn_confirm.php:62
+#: ../../mod/profiles.php:21 ../../mod/profiles.php:441
+#: ../../mod/profiles.php:555 ../../mod/dfrn_confirm.php:62
 msgid "Profile not found."
 msgstr "Fant ikke profilen."
 
@@ -4097,306 +4300,308 @@ msgstr "Fant ikke profilen."
 msgid "Profile Name is required."
 msgstr "Profilnavn er påkrevet."
 
-#: ../../mod/profiles.php:160
+#: ../../mod/profiles.php:178
 msgid "Marital Status"
 msgstr ""
 
-#: ../../mod/profiles.php:164
+#: ../../mod/profiles.php:182
 msgid "Romantic Partner"
 msgstr ""
 
-#: ../../mod/profiles.php:168
+#: ../../mod/profiles.php:186
 msgid "Likes"
 msgstr ""
 
-#: ../../mod/profiles.php:172
+#: ../../mod/profiles.php:190
 msgid "Dislikes"
 msgstr ""
 
-#: ../../mod/profiles.php:176
+#: ../../mod/profiles.php:194
 msgid "Work/Employment"
 msgstr ""
 
-#: ../../mod/profiles.php:179
+#: ../../mod/profiles.php:197
 msgid "Religion"
 msgstr ""
 
-#: ../../mod/profiles.php:183
+#: ../../mod/profiles.php:201
 msgid "Political Views"
 msgstr ""
 
-#: ../../mod/profiles.php:187
+#: ../../mod/profiles.php:205
 msgid "Gender"
 msgstr ""
 
-#: ../../mod/profiles.php:191
+#: ../../mod/profiles.php:209
 msgid "Sexual Preference"
 msgstr ""
 
-#: ../../mod/profiles.php:195
+#: ../../mod/profiles.php:213
 msgid "Homepage"
 msgstr ""
 
-#: ../../mod/profiles.php:199
+#: ../../mod/profiles.php:217
 msgid "Interests"
 msgstr ""
 
-#: ../../mod/profiles.php:203
+#: ../../mod/profiles.php:221
 msgid "Address"
 msgstr ""
 
-#: ../../mod/profiles.php:210 ../../addon/dav/common/wdcal_edit.inc.php:183
+#: ../../mod/profiles.php:228 ../../addon/dav/common/wdcal_edit.inc.php:183
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
 msgid "Location"
 msgstr ""
 
-#: ../../mod/profiles.php:293
+#: ../../mod/profiles.php:311
 msgid "Profile updated."
 msgstr "Profil oppdatert."
 
-#: ../../mod/profiles.php:360
+#: ../../mod/profiles.php:378
 msgid " and "
 msgstr ""
 
-#: ../../mod/profiles.php:368
+#: ../../mod/profiles.php:386
 msgid "public profile"
 msgstr ""
 
-#: ../../mod/profiles.php:371
+#: ../../mod/profiles.php:389
 #, php-format
 msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr ""
 
-#: ../../mod/profiles.php:372
+#: ../../mod/profiles.php:390
 #, php-format
 msgid " - Visit %1$s's %2$s"
 msgstr ""
 
-#: ../../mod/profiles.php:375
+#: ../../mod/profiles.php:393
 #, php-format
 msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr ""
 
-#: ../../mod/profiles.php:442
+#: ../../mod/profiles.php:460
 msgid "Profile deleted."
 msgstr "Profil slettet."
 
-#: ../../mod/profiles.php:460 ../../mod/profiles.php:494
+#: ../../mod/profiles.php:478 ../../mod/profiles.php:512
 msgid "Profile-"
 msgstr "Profil-"
 
-#: ../../mod/profiles.php:479 ../../mod/profiles.php:521
+#: ../../mod/profiles.php:497 ../../mod/profiles.php:539
 msgid "New profile created."
 msgstr "Ny profil opprettet."
 
-#: ../../mod/profiles.php:500
+#: ../../mod/profiles.php:518
 msgid "Profile unavailable to clone."
 msgstr "Profilen er utilgjengelig for kloning."
 
-#: ../../mod/profiles.php:562
+#: ../../mod/profiles.php:583
 msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr "Skjul kontakten/vennen din fra folk som kan se denne profilen?"
 
-#: ../../mod/profiles.php:582
+#: ../../mod/profiles.php:603
 msgid "Edit Profile Details"
 msgstr "Endre profildetaljer"
 
-#: ../../mod/profiles.php:584
+#: ../../mod/profiles.php:605
 msgid "View this profile"
 msgstr "Vis denne profilen"
 
-#: ../../mod/profiles.php:585
+#: ../../mod/profiles.php:606
 msgid "Create a new profile using these settings"
 msgstr "Opprett en ny profil med disse innstillingene"
 
-#: ../../mod/profiles.php:586
+#: ../../mod/profiles.php:607
 msgid "Clone this profile"
 msgstr "Klon denne profilen"
 
-#: ../../mod/profiles.php:587
+#: ../../mod/profiles.php:608
 msgid "Delete this profile"
 msgstr "Slette denne profilen"
 
-#: ../../mod/profiles.php:588
+#: ../../mod/profiles.php:609
 msgid "Profile Name:"
 msgstr "Profilnavn:"
 
-#: ../../mod/profiles.php:589
+#: ../../mod/profiles.php:610
 msgid "Your Full Name:"
 msgstr "Ditt fulle navn:"
 
-#: ../../mod/profiles.php:590
+#: ../../mod/profiles.php:611
 msgid "Title/Description:"
 msgstr "Tittel/Beskrivelse:"
 
-#: ../../mod/profiles.php:591
+#: ../../mod/profiles.php:612
 msgid "Your Gender:"
 msgstr "Ditt kjønn:"
 
-#: ../../mod/profiles.php:592
+#: ../../mod/profiles.php:613
 #, php-format
 msgid "Birthday (%s):"
 msgstr "Fødselsdag (%s):"
 
-#: ../../mod/profiles.php:593
+#: ../../mod/profiles.php:614
 msgid "Street Address:"
 msgstr "Gateadresse:"
 
-#: ../../mod/profiles.php:594
+#: ../../mod/profiles.php:615
 msgid "Locality/City:"
 msgstr "Plassering/by:"
 
-#: ../../mod/profiles.php:595
+#: ../../mod/profiles.php:616
 msgid "Postal/Zip Code:"
 msgstr "Postnummer:"
 
-#: ../../mod/profiles.php:596
+#: ../../mod/profiles.php:617
 msgid "Country:"
 msgstr "Land:"
 
-#: ../../mod/profiles.php:597
+#: ../../mod/profiles.php:618
 msgid "Region/State:"
 msgstr "Region/fylke:"
 
-#: ../../mod/profiles.php:598
+#: ../../mod/profiles.php:619
 msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr "<span class=\"heart\">&hearts;</span> Sivilstand:"
 
-#: ../../mod/profiles.php:599
+#: ../../mod/profiles.php:620
 msgid "Who: (if applicable)"
 msgstr "Hvem: (hvis gjeldende)"
 
-#: ../../mod/profiles.php:600
+#: ../../mod/profiles.php:621
 msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr "Eksempler: kari123, Kari Nordmann, kari@example.com"
 
-#: ../../mod/profiles.php:601
+#: ../../mod/profiles.php:622
 msgid "Since [date]:"
 msgstr ""
 
-#: ../../mod/profiles.php:602 ../../include/profile_advanced.php:46
+#: ../../mod/profiles.php:623 ../../include/profile_advanced.php:46
 msgid "Sexual Preference:"
 msgstr "Seksuell orientering:"
 
-#: ../../mod/profiles.php:603
+#: ../../mod/profiles.php:624
 msgid "Homepage URL:"
 msgstr "Hjemmeside URL:"
 
-#: ../../mod/profiles.php:604 ../../include/profile_advanced.php:50
+#: ../../mod/profiles.php:625 ../../include/profile_advanced.php:50
 msgid "Hometown:"
 msgstr ""
 
-#: ../../mod/profiles.php:605 ../../include/profile_advanced.php:54
+#: ../../mod/profiles.php:626 ../../include/profile_advanced.php:54
 msgid "Political Views:"
 msgstr "Politisk ståsted:"
 
-#: ../../mod/profiles.php:606
+#: ../../mod/profiles.php:627
 msgid "Religious Views:"
 msgstr "Religiøst ståsted:"
 
-#: ../../mod/profiles.php:607
+#: ../../mod/profiles.php:628
 msgid "Public Keywords:"
 msgstr "Offentlige nøkkelord:"
 
-#: ../../mod/profiles.php:608
+#: ../../mod/profiles.php:629
 msgid "Private Keywords:"
 msgstr "Private nøkkelord:"
 
-#: ../../mod/profiles.php:609 ../../include/profile_advanced.php:62
+#: ../../mod/profiles.php:630 ../../include/profile_advanced.php:62
 msgid "Likes:"
 msgstr ""
 
-#: ../../mod/profiles.php:610 ../../include/profile_advanced.php:64
+#: ../../mod/profiles.php:631 ../../include/profile_advanced.php:64
 msgid "Dislikes:"
 msgstr ""
 
-#: ../../mod/profiles.php:611
+#: ../../mod/profiles.php:632
 msgid "Example: fishing photography software"
 msgstr "Eksempel: fisking fotografering programvare"
 
-#: ../../mod/profiles.php:612
+#: ../../mod/profiles.php:633
 msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr "(Brukes for å foreslå mulige venner, kan ses av andre)"
 
-#: ../../mod/profiles.php:613
+#: ../../mod/profiles.php:634
 msgid "(Used for searching profiles, never shown to others)"
 msgstr "(Brukes for å søke i profiler, vises aldri til andre)"
 
-#: ../../mod/profiles.php:614
+#: ../../mod/profiles.php:635
 msgid "Tell us about yourself..."
 msgstr "Fortell oss om deg selv..."
 
-#: ../../mod/profiles.php:615
+#: ../../mod/profiles.php:636
 msgid "Hobbies/Interests"
 msgstr "Hobbier/interesser"
 
-#: ../../mod/profiles.php:616
+#: ../../mod/profiles.php:637
 msgid "Contact information and Social Networks"
 msgstr "Kontaktinformasjon og sosiale nettverk"
 
-#: ../../mod/profiles.php:617
+#: ../../mod/profiles.php:638
 msgid "Musical interests"
 msgstr "Musikksmak"
 
-#: ../../mod/profiles.php:618
+#: ../../mod/profiles.php:639
 msgid "Books, literature"
 msgstr "Bøker, litteratur"
 
-#: ../../mod/profiles.php:619
+#: ../../mod/profiles.php:640
 msgid "Television"
 msgstr "TV"
 
-#: ../../mod/profiles.php:620
+#: ../../mod/profiles.php:641
 msgid "Film/dance/culture/entertainment"
 msgstr "Film/dans/kultur/underholdning"
 
-#: ../../mod/profiles.php:621
+#: ../../mod/profiles.php:642
 msgid "Love/romance"
 msgstr "Kjærlighet/romanse"
 
-#: ../../mod/profiles.php:622
+#: ../../mod/profiles.php:643
 msgid "Work/employment"
 msgstr "Arbeid/ansatt hos"
 
-#: ../../mod/profiles.php:623
+#: ../../mod/profiles.php:644
 msgid "School/education"
 msgstr "Skole/utdanning"
 
-#: ../../mod/profiles.php:628
+#: ../../mod/profiles.php:649
 msgid ""
 "This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
 "be visible to anybody using the internet."
 msgstr "Dette er din <strong>offentlige</strong> profil.<br>Den <strong>kan</strong> ses av alle på Internet."
 
-#: ../../mod/profiles.php:638 ../../mod/directory.php:111
+#: ../../mod/profiles.php:659 ../../mod/directory.php:111
+#: ../../addon/forumdirectory/forumdirectory.php:133
 msgid "Age: "
 msgstr "Alder:"
 
-#: ../../mod/profiles.php:677
+#: ../../mod/profiles.php:698
 msgid "Edit/Manage Profiles"
 msgstr "Rediger/Behandle profiler"
 
-#: ../../mod/profiles.php:678 ../../boot.php:1192
+#: ../../mod/profiles.php:699 ../../boot.php:1244
 msgid "Change profile photo"
 msgstr "Endre profilbilde"
 
-#: ../../mod/profiles.php:679 ../../boot.php:1193
+#: ../../mod/profiles.php:700 ../../boot.php:1245
 msgid "Create New Profile"
 msgstr "Lag ny profil"
 
-#: ../../mod/profiles.php:690 ../../boot.php:1203
+#: ../../mod/profiles.php:711 ../../boot.php:1255
 msgid "Profile Image"
 msgstr "Profilbilde"
 
-#: ../../mod/profiles.php:692 ../../boot.php:1206
+#: ../../mod/profiles.php:713 ../../boot.php:1258
 msgid "visible to everybody"
 msgstr "synlig for alle"
 
-#: ../../mod/profiles.php:693 ../../boot.php:1207
+#: ../../mod/profiles.php:714 ../../boot.php:1259
 msgid "Edit visibility"
 msgstr "Endre synlighet"
 
-#: ../../mod/filer.php:29 ../../include/conversation.php:837
-#: ../../include/conversation.php:854
+#: ../../mod/filer.php:29 ../../include/conversation.php:909
+#: ../../include/conversation.php:927
 msgid "Save to Folder:"
 msgstr ""
 
@@ -4407,7 +4612,7 @@ msgstr ""
 #: ../../mod/tagger.php:95 ../../include/conversation.php:265
 #, php-format
 msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr ""
+msgstr "%1$s merket %2$s sitt %3$s med %4$s"
 
 #: ../../mod/delegate.php:95
 msgid "No potential page delegates located."
@@ -4488,7 +4693,7 @@ msgstr ""
 msgid "diaspora2bb: "
 msgstr ""
 
-#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626
+#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:520
 #: ../../include/contact_widgets.php:34
 msgid "Friend Suggestions"
 msgstr "Venneforslag"
@@ -4503,42 +4708,50 @@ msgstr ""
 msgid "Ignore/Hide"
 msgstr "Ignorér/Skjul"
 
-#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:624
+#: ../../mod/directory.php:49 ../../addon/forumdirectory/forumdirectory.php:71
+#: ../../view/theme/diabook/theme.php:518
 msgid "Global Directory"
 msgstr "Global katalog"
 
-#: ../../mod/directory.php:57
+#: ../../mod/directory.php:57 ../../addon/forumdirectory/forumdirectory.php:79
 msgid "Find on this site"
 msgstr ""
 
-#: ../../mod/directory.php:60
+#: ../../mod/directory.php:60 ../../addon/forumdirectory/forumdirectory.php:82
 msgid "Site Directory"
 msgstr "Stedets katalog"
 
 #: ../../mod/directory.php:114
+#: ../../addon/forumdirectory/forumdirectory.php:136
 msgid "Gender: "
 msgstr "Kjønn:"
 
-#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17
-#: ../../boot.php:1228
+#: ../../mod/directory.php:136
+#: ../../addon/forumdirectory/forumdirectory.php:158
+#: ../../include/profile_advanced.php:17 ../../boot.php:1280
 msgid "Gender:"
 msgstr "Kjønn:"
 
-#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37
-#: ../../boot.php:1231
+#: ../../mod/directory.php:138
+#: ../../addon/forumdirectory/forumdirectory.php:160
+#: ../../include/profile_advanced.php:37 ../../boot.php:1283
 msgid "Status:"
 msgstr "Status:"
 
-#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48
-#: ../../boot.php:1233
+#: ../../mod/directory.php:140
+#: ../../addon/forumdirectory/forumdirectory.php:162
+#: ../../include/profile_advanced.php:48 ../../boot.php:1285
 msgid "Homepage:"
 msgstr "Hjemmeside:"
 
-#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
+#: ../../mod/directory.php:142
+#: ../../addon/forumdirectory/forumdirectory.php:164
+#: ../../include/profile_advanced.php:58
 msgid "About:"
 msgstr "Om:"
 
 #: ../../mod/directory.php:180
+#: ../../addon/forumdirectory/forumdirectory.php:202
 msgid "No entries (some entries may be hidden)."
 msgstr "Ingen oppføringer (noen oppføringer kan være skjulte)."
 
@@ -4661,7 +4874,7 @@ msgstr "Introduksjon mislyktes eller ble trukket tilbake."
 msgid "Unable to set contact photo."
 msgstr "Fikk ikke satt kontaktbilde."
 
-#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608
+#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:619
 #: ../../include/conversation.php:171
 #, php-format
 msgid "%1$s is now friends with %2$s"
@@ -4714,98 +4927,122 @@ msgid "%1$s has joined %2$s"
 msgstr ""
 
 #: ../../addon/fromgplus/fromgplus.php:29
+#: ../../addon.old/fromgplus/fromgplus.php:29
 msgid "Google+ Import Settings"
 msgstr ""
 
 #: ../../addon/fromgplus/fromgplus.php:32
+#: ../../addon.old/fromgplus/fromgplus.php:32
 msgid "Enable Google+ Import"
 msgstr ""
 
 #: ../../addon/fromgplus/fromgplus.php:35
+#: ../../addon.old/fromgplus/fromgplus.php:35
 msgid "Google Account ID"
 msgstr ""
 
 #: ../../addon/fromgplus/fromgplus.php:55
+#: ../../addon.old/fromgplus/fromgplus.php:55
 msgid "Google+ Import Settings saved."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:523
+#: ../../addon.old/facebook/facebook.php:523
 msgid "Facebook disabled"
 msgstr "Facebook avskrudd"
 
 #: ../../addon/facebook/facebook.php:528
+#: ../../addon.old/facebook/facebook.php:528
 msgid "Updating contacts"
 msgstr "Oppdaterer kontakter"
 
 #: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192
+#: ../../addon.old/facebook/facebook.php:551
+#: ../../addon.old/fbpost/fbpost.php:192
 msgid "Facebook API key is missing."
 msgstr "Facebook API-nøkkel mangler."
 
 #: ../../addon/facebook/facebook.php:558
+#: ../../addon.old/facebook/facebook.php:558
 msgid "Facebook Connect"
 msgstr "Facebook-kobling"
 
 #: ../../addon/facebook/facebook.php:564
+#: ../../addon.old/facebook/facebook.php:564
 msgid "Install Facebook connector for this account."
 msgstr "Legg til Facebook-kobling for denne kontoen."
 
 #: ../../addon/facebook/facebook.php:571
+#: ../../addon.old/facebook/facebook.php:571
 msgid "Remove Facebook connector"
 msgstr "Fjern Facebook-kobling"
 
 #: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217
+#: ../../addon.old/facebook/facebook.php:576
+#: ../../addon.old/fbpost/fbpost.php:217
 msgid ""
 "Re-authenticate [This is necessary whenever your Facebook password is "
 "changed.]"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224
+#: ../../addon.old/facebook/facebook.php:583
+#: ../../addon.old/fbpost/fbpost.php:224
 msgid "Post to Facebook by default"
 msgstr "Post til Facebook som standard"
 
 #: ../../addon/facebook/facebook.php:589
+#: ../../addon.old/facebook/facebook.php:589
 msgid ""
 "Facebook friend linking has been disabled on this site. The following "
 "settings will have no effect."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:593
+#: ../../addon.old/facebook/facebook.php:593
 msgid ""
 "Facebook friend linking has been disabled on this site. If you disable it, "
 "you will be unable to re-enable it."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:596
+#: ../../addon.old/facebook/facebook.php:596
 msgid "Link all your Facebook friends and conversations on this website"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:598
+#: ../../addon.old/facebook/facebook.php:598
 msgid ""
 "Facebook conversations consist of your <em>profile wall</em> and your friend"
 " <em>stream</em>."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:599
+#: ../../addon.old/facebook/facebook.php:599
 msgid "On this website, your Facebook friend stream is only visible to you."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:600
+#: ../../addon.old/facebook/facebook.php:600
 msgid ""
 "The following settings determine the privacy of your Facebook profile wall "
 "on this website."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:604
+#: ../../addon.old/facebook/facebook.php:604
 msgid ""
 "On this website your Facebook profile wall conversations will only be "
 "visible to you"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:609
+#: ../../addon.old/facebook/facebook.php:609
 msgid "Do not import your Facebook profile wall conversations"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:611
+#: ../../addon.old/facebook/facebook.php:611
 msgid ""
 "If you choose to link conversations and leave both of these boxes unchecked,"
 " your Facebook profile wall will be merged with your profile wall on this "
@@ -4814,22 +5051,29 @@ msgid ""
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:616
+#: ../../addon.old/facebook/facebook.php:616
 msgid "Comma separated applications to ignore"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:700
+#: ../../addon.old/facebook/facebook.php:700
 msgid "Problems with Facebook Real-Time Updates"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:729
+#: ../../addon.old/facebook/facebook.php:729
 msgid "Facebook Connector Settings"
 msgstr "Innstillinger for Facebook-kobling"
 
 #: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255
+#: ../../addon.old/facebook/facebook.php:744
+#: ../../addon.old/fbpost/fbpost.php:255
 msgid "Facebook API Key"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262
+#: ../../addon.old/facebook/facebook.php:754
+#: ../../addon.old/fbpost/fbpost.php:262
 msgid ""
 "Error: it appears that you have specified the App-ID and -Secret in your "
 ".htconfig.php file. As long as they are specified there, they cannot be set "
@@ -4837,92 +5081,123 @@ msgid ""
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:759
+#: ../../addon.old/facebook/facebook.php:759
 msgid ""
 "Error: the given API Key seems to be incorrect (the application access token"
 " could not be retrieved)."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:761
+#: ../../addon.old/facebook/facebook.php:761
 msgid "The given API Key seems to work correctly."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:763
+#: ../../addon.old/facebook/facebook.php:763
 msgid ""
 "The correctness of the API Key could not be detected. Something strange's "
 "going on."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264
+#: ../../addon.old/facebook/facebook.php:766
+#: ../../addon.old/fbpost/fbpost.php:264
 msgid "App-ID / API-Key"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265
+#: ../../addon.old/facebook/facebook.php:767
+#: ../../addon.old/fbpost/fbpost.php:265
 msgid "Application secret"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:768
+#: ../../addon.old/facebook/facebook.php:768
 #, php-format
 msgid "Polling Interval in minutes (minimum %1$s minutes)"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:769
+#: ../../addon.old/facebook/facebook.php:769
 msgid ""
 "Synchronize comments (no comments on Facebook are missed, at the cost of "
 "increased system load)"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:773
+#: ../../addon.old/facebook/facebook.php:773
 msgid "Real-Time Updates"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:777
+#: ../../addon.old/facebook/facebook.php:777
 msgid "Real-Time Updates are activated."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:778
+#: ../../addon.old/facebook/facebook.php:778
 msgid "Deactivate Real-Time Updates"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:780
+#: ../../addon.old/facebook/facebook.php:780
 msgid "Real-Time Updates not activated."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:780
+#: ../../addon.old/facebook/facebook.php:780
 msgid "Activate Real-Time Updates"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282
 #: ../../addon/dav/friendica/layout.fnk.php:361
+#: ../../addon.old/facebook/facebook.php:799
+#: ../../addon.old/fbpost/fbpost.php:282
+#: ../../addon.old/dav/friendica/layout.fnk.php:361
 msgid "The new values have been saved."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301
+#: ../../addon.old/facebook/facebook.php:823
+#: ../../addon.old/fbpost/fbpost.php:301
 msgid "Post to Facebook"
 msgstr "Post til Facebook"
 
 #: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399
+#: ../../addon.old/facebook/facebook.php:921
+#: ../../addon.old/fbpost/fbpost.php:399
 msgid ""
 "Post to Facebook cancelled because of multi-network access permission "
 "conflict."
 msgstr "Posting til Facebook avbrutt på grunn av konflikt med tilgangsrettigheter i multi-nettverk."
 
 #: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610
+#: ../../addon.old/facebook/facebook.php:1149
+#: ../../addon.old/fbpost/fbpost.php:610
 msgid "View on Friendica"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643
+#: ../../addon.old/facebook/facebook.php:1182
+#: ../../addon.old/fbpost/fbpost.php:643
 msgid "Facebook post failed. Queued for retry."
 msgstr "Facebook-innlegg mislyktes. Innlegget er lagt i kø for å prøve igjen."
 
 #: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683
+#: ../../addon.old/facebook/facebook.php:1222
+#: ../../addon.old/fbpost/fbpost.php:683
 msgid "Your Facebook connection became invalid. Please Re-authenticate."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684
+#: ../../addon.old/facebook/facebook.php:1223
+#: ../../addon.old/fbpost/fbpost.php:684
 msgid "Facebook connection became invalid"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685
+#: ../../addon.old/facebook/facebook.php:1224
+#: ../../addon.old/fbpost/fbpost.php:685
 #, php-format
 msgid ""
 "Hi %1$s,\n"
@@ -4931,70 +5206,67 @@ msgid ""
 msgstr ""
 
 #: ../../addon/snautofollow/snautofollow.php:32
+#: ../../addon.old/snautofollow/snautofollow.php:32
 msgid "StatusNet AutoFollow settings updated."
 msgstr ""
 
 #: ../../addon/snautofollow/snautofollow.php:56
+#: ../../addon.old/snautofollow/snautofollow.php:56
 msgid "StatusNet AutoFollow Settings"
 msgstr ""
 
 #: ../../addon/snautofollow/snautofollow.php:58
+#: ../../addon.old/snautofollow/snautofollow.php:58
 msgid "Automatically follow any StatusNet followers/mentioners"
 msgstr ""
 
-#: ../../addon/bg/bg.php:51
-msgid "Bg settings updated."
-msgstr ""
-
-#: ../../addon/bg/bg.php:82
-msgid "Bg Settings"
-msgstr ""
-
-#: ../../addon/bg/bg.php:84 ../../addon/numfriends/numfriends.php:79
-msgid "How many contacts to display on profile sidebar"
-msgstr ""
-
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:260
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:278
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
 msgid "Lifetime of the cache (in hours)"
 msgstr ""
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:265
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:283
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
 msgid "Cache Statistics"
 msgstr ""
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:268
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:286
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
 msgid "Number of items"
 msgstr ""
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:270
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:288
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
 msgid "Size of the cache"
 msgstr ""
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:272
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:290
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
 msgid "Delete the whole cache"
 msgstr ""
 
-#: ../../addon/fbpost/fbpost.php:172
+#: ../../addon/fbpost/fbpost.php:172 ../../addon.old/fbpost/fbpost.php:172
 msgid "Facebook Post disabled"
 msgstr ""
 
-#: ../../addon/fbpost/fbpost.php:199
+#: ../../addon/fbpost/fbpost.php:199 ../../addon.old/fbpost/fbpost.php:199
 msgid "Facebook Post"
 msgstr ""
 
-#: ../../addon/fbpost/fbpost.php:205
+#: ../../addon/fbpost/fbpost.php:205 ../../addon.old/fbpost/fbpost.php:205
 msgid "Install Facebook Post connector for this account."
 msgstr ""
 
-#: ../../addon/fbpost/fbpost.php:212
+#: ../../addon/fbpost/fbpost.php:212 ../../addon.old/fbpost/fbpost.php:212
 msgid "Remove Facebook Post connector"
 msgstr ""
 
-#: ../../addon/fbpost/fbpost.php:240
+#: ../../addon/fbpost/fbpost.php:240 ../../addon.old/fbpost/fbpost.php:240
 msgid "Facebook Post Settings"
 msgstr ""
 
 #: ../../addon/widgets/widget_like.php:58
+#: ../../addon.old/widgets/widget_like.php:58
 #, php-format
 msgid "%d person likes this"
 msgid_plural "%d people like this"
@@ -5002,6 +5274,7 @@ msgstr[0] ""
 msgstr[1] ""
 
 #: ../../addon/widgets/widget_like.php:61
+#: ../../addon.old/widgets/widget_like.php:61
 #, php-format
 msgid "%d person doesn't like this"
 msgid_plural "%d people don't like this"
@@ -5009,225 +5282,263 @@ msgstr[0] ""
 msgstr[1] ""
 
 #: ../../addon/widgets/widget_friendheader.php:40
+#: ../../addon.old/widgets/widget_friendheader.php:40
 msgid "Get added to this list!"
 msgstr ""
 
-#: ../../addon/widgets/widgets.php:56
+#: ../../addon/widgets/widgets.php:56 ../../addon.old/widgets/widgets.php:56
 msgid "Generate new key"
 msgstr "Lag ny nøkkel"
 
-#: ../../addon/widgets/widgets.php:59
+#: ../../addon/widgets/widgets.php:59 ../../addon.old/widgets/widgets.php:59
 msgid "Widgets key"
 msgstr "Nøkkel til småprogrammer"
 
-#: ../../addon/widgets/widgets.php:61
+#: ../../addon/widgets/widgets.php:61 ../../addon.old/widgets/widgets.php:61
 msgid "Widgets available"
 msgstr "Småprogrammer er tilgjengelige"
 
 #: ../../addon/widgets/widget_friends.php:40
+#: ../../addon.old/widgets/widget_friends.php:40
 msgid "Connect on Friendica!"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:19
+#: ../../addon.old/morepokes/morepokes.php:19
 msgid "bitchslap"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:19
+#: ../../addon.old/morepokes/morepokes.php:19
 msgid "bitchslapped"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:20
+#: ../../addon.old/morepokes/morepokes.php:20
 msgid "shag"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:20
+#: ../../addon.old/morepokes/morepokes.php:20
 msgid "shagged"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:21
+#: ../../addon.old/morepokes/morepokes.php:21
 msgid "do something obscenely biological to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:21
+#: ../../addon.old/morepokes/morepokes.php:21
 msgid "did something obscenely biological to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:22
+#: ../../addon.old/morepokes/morepokes.php:22
 msgid "point out the poke feature to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:22
+#: ../../addon.old/morepokes/morepokes.php:22
 msgid "pointed out the poke feature to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:23
+#: ../../addon.old/morepokes/morepokes.php:23
 msgid "declare undying love for"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:23
+#: ../../addon.old/morepokes/morepokes.php:23
 msgid "declared undying love for"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:24
+#: ../../addon.old/morepokes/morepokes.php:24
 msgid "patent"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:24
+#: ../../addon.old/morepokes/morepokes.php:24
 msgid "patented"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:25
+#: ../../addon.old/morepokes/morepokes.php:25
 msgid "stroke beard"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:25
+#: ../../addon.old/morepokes/morepokes.php:25
 msgid "stroked their beard at"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:26
+#: ../../addon.old/morepokes/morepokes.php:26
 msgid ""
 "bemoan the declining standards of modern secondary and tertiary education to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:26
+#: ../../addon.old/morepokes/morepokes.php:26
 msgid ""
 "bemoans the declining standards of modern secondary and tertiary education "
 "to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:27
+#: ../../addon.old/morepokes/morepokes.php:27
 msgid "hug"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:27
+#: ../../addon.old/morepokes/morepokes.php:27
 msgid "hugged"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:28
+#: ../../addon.old/morepokes/morepokes.php:28
 msgid "kiss"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:28
+#: ../../addon.old/morepokes/morepokes.php:28
 msgid "kissed"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:29
+#: ../../addon.old/morepokes/morepokes.php:29
 msgid "raise eyebrows at"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:29
+#: ../../addon.old/morepokes/morepokes.php:29
 msgid "raised their eyebrows at"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:30
+#: ../../addon.old/morepokes/morepokes.php:30
 msgid "insult"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:30
+#: ../../addon.old/morepokes/morepokes.php:30
 msgid "insulted"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:31
+#: ../../addon.old/morepokes/morepokes.php:31
 msgid "praise"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:31
+#: ../../addon.old/morepokes/morepokes.php:31
 msgid "praised"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:32
+#: ../../addon.old/morepokes/morepokes.php:32
 msgid "be dubious of"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:32
+#: ../../addon.old/morepokes/morepokes.php:32
 msgid "was dubious of"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:33
+#: ../../addon.old/morepokes/morepokes.php:33
 msgid "eat"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:33
+#: ../../addon.old/morepokes/morepokes.php:33
 msgid "ate"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:34
+#: ../../addon.old/morepokes/morepokes.php:34
 msgid "giggle and fawn at"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:34
+#: ../../addon.old/morepokes/morepokes.php:34
 msgid "giggled and fawned at"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:35
+#: ../../addon.old/morepokes/morepokes.php:35
 msgid "doubt"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:35
+#: ../../addon.old/morepokes/morepokes.php:35
 msgid "doubted"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:36
+#: ../../addon.old/morepokes/morepokes.php:36
 msgid "glare"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:36
+#: ../../addon.old/morepokes/morepokes.php:36
 msgid "glared at"
 msgstr ""
 
-#: ../../addon/yourls/yourls.php:55
+#: ../../addon/yourls/yourls.php:55 ../../addon.old/yourls/yourls.php:55
 msgid "YourLS Settings"
 msgstr ""
 
-#: ../../addon/yourls/yourls.php:57
+#: ../../addon/yourls/yourls.php:57 ../../addon.old/yourls/yourls.php:57
 msgid "URL: http://"
 msgstr ""
 
-#: ../../addon/yourls/yourls.php:62
+#: ../../addon/yourls/yourls.php:62 ../../addon.old/yourls/yourls.php:62
 msgid "Username:"
 msgstr ""
 
-#: ../../addon/yourls/yourls.php:67
+#: ../../addon/yourls/yourls.php:67 ../../addon.old/yourls/yourls.php:67
 msgid "Password:"
 msgstr ""
 
-#: ../../addon/yourls/yourls.php:72
+#: ../../addon/yourls/yourls.php:72 ../../addon.old/yourls/yourls.php:72
 msgid "Use SSL "
 msgstr ""
 
-#: ../../addon/yourls/yourls.php:92
+#: ../../addon/yourls/yourls.php:92 ../../addon.old/yourls/yourls.php:92
 msgid "yourls Settings saved."
 msgstr ""
 
-#: ../../addon/ljpost/ljpost.php:39
+#: ../../addon/ljpost/ljpost.php:39 ../../addon.old/ljpost/ljpost.php:39
 msgid "Post to LiveJournal"
 msgstr ""
 
-#: ../../addon/ljpost/ljpost.php:70
+#: ../../addon/ljpost/ljpost.php:70 ../../addon.old/ljpost/ljpost.php:70
 msgid "LiveJournal Post Settings"
 msgstr ""
 
-#: ../../addon/ljpost/ljpost.php:72
+#: ../../addon/ljpost/ljpost.php:72 ../../addon.old/ljpost/ljpost.php:72
 msgid "Enable LiveJournal Post Plugin"
 msgstr ""
 
-#: ../../addon/ljpost/ljpost.php:77
+#: ../../addon/ljpost/ljpost.php:77 ../../addon.old/ljpost/ljpost.php:77
 msgid "LiveJournal username"
 msgstr ""
 
-#: ../../addon/ljpost/ljpost.php:82
+#: ../../addon/ljpost/ljpost.php:82 ../../addon.old/ljpost/ljpost.php:82
 msgid "LiveJournal password"
 msgstr ""
 
-#: ../../addon/ljpost/ljpost.php:87
+#: ../../addon/ljpost/ljpost.php:87 ../../addon.old/ljpost/ljpost.php:87
 msgid "Post to LiveJournal by default"
 msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:78
+#: ../../addon/nsfw/nsfw.php:78 ../../addon.old/nsfw/nsfw.php:78
 msgid "Not Safe For Work (General Purpose Content Filter) settings"
 msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:80
+#: ../../addon/nsfw/nsfw.php:80 ../../addon.old/nsfw/nsfw.php:80
 msgid ""
 "This plugin looks in posts for the words/text you specify below, and "
 "collapses any content containing those keywords so it is not displayed at "
@@ -5237,98 +5548,118 @@ msgid ""
 " can thereby be used as a general purpose content filter."
 msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:81
+#: ../../addon/nsfw/nsfw.php:81 ../../addon.old/nsfw/nsfw.php:81
 msgid "Enable Content filter"
 msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:84
+#: ../../addon/nsfw/nsfw.php:84 ../../addon.old/nsfw/nsfw.php:84
 msgid "Comma separated list of keywords to hide"
 msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:89
+#: ../../addon/nsfw/nsfw.php:89 ../../addon.old/nsfw/nsfw.php:89
 msgid "Use /expression/ to provide regular expressions"
 msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:105
+#: ../../addon/nsfw/nsfw.php:105 ../../addon.old/nsfw/nsfw.php:105
 msgid "NSFW Settings saved."
 msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:157
+#: ../../addon/nsfw/nsfw.php:157 ../../addon.old/nsfw/nsfw.php:157
 #, php-format
 msgid "%s - Click to open/close"
 msgstr ""
 
-#: ../../addon/page/page.php:61 ../../addon/page/page.php:91
-#: ../../addon/forumlist/forumlist.php:55
+#: ../../addon/page/page.php:62 ../../addon/page/page.php:92
+#: ../../addon/forumlist/forumlist.php:60 ../../addon.old/page/page.php:62
+#: ../../addon.old/page/page.php:92 ../../addon.old/forumlist/forumlist.php:60
 msgid "Forums"
 msgstr ""
 
-#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:89
+#: ../../addon/page/page.php:130 ../../addon/forumlist/forumlist.php:94
+#: ../../addon.old/page/page.php:130
+#: ../../addon.old/forumlist/forumlist.php:94
 msgid "Forums:"
 msgstr ""
 
-#: ../../addon/page/page.php:165
+#: ../../addon/page/page.php:166 ../../addon.old/page/page.php:166
 msgid "Page settings updated."
 msgstr ""
 
-#: ../../addon/page/page.php:194
+#: ../../addon/page/page.php:195 ../../addon.old/page/page.php:195
 msgid "Page Settings"
 msgstr ""
 
-#: ../../addon/page/page.php:196
+#: ../../addon/page/page.php:197 ../../addon.old/page/page.php:197
 msgid "How many forums to display on sidebar without paging"
 msgstr ""
 
-#: ../../addon/page/page.php:199
+#: ../../addon/page/page.php:200 ../../addon.old/page/page.php:200
 msgid "Randomise Page/Forum list"
 msgstr ""
 
-#: ../../addon/page/page.php:202
+#: ../../addon/page/page.php:203 ../../addon.old/page/page.php:203
 msgid "Show pages/forums on profile page"
 msgstr ""
 
-#: ../../addon/planets/planets.php:150
+#: ../../addon/planets/planets.php:150 ../../addon.old/planets/planets.php:150
 msgid "Planets Settings"
 msgstr ""
 
-#: ../../addon/planets/planets.php:152
-msgid "Enable Planets Plugin"
+#: ../../addon/planets/planets.php:152 ../../addon.old/planets/planets.php:152
+msgid "Enable Planets Plugin"
+msgstr ""
+
+#: ../../addon/forumdirectory/forumdirectory.php:22
+msgid "Forum Directory"
 msgstr ""
 
 #: ../../addon/communityhome/communityhome.php:28
 #: ../../addon/communityhome/communityhome.php:34
 #: ../../addon/communityhome/twillingham/communityhome.php:28
 #: ../../addon/communityhome/twillingham/communityhome.php:34
-#: ../../include/nav.php:64 ../../boot.php:912
+#: ../../include/nav.php:64 ../../boot.php:949
+#: ../../addon.old/communityhome/communityhome.php:28
+#: ../../addon.old/communityhome/communityhome.php:34
+#: ../../addon.old/communityhome/twillingham/communityhome.php:28
+#: ../../addon.old/communityhome/twillingham/communityhome.php:34
 msgid "Login"
 msgstr "Logg inn"
 
 #: ../../addon/communityhome/communityhome.php:29
 #: ../../addon/communityhome/twillingham/communityhome.php:29
+#: ../../addon.old/communityhome/communityhome.php:29
+#: ../../addon.old/communityhome/twillingham/communityhome.php:29
 msgid "OpenID"
 msgstr ""
 
 #: ../../addon/communityhome/communityhome.php:38
 #: ../../addon/communityhome/twillingham/communityhome.php:38
+#: ../../addon.old/communityhome/communityhome.php:38
+#: ../../addon.old/communityhome/twillingham/communityhome.php:38
 msgid "Latest users"
 msgstr ""
 
 #: ../../addon/communityhome/communityhome.php:81
 #: ../../addon/communityhome/twillingham/communityhome.php:81
+#: ../../addon.old/communityhome/communityhome.php:81
+#: ../../addon.old/communityhome/twillingham/communityhome.php:81
 msgid "Most active users"
 msgstr ""
 
 #: ../../addon/communityhome/communityhome.php:98
+#: ../../addon.old/communityhome/communityhome.php:98
 msgid "Latest photos"
 msgstr ""
 
 #: ../../addon/communityhome/communityhome.php:133
+#: ../../addon.old/communityhome/communityhome.php:133
 msgid "Latest likes"
 msgstr ""
 
 #: ../../addon/communityhome/communityhome.php:155
-#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1437
+#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1440
 #: ../../include/conversation.php:117 ../../include/conversation.php:245
+#: ../../addon.old/communityhome/communityhome.php:155
 msgid "event"
 msgstr "hendelse"
 
@@ -5338,107 +5669,141 @@ msgstr "hendelse"
 #: ../../addon/dav/common/wdcal_backend.inc.php:206
 #: ../../addon/dav/common/wdcal_backend.inc.php:214
 #: ../../addon/dav/common/wdcal_backend.inc.php:229
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:92
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:166
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:178
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:206
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:214
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:229
 msgid "No access"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:30
 #: ../../addon/dav/common/wdcal_edit.inc.php:738
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:30
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:738
 msgid "Could not open component for editing"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:140
 #: ../../addon/dav/friendica/layout.fnk.php:143
 #: ../../addon/dav/friendica/layout.fnk.php:422
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:140
+#: ../../addon.old/dav/friendica/layout.fnk.php:143
+#: ../../addon.old/dav/friendica/layout.fnk.php:422
 msgid "Go back to the calendar"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:144
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
 msgid "Event data"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:146
 #: ../../addon/dav/friendica/main.php:239
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:146
+#: ../../addon.old/dav/friendica/main.php:239
 msgid "Calendar"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:163
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
 msgid "Special color"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:169
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
 msgid "Subject"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:173
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
 msgid "Starts"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:178
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
 msgid "Ends"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:185
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
 msgid "Description"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:188
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
 msgid "Recurrence"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:190
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
 msgid "Frequency"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:194
 #: ../../include/contact_selectors.php:59
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:194
 msgid "Daily"
 msgstr "Daglig"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:197
 #: ../../include/contact_selectors.php:60
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:197
 msgid "Weekly"
 msgstr "Ukentlig"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:200
 #: ../../include/contact_selectors.php:61
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:200
 msgid "Monthly"
 msgstr "Månedlig"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:203
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
 msgid "Yearly"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:214
 #: ../../include/datetime.php:288
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
 msgid "days"
 msgstr "dager"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:215
 #: ../../include/datetime.php:287
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
 msgid "weeks"
 msgstr "uker"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:216
 #: ../../include/datetime.php:286
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
 msgid "months"
 msgstr "måneder"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:217
 #: ../../include/datetime.php:285
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
 msgid "years"
 msgstr "år"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:218
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
 msgid "Interval"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:218
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
 msgid "All %select% %time%"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:222
 #: ../../addon/dav/common/wdcal_edit.inc.php:260
 #: ../../addon/dav/common/wdcal_edit.inc.php:481
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:222
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:260
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:481
 msgid "Days"
 msgstr ""
 
@@ -5446,317 +5811,408 @@ msgstr ""
 #: ../../addon/dav/common/wdcal_edit.inc.php:254
 #: ../../addon/dav/common/wdcal_edit.inc.php:270
 #: ../../addon/dav/common/wdcal_edit.inc.php:293
-#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:293
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:305
 msgid "Sunday"
 msgstr "søndag"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:235
 #: ../../addon/dav/common/wdcal_edit.inc.php:274
-#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
 msgid "Monday"
 msgstr "mandag"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:238
-#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
 msgid "Tuesday"
 msgstr "tirsdag"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:241
-#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
 msgid "Wednesday"
 msgstr "onsdag"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:244
-#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
 msgid "Thursday"
 msgstr "torsdag"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:247
-#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
 msgid "Friday"
 msgstr "fredag"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:250
-#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
 msgid "Saturday"
 msgstr "lørdag"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:297
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
 msgid "First day of week:"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:350
 #: ../../addon/dav/common/wdcal_edit.inc.php:373
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:350
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:373
 msgid "Day of month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:354
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
 msgid "#num#th of each month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:357
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:357
 msgid "#num#th-last of each month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:360
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:360
 msgid "#num#th #wkday# of each month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:363
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:363
 msgid "#num#th-last #wkday# of each month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:372
 #: ../../addon/dav/friendica/layout.fnk.php:255
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:372
+#: ../../addon.old/dav/friendica/layout.fnk.php:255
 msgid "Month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:377
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:377
 msgid "#num#th of the given month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:380
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:380
 msgid "#num#th-last of the given month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:383
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:383
 msgid "#num#th #wkday# of the given month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:386
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:386
 msgid "#num#th-last #wkday# of the given month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:413
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
 msgid "Repeat until"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:417
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
 msgid "Infinite"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:420
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
 msgid "Until the following date"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:423
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
 msgid "Number of times"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:429
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
 msgid "Exceptions"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:432
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
 msgid "none"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:449
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
 msgid "Notification"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:466
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
 msgid "Notify by"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:469
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
 msgid "E-Mail"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:470
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
 msgid "On Friendica / Display"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:474
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
 msgid "Time"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:478
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
 msgid "Hours"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:479
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
 msgid "Minutes"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:480
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
 msgid "Seconds"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:482
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
 msgid "Weeks"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:485
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
 msgid "before the"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:486
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
 msgid "start of the event"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:487
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
 msgid "end of the event"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:492
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
 msgid "Add a notification"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:687
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:687
 msgid "The event #name# will start at #date"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:696
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
 msgid "#name# is about to begin."
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:769
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
 msgid "Saved"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_configuration.php:148
+#: ../../addon.old/dav/common/wdcal_configuration.php:148
 msgid "U.S. Time Format (mm/dd/YYYY)"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_configuration.php:243
+#: ../../addon.old/dav/common/wdcal_configuration.php:243
 msgid "German Time Format (dd.mm.YYYY)"
 msgstr ""
 
 #: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
+#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39
 msgid "Private Events"
 msgstr ""
 
 #: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
+#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46
 msgid "Private Addressbooks"
 msgstr ""
 
 #: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
+#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
 msgid "Friendica-Native events"
 msgstr ""
 
 #: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
 #: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
 msgid "Friendica-Contacts"
 msgstr ""
 
 #: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
 msgid "Your Friendica-Contacts"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:99
 #: ../../addon/dav/friendica/layout.fnk.php:136
+#: ../../addon.old/dav/friendica/layout.fnk.php:99
+#: ../../addon.old/dav/friendica/layout.fnk.php:136
 msgid ""
 "Something went wrong when trying to import the file. Sorry. Maybe some "
 "events were imported anyway."
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:131
+#: ../../addon.old/dav/friendica/layout.fnk.php:131
 msgid "Something went wrong when trying to import the file. Sorry."
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:134
+#: ../../addon.old/dav/friendica/layout.fnk.php:134
 msgid "The ICS-File has been imported."
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:138
+#: ../../addon.old/dav/friendica/layout.fnk.php:138
 msgid "No file was uploaded."
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:147
+#: ../../addon.old/dav/friendica/layout.fnk.php:147
 msgid "Import a ICS-file"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:150
+#: ../../addon.old/dav/friendica/layout.fnk.php:150
 msgid "ICS-File"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:151
+#: ../../addon.old/dav/friendica/layout.fnk.php:151
 msgid "Overwrite all #num# existing events"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:228
+#: ../../addon.old/dav/friendica/layout.fnk.php:228
 msgid "New event"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:232
+#: ../../addon.old/dav/friendica/layout.fnk.php:232
 msgid "Today"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:241
+#: ../../addon.old/dav/friendica/layout.fnk.php:241
 msgid "Day"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:248
+#: ../../addon.old/dav/friendica/layout.fnk.php:248
 msgid "Week"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:260
+#: ../../addon.old/dav/friendica/layout.fnk.php:260
 msgid "Reload"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:271
+#: ../../addon.old/dav/friendica/layout.fnk.php:271
 msgid "Date"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:313
+#: ../../addon.old/dav/friendica/layout.fnk.php:313
 msgid "Error"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:380
+#: ../../addon.old/dav/friendica/layout.fnk.php:380
 msgid "The calendar has been updated."
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:393
+#: ../../addon.old/dav/friendica/layout.fnk.php:393
 msgid "The new calendar has been created."
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:417
+#: ../../addon.old/dav/friendica/layout.fnk.php:417
 msgid "The calendar has been deleted."
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:424
+#: ../../addon.old/dav/friendica/layout.fnk.php:424
 msgid "Calendar Settings"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:430
+#: ../../addon.old/dav/friendica/layout.fnk.php:430
 msgid "Date format"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:439
+#: ../../addon.old/dav/friendica/layout.fnk.php:439
 msgid "Time zone"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:445
+#: ../../addon.old/dav/friendica/layout.fnk.php:445
 msgid "Calendars"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:487
+#: ../../addon.old/dav/friendica/layout.fnk.php:487
 msgid "Create a new calendar"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:496
+#: ../../addon.old/dav/friendica/layout.fnk.php:496
 msgid "Limitations"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:500
 #: ../../addon/libravatar/libravatar.php:82
+#: ../../addon.old/dav/friendica/layout.fnk.php:500
+#: ../../addon.old/libravatar/libravatar.php:82
 msgid "Warning"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:504
+#: ../../addon.old/dav/friendica/layout.fnk.php:504
 msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:511
+#: ../../addon.old/dav/friendica/layout.fnk.php:511
 msgid "Synchronizing this calendar with the iPhone"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:522
+#: ../../addon.old/dav/friendica/layout.fnk.php:522
 msgid "Synchronizing your Friendica-Contacts with the iPhone"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:202
+#: ../../addon.old/dav/friendica/main.php:202
 msgid ""
 "The current version of this plugin has not been set up correctly. Please "
 "contact the system administrator of your installation of friendica to fix "
@@ -5764,52 +6220,65 @@ msgid ""
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:242
+#: ../../addon.old/dav/friendica/main.php:242
 msgid "Extended calendar with CalDAV-support"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:279
 #: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464
-#: ../../include/enotify.php:28 ../../include/notifier.php:710
+#: ../../include/enotify.php:28 ../../include/notifier.php:778
+#: ../../addon.old/dav/friendica/main.php:279
+#: ../../addon.old/dav/friendica/main.php:280
 msgid "noreply"
 msgstr "ikke svar"
 
 #: ../../addon/dav/friendica/main.php:282
+#: ../../addon.old/dav/friendica/main.php:282
 msgid "Notification: "
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:309
+#: ../../addon.old/dav/friendica/main.php:309
 msgid "The database tables have been installed."
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:310
+#: ../../addon.old/dav/friendica/main.php:310
 msgid "An error occurred during the installation."
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:316
+#: ../../addon.old/dav/friendica/main.php:316
 msgid "The database tables have been updated."
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:317
+#: ../../addon.old/dav/friendica/main.php:317
 msgid "An error occurred during the update."
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:333
+#: ../../addon.old/dav/friendica/main.php:333
 msgid "No system-wide settings yet."
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:336
+#: ../../addon.old/dav/friendica/main.php:336
 msgid "Database status"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:339
+#: ../../addon.old/dav/friendica/main.php:339
 msgid "Installed"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:343
+#: ../../addon.old/dav/friendica/main.php:343
 msgid "Upgrade needed"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:343
+#: ../../addon.old/dav/friendica/main.php:343
 msgid ""
 "Please back up all calendar data (the tables beginning with dav_*) before "
 "proceeding. While all calendar events <i>should</i> be converted to the new "
@@ -5819,22 +6288,27 @@ msgid ""
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:343
+#: ../../addon.old/dav/friendica/main.php:343
 msgid "Upgrade"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:346
+#: ../../addon.old/dav/friendica/main.php:346
 msgid "Not installed"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:346
+#: ../../addon.old/dav/friendica/main.php:346
 msgid "Install"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:350
+#: ../../addon.old/dav/friendica/main.php:350
 msgid "Unknown"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:350
+#: ../../addon.old/dav/friendica/main.php:350
 msgid ""
 "Something really went wrong. I cannot recover from this state automatically,"
 " sorry. Please go to the database backend, back up the data, and delete all "
@@ -5843,38 +6317,47 @@ msgid ""
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:355
+#: ../../addon.old/dav/friendica/main.php:355
 msgid "Troubleshooting"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:356
+#: ../../addon.old/dav/friendica/main.php:356
 msgid "Manual creation of the database tables:"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:357
+#: ../../addon.old/dav/friendica/main.php:357
 msgid "Show SQL-statements"
 msgstr ""
 
 #: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
 msgid "Private Calendar"
 msgstr ""
 
 #: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
 msgid "Friendica Events: Mine"
 msgstr ""
 
 #: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
 msgid "Friendica Events: Contacts"
 msgstr ""
 
 #: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
 msgid "Private Addresses"
 msgstr ""
 
 #: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
 msgid "Friendica Contacts"
 msgstr ""
 
 #: ../../addon/uhremotestorage/uhremotestorage.php:84
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
 #, php-format
 msgid ""
 "Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
@@ -5884,183 +6367,197 @@ msgid ""
 msgstr "Tillat å bruke din friendica id (%s) for å koble til ekstern unhosted-aktivert lagring (som ownCloud). Se <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"
 
 #: ../../addon/uhremotestorage/uhremotestorage.php:85
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
 msgid "Template URL (with {category})"
 msgstr ""
 
 #: ../../addon/uhremotestorage/uhremotestorage.php:86
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
 msgid "OAuth end-point"
 msgstr ""
 
 #: ../../addon/uhremotestorage/uhremotestorage.php:87
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
 msgid "Api"
 msgstr ""
 
 #: ../../addon/membersince/membersince.php:18
+#: ../../addon.old/membersince/membersince.php:18
 msgid "Member since:"
 msgstr ""
 
-#: ../../addon/tictac/tictac.php:20
+#: ../../addon/tictac/tictac.php:20 ../../addon.old/tictac/tictac.php:20
 msgid "Three Dimensional Tic-Tac-Toe"
 msgstr "Tredimensjonal tre-på-rad"
 
-#: ../../addon/tictac/tictac.php:53
+#: ../../addon/tictac/tictac.php:53 ../../addon.old/tictac/tictac.php:53
 msgid "3D Tic-Tac-Toe"
 msgstr "3D tre-på-rad"
 
-#: ../../addon/tictac/tictac.php:58
+#: ../../addon/tictac/tictac.php:58 ../../addon.old/tictac/tictac.php:58
 msgid "New game"
 msgstr "Nytt spill"
 
-#: ../../addon/tictac/tictac.php:59
+#: ../../addon/tictac/tictac.php:59 ../../addon.old/tictac/tictac.php:59
 msgid "New game with handicap"
 msgstr "Nytt spill med handikapp"
 
-#: ../../addon/tictac/tictac.php:60
+#: ../../addon/tictac/tictac.php:60 ../../addon.old/tictac/tictac.php:60
 msgid ""
 "Three dimensional tic-tac-toe is just like the traditional game except that "
 "it is played on multiple levels simultaneously. "
 msgstr "Tredimensjonal tre-på-rad er akkurat som det vanlige spillet, bortsett fra at det spilles på flere nivåer samtidig."
 
-#: ../../addon/tictac/tictac.php:61
+#: ../../addon/tictac/tictac.php:61 ../../addon.old/tictac/tictac.php:61
 msgid ""
 "In this case there are three levels. You win by getting three in a row on "
 "any level, as well as up, down, and diagonally across the different levels."
 msgstr "I dette tilfellet er det tre nivåer. Du vinner ved å få tre på rad på ethvert nivå, samt opp, ned og diagonalt på tvers av forskjellige nivåer."
 
-#: ../../addon/tictac/tictac.php:63
+#: ../../addon/tictac/tictac.php:63 ../../addon.old/tictac/tictac.php:63
 msgid ""
 "The handicap game disables the center position on the middle level because "
 "the player claiming this square often has an unfair advantage."
 msgstr "Handicap-spillet skrur av midtposisjonen på det midtre nivået, fordi spilleren som tar denne posisjonen ofte får en urettferdig fordel."
 
-#: ../../addon/tictac/tictac.php:182
+#: ../../addon/tictac/tictac.php:182 ../../addon.old/tictac/tictac.php:182
 msgid "You go first..."
 msgstr "Du starter først..."
 
-#: ../../addon/tictac/tictac.php:187
+#: ../../addon/tictac/tictac.php:187 ../../addon.old/tictac/tictac.php:187
 msgid "I'm going first this time..."
 msgstr "Jeg starter først denne gangen..."
 
-#: ../../addon/tictac/tictac.php:193
+#: ../../addon/tictac/tictac.php:193 ../../addon.old/tictac/tictac.php:193
 msgid "You won!"
 msgstr "Du vant!"
 
 #: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
+#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224
 msgid "\"Cat\" game!"
 msgstr "\"Katte\"-spill!"
 
-#: ../../addon/tictac/tictac.php:222
+#: ../../addon/tictac/tictac.php:222 ../../addon.old/tictac/tictac.php:222
 msgid "I won!"
 msgstr "Jeg vant!"
 
 #: ../../addon/randplace/randplace.php:169
+#: ../../addon.old/randplace/randplace.php:169
 msgid "Randplace Settings"
 msgstr "Tilfeldig plassering"
 
 #: ../../addon/randplace/randplace.php:171
+#: ../../addon.old/randplace/randplace.php:171
 msgid "Enable Randplace Plugin"
 msgstr "Aktiver Tilfeldig plassering-tillegget"
 
-#: ../../addon/dwpost/dwpost.php:39
+#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39
 msgid "Post to Dreamwidth"
 msgstr ""
 
-#: ../../addon/dwpost/dwpost.php:70
+#: ../../addon/dwpost/dwpost.php:70 ../../addon.old/dwpost/dwpost.php:70
 msgid "Dreamwidth Post Settings"
 msgstr ""
 
-#: ../../addon/dwpost/dwpost.php:72
+#: ../../addon/dwpost/dwpost.php:72 ../../addon.old/dwpost/dwpost.php:72
 msgid "Enable dreamwidth Post Plugin"
 msgstr ""
 
-#: ../../addon/dwpost/dwpost.php:77
+#: ../../addon/dwpost/dwpost.php:77 ../../addon.old/dwpost/dwpost.php:77
 msgid "dreamwidth username"
 msgstr ""
 
-#: ../../addon/dwpost/dwpost.php:82
+#: ../../addon/dwpost/dwpost.php:82 ../../addon.old/dwpost/dwpost.php:82
 msgid "dreamwidth password"
 msgstr ""
 
-#: ../../addon/dwpost/dwpost.php:87
+#: ../../addon/dwpost/dwpost.php:87 ../../addon.old/dwpost/dwpost.php:87
 msgid "Post to dreamwidth by default"
 msgstr ""
 
-#: ../../addon/drpost/drpost.php:35
-msgid "Post to Drupal"
-msgstr ""
-
-#: ../../addon/drpost/drpost.php:72
-msgid "Drupal Post Settings"
+#: ../../addon/remote_permissions/remote_permissions.php:44
+msgid "Remote Permissions Settings"
 msgstr ""
 
-#: ../../addon/drpost/drpost.php:74
-msgid "Enable Drupal Post Plugin"
+#: ../../addon/remote_permissions/remote_permissions.php:45
+msgid ""
+"Allow recipients of your private posts to see the other recipients of the "
+"posts"
 msgstr ""
 
-#: ../../addon/drpost/drpost.php:79
-msgid "Drupal username"
+#: ../../addon/remote_permissions/remote_permissions.php:57
+msgid "Remote Permissions settings updated."
 msgstr ""
 
-#: ../../addon/drpost/drpost.php:84
-msgid "Drupal password"
+#: ../../addon/remote_permissions/remote_permissions.php:177
+msgid "Visible to"
 msgstr ""
 
-#: ../../addon/drpost/drpost.php:89
-msgid "Post Type - article,page,or blog"
+#: ../../addon/remote_permissions/remote_permissions.php:177
+msgid "may only be a partial list"
 msgstr ""
 
-#: ../../addon/drpost/drpost.php:94
-msgid "Drupal site URL"
+#: ../../addon/remote_permissions/remote_permissions.php:196
+msgid "Global"
 msgstr ""
 
-#: ../../addon/drpost/drpost.php:99
-msgid "Drupal site uses clean URLS"
+#: ../../addon/remote_permissions/remote_permissions.php:196
+msgid "The posts of every user on this server show the post recipients"
 msgstr ""
 
-#: ../../addon/drpost/drpost.php:104
-msgid "Post to Drupal by default"
+#: ../../addon/remote_permissions/remote_permissions.php:197
+msgid "Individual"
 msgstr ""
 
-#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:201
-#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:189
-msgid "Post from Friendica"
+#: ../../addon/remote_permissions/remote_permissions.php:197
+msgid "Each user chooses whether his/her posts show the post recipients"
 msgstr ""
 
 #: ../../addon/startpage/startpage.php:83
+#: ../../addon.old/startpage/startpage.php:83
 msgid "Startpage Settings"
 msgstr ""
 
 #: ../../addon/startpage/startpage.php:85
+#: ../../addon.old/startpage/startpage.php:85
 msgid "Home page to load after login  - leave blank for profile wall"
 msgstr ""
 
 #: ../../addon/startpage/startpage.php:88
+#: ../../addon.old/startpage/startpage.php:88
 msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
 msgstr ""
 
 #: ../../addon/geonames/geonames.php:143
+#: ../../addon.old/geonames/geonames.php:143
 msgid "Geonames settings updated."
 msgstr ""
 
 #: ../../addon/geonames/geonames.php:179
+#: ../../addon.old/geonames/geonames.php:179
 msgid "Geonames Settings"
 msgstr ""
 
 #: ../../addon/geonames/geonames.php:181
+#: ../../addon.old/geonames/geonames.php:181
 msgid "Enable Geonames Plugin"
 msgstr ""
 
 #: ../../addon/public_server/public_server.php:126
 #: ../../addon/testdrive/testdrive.php:94
+#: ../../addon.old/public_server/public_server.php:126
+#: ../../addon.old/testdrive/testdrive.php:94
 #, php-format
 msgid "Your account on %s will expire in a few days."
 msgstr ""
 
 #: ../../addon/public_server/public_server.php:127
+#: ../../addon.old/public_server/public_server.php:127
 msgid "Your Friendica account is about to expire."
 msgstr ""
 
 #: ../../addon/public_server/public_server.php:128
+#: ../../addon.old/public_server/public_server.php:128
 #, php-format
 msgid ""
 "Hi %1$s,\n"
@@ -6069,90 +6566,105 @@ msgid ""
 msgstr ""
 
 #: ../../addon/js_upload/js_upload.php:43
+#: ../../addon.old/js_upload/js_upload.php:43
 msgid "Upload a file"
 msgstr "Last opp en fil"
 
 #: ../../addon/js_upload/js_upload.php:44
+#: ../../addon.old/js_upload/js_upload.php:44
 msgid "Drop files here to upload"
 msgstr "Slipp filer her for å laste de opp"
 
 #: ../../addon/js_upload/js_upload.php:46
+#: ../../addon.old/js_upload/js_upload.php:46
 msgid "Failed"
 msgstr "Mislyktes"
 
-#: ../../addon/js_upload/js_upload.php:297
+#: ../../addon/js_upload/js_upload.php:303
+#: ../../addon.old/js_upload/js_upload.php:297
 msgid "No files were uploaded."
 msgstr "Ingen filer ble lastet opp."
 
-#: ../../addon/js_upload/js_upload.php:303
+#: ../../addon/js_upload/js_upload.php:309
+#: ../../addon.old/js_upload/js_upload.php:303
 msgid "Uploaded file is empty"
 msgstr "Opplastet fil er tom"
 
-#: ../../addon/js_upload/js_upload.php:326
+#: ../../addon/js_upload/js_upload.php:332
+#: ../../addon.old/js_upload/js_upload.php:326
 msgid "File has an invalid extension, it should be one of "
 msgstr "Filen har en ugyldig endelse, den må være en av "
 
-#: ../../addon/js_upload/js_upload.php:337
+#: ../../addon/js_upload/js_upload.php:343
+#: ../../addon.old/js_upload/js_upload.php:337
 msgid "Upload was cancelled, or server error encountered"
 msgstr "Opplasting avbrutt, eller det oppstod en feil på tjeneren"
 
-#: ../../addon/oembed.old/oembed.php:30
-msgid "OEmbed settings updated"
-msgstr "OEmbed-innstillingene er oppdatert"
-
-#: ../../addon/oembed.old/oembed.php:43
-msgid "Use OEmbed for YouTube videos"
-msgstr "Bruk OEmbed til YouTube-videoer"
-
-#: ../../addon/oembed.old/oembed.php:71
-msgid "URL to embed:"
-msgstr "URL som skal innebygges:"
-
-#: ../../addon/forumlist/forumlist.php:58
+#: ../../addon/forumlist/forumlist.php:63
+#: ../../addon.old/forumlist/forumlist.php:63
 msgid "show/hide"
 msgstr ""
 
-#: ../../addon/forumlist/forumlist.php:72
+#: ../../addon/forumlist/forumlist.php:77
+#: ../../addon.old/forumlist/forumlist.php:77
 msgid "No forum subscriptions"
 msgstr ""
 
-#: ../../addon/forumlist/forumlist.php:125
+#: ../../addon/forumlist/forumlist.php:131
+#: ../../addon.old/forumlist/forumlist.php:131
 msgid "Forumlist settings updated."
 msgstr ""
 
-#: ../../addon/forumlist/forumlist.php:150
+#: ../../addon/forumlist/forumlist.php:159
+#: ../../addon.old/forumlist/forumlist.php:159
 msgid "Forumlist Settings"
 msgstr ""
 
-#: ../../addon/forumlist/forumlist.php:152
+#: ../../addon/forumlist/forumlist.php:161
+#: ../../addon.old/forumlist/forumlist.php:161
 msgid "Randomise forum list"
 msgstr ""
 
-#: ../../addon/forumlist/forumlist.php:155
+#: ../../addon/forumlist/forumlist.php:164
+#: ../../addon.old/forumlist/forumlist.php:164
 msgid "Show forums on profile page"
 msgstr ""
 
+#: ../../addon/forumlist/forumlist.php:167
+#: ../../addon.old/forumlist/forumlist.php:167
+msgid "Show forums on network page"
+msgstr ""
+
 #: ../../addon/impressum/impressum.php:37
+#: ../../addon.old/impressum/impressum.php:37
 msgid "Impressum"
 msgstr "Informasjon om nettstedet"
 
 #: ../../addon/impressum/impressum.php:50
 #: ../../addon/impressum/impressum.php:52
 #: ../../addon/impressum/impressum.php:84
+#: ../../addon.old/impressum/impressum.php:50
+#: ../../addon.old/impressum/impressum.php:52
+#: ../../addon.old/impressum/impressum.php:84
 msgid "Site Owner"
 msgstr "Nettstedets eier"
 
 #: ../../addon/impressum/impressum.php:50
 #: ../../addon/impressum/impressum.php:88
+#: ../../addon.old/impressum/impressum.php:50
+#: ../../addon.old/impressum/impressum.php:88
 msgid "Email Address"
 msgstr "E-postadresse"
 
 #: ../../addon/impressum/impressum.php:55
 #: ../../addon/impressum/impressum.php:86
+#: ../../addon.old/impressum/impressum.php:55
+#: ../../addon.old/impressum/impressum.php:86
 msgid "Postal Address"
 msgstr "Postadresse"
 
 #: ../../addon/impressum/impressum.php:61
+#: ../../addon.old/impressum/impressum.php:61
 msgid ""
 "The impressum addon needs to be configured!<br />Please add at least the "
 "<tt>owner</tt> variable to your config file. For other variables please "
@@ -6160,193 +6672,236 @@ msgid ""
 msgstr "Tillegget for \"Informasjon om nettstedet\" må konfigureres!<br />Vennligst fyll ut minst <tt>eier</tt> variabelen i konfigurasjonsfilen din. For andre variabler, vennligst se over README-filen til tillegget."
 
 #: ../../addon/impressum/impressum.php:84
+#: ../../addon.old/impressum/impressum.php:84
 msgid "The page operators name."
 msgstr ""
 
 #: ../../addon/impressum/impressum.php:85
+#: ../../addon.old/impressum/impressum.php:85
 msgid "Site Owners Profile"
 msgstr "Nettstedseiers profil"
 
 #: ../../addon/impressum/impressum.php:85
+#: ../../addon.old/impressum/impressum.php:85
 msgid "Profile address of the operator."
 msgstr ""
 
 #: ../../addon/impressum/impressum.php:86
+#: ../../addon.old/impressum/impressum.php:86
 msgid "How to contact the operator via snail mail. You can use BBCode here."
 msgstr ""
 
 #: ../../addon/impressum/impressum.php:87
+#: ../../addon.old/impressum/impressum.php:87
 msgid "Notes"
 msgstr "Notater"
 
 #: ../../addon/impressum/impressum.php:87
+#: ../../addon.old/impressum/impressum.php:87
 msgid ""
 "Additional notes that are displayed beneath the contact information. You can"
 " use BBCode here."
 msgstr ""
 
 #: ../../addon/impressum/impressum.php:88
+#: ../../addon.old/impressum/impressum.php:88
 msgid "How to contact the operator via email. (will be displayed obfuscated)"
 msgstr ""
 
 #: ../../addon/impressum/impressum.php:89
+#: ../../addon.old/impressum/impressum.php:89
 msgid "Footer note"
 msgstr ""
 
 #: ../../addon/impressum/impressum.php:89
+#: ../../addon.old/impressum/impressum.php:89
 msgid "Text for the footer. You can use BBCode here."
 msgstr ""
 
-#: ../../addon/buglink/buglink.php:15
+#: ../../addon/buglink/buglink.php:15 ../../addon.old/buglink/buglink.php:15
 msgid "Report Bug"
 msgstr ""
 
 #: ../../addon/notimeline/notimeline.php:32
+#: ../../addon.old/notimeline/notimeline.php:32
 msgid "No Timeline settings updated."
 msgstr ""
 
 #: ../../addon/notimeline/notimeline.php:56
+#: ../../addon.old/notimeline/notimeline.php:56
 msgid "No Timeline Settings"
 msgstr ""
 
 #: ../../addon/notimeline/notimeline.php:58
+#: ../../addon.old/notimeline/notimeline.php:58
 msgid "Disable Archive selector on profile wall"
 msgstr ""
 
-#: ../../addon/blockem/blockem.php:51
+#: ../../addon/blockem/blockem.php:51 ../../addon.old/blockem/blockem.php:51
 msgid "\"Blockem\" Settings"
 msgstr ""
 
-#: ../../addon/blockem/blockem.php:53
+#: ../../addon/blockem/blockem.php:53 ../../addon.old/blockem/blockem.php:53
 msgid "Comma separated profile URLS to block"
 msgstr ""
 
-#: ../../addon/blockem/blockem.php:70
+#: ../../addon/blockem/blockem.php:70 ../../addon.old/blockem/blockem.php:70
 msgid "BLOCKEM Settings saved."
 msgstr ""
 
-#: ../../addon/blockem/blockem.php:105
+#: ../../addon/blockem/blockem.php:105 ../../addon.old/blockem/blockem.php:105
 #, php-format
 msgid "Blocked %s - Click to open/close"
 msgstr ""
 
-#: ../../addon/blockem/blockem.php:160
+#: ../../addon/blockem/blockem.php:160 ../../addon.old/blockem/blockem.php:160
 msgid "Unblock Author"
 msgstr ""
 
-#: ../../addon/blockem/blockem.php:162
+#: ../../addon/blockem/blockem.php:162 ../../addon.old/blockem/blockem.php:162
 msgid "Block Author"
 msgstr ""
 
-#: ../../addon/blockem/blockem.php:194
+#: ../../addon/blockem/blockem.php:194 ../../addon.old/blockem/blockem.php:194
 msgid "blockem settings updated"
 msgstr ""
 
 #: ../../addon/qcomment/qcomment.php:51
+#: ../../addon.old/qcomment/qcomment.php:51
 msgid ":-)"
 msgstr ""
 
 #: ../../addon/qcomment/qcomment.php:51
+#: ../../addon.old/qcomment/qcomment.php:51
 msgid ":-("
 msgstr ""
 
 #: ../../addon/qcomment/qcomment.php:51
+#: ../../addon.old/qcomment/qcomment.php:51
 msgid "lol"
 msgstr ""
 
 #: ../../addon/qcomment/qcomment.php:54
+#: ../../addon.old/qcomment/qcomment.php:54
 msgid "Quick Comment Settings"
 msgstr ""
 
 #: ../../addon/qcomment/qcomment.php:56
+#: ../../addon.old/qcomment/qcomment.php:56
 msgid ""
 "Quick comments are found near comment boxes, sometimes hidden. Click them to"
 " provide simple replies."
 msgstr ""
 
 #: ../../addon/qcomment/qcomment.php:57
+#: ../../addon.old/qcomment/qcomment.php:57
 msgid "Enter quick comments, one per line"
 msgstr ""
 
 #: ../../addon/qcomment/qcomment.php:75
+#: ../../addon.old/qcomment/qcomment.php:75
 msgid "Quick Comment settings saved."
 msgstr ""
 
 #: ../../addon/openstreetmap/openstreetmap.php:71
+#: ../../addon.old/openstreetmap/openstreetmap.php:71
 msgid "Tile Server URL"
 msgstr ""
 
 #: ../../addon/openstreetmap/openstreetmap.php:71
+#: ../../addon.old/openstreetmap/openstreetmap.php:71
 msgid ""
 "A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
 "target=\"_blank\">public tile servers</a>"
 msgstr ""
 
 #: ../../addon/openstreetmap/openstreetmap.php:72
+#: ../../addon.old/openstreetmap/openstreetmap.php:72
 msgid "Default zoom"
 msgstr ""
 
 #: ../../addon/openstreetmap/openstreetmap.php:72
+#: ../../addon.old/openstreetmap/openstreetmap.php:72
 msgid "The default zoom level. (1:world, 18:highest)"
 msgstr ""
 
 #: ../../addon/group_text/group_text.php:46
 #: ../../addon/editplain/editplain.php:46
+#: ../../addon.old/group_text/group_text.php:46
+#: ../../addon.old/editplain/editplain.php:46
 msgid "Editplain settings updated."
 msgstr ""
 
 #: ../../addon/group_text/group_text.php:76
+#: ../../addon.old/group_text/group_text.php:76
 msgid "Group Text"
 msgstr ""
 
 #: ../../addon/group_text/group_text.php:78
+#: ../../addon.old/group_text/group_text.php:78
 msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:14
+#: ../../addon.old/libravatar/libravatar.php:14
 msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:73
 #: ../../addon/gravatar/gravatar.php:71
+#: ../../addon.old/libravatar/libravatar.php:73
+#: ../../addon.old/gravatar/gravatar.php:71
 msgid "generic profile image"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:74
 #: ../../addon/gravatar/gravatar.php:72
+#: ../../addon.old/libravatar/libravatar.php:74
+#: ../../addon.old/gravatar/gravatar.php:72
 msgid "random geometric pattern"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:75
 #: ../../addon/gravatar/gravatar.php:73
+#: ../../addon.old/libravatar/libravatar.php:75
+#: ../../addon.old/gravatar/gravatar.php:73
 msgid "monster face"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:76
 #: ../../addon/gravatar/gravatar.php:74
+#: ../../addon.old/libravatar/libravatar.php:76
+#: ../../addon.old/gravatar/gravatar.php:74
 msgid "computer generated face"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:77
 #: ../../addon/gravatar/gravatar.php:75
+#: ../../addon.old/libravatar/libravatar.php:77
+#: ../../addon.old/gravatar/gravatar.php:75
 msgid "retro arcade style face"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:83
+#: ../../addon.old/libravatar/libravatar.php:83
 #, php-format
 msgid "Your PHP version %s is lower than the required PHP >= 5.3."
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:84
+#: ../../addon.old/libravatar/libravatar.php:84
 msgid "This addon is not functional on your server."
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:93
 #: ../../addon/gravatar/gravatar.php:89
+#: ../../addon.old/libravatar/libravatar.php:93
+#: ../../addon.old/gravatar/gravatar.php:89
 msgid "Information"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:93
+#: ../../addon.old/libravatar/libravatar.php:93
 msgid ""
 "Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
 "Libravatar addon will fall back to Gravatar if nothing was found at "
@@ -6355,83 +6910,99 @@ msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:100
 #: ../../addon/gravatar/gravatar.php:96
+#: ../../addon.old/libravatar/libravatar.php:100
+#: ../../addon.old/gravatar/gravatar.php:96
 msgid "Default avatar image"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:100
+#: ../../addon.old/libravatar/libravatar.php:100
 msgid "Select default avatar image if none was found. See README"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:112
+#: ../../addon.old/libravatar/libravatar.php:112
 msgid "Libravatar settings updated."
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:36
+#: ../../addon.old/libertree/libertree.php:36
 msgid "Post to libertree"
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:67
+#: ../../addon.old/libertree/libertree.php:67
 msgid "libertree Post Settings"
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:69
+#: ../../addon.old/libertree/libertree.php:69
 msgid "Enable Libertree Post Plugin"
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:74
+#: ../../addon.old/libertree/libertree.php:74
 msgid "Libertree API token"
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:79
+#: ../../addon.old/libertree/libertree.php:79
 msgid "Libertree site URL"
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:84
+#: ../../addon.old/libertree/libertree.php:84
 msgid "Post to Libertree by default"
 msgstr ""
 
 #: ../../addon/altpager/altpager.php:46
+#: ../../addon.old/altpager/altpager.php:46
 msgid "Altpager settings updated."
 msgstr ""
 
 #: ../../addon/altpager/altpager.php:79
+#: ../../addon.old/altpager/altpager.php:79
 msgid "Alternate Pagination Setting"
 msgstr ""
 
 #: ../../addon/altpager/altpager.php:81
+#: ../../addon.old/altpager/altpager.php:81
 msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
 msgstr ""
 
-#: ../../addon/mathjax/mathjax.php:37
+#: ../../addon/mathjax/mathjax.php:37 ../../addon.old/mathjax/mathjax.php:37
 msgid ""
 "The MathJax addon renders mathematical formulae written using the LaTeX "
 "syntax surrounded by the usual $$ or an eqnarray block in the postings of "
 "your wall,network tab and private mail."
 msgstr ""
 
-#: ../../addon/mathjax/mathjax.php:38
+#: ../../addon/mathjax/mathjax.php:38 ../../addon.old/mathjax/mathjax.php:38
 msgid "Use the MathJax renderer"
 msgstr ""
 
-#: ../../addon/mathjax/mathjax.php:74
+#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74
 msgid "MathJax Base URL"
 msgstr ""
 
-#: ../../addon/mathjax/mathjax.php:74
+#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74
 msgid ""
 "The URL for the javascript file that should be included to use MathJax. Can "
 "be either the MathJax CDN or another installation of MathJax."
 msgstr ""
 
 #: ../../addon/editplain/editplain.php:76
+#: ../../addon.old/editplain/editplain.php:76
 msgid "Editplain Settings"
 msgstr ""
 
 #: ../../addon/editplain/editplain.php:78
+#: ../../addon.old/editplain/editplain.php:78
 msgid "Disable richtext status editor"
 msgstr ""
 
 #: ../../addon/gravatar/gravatar.php:89
+#: ../../addon.old/gravatar/gravatar.php:89
 msgid ""
 "Libravatar addon is installed, too. Please disable Libravatar addon or this "
 "Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
@@ -6439,26 +7010,32 @@ msgid ""
 msgstr ""
 
 #: ../../addon/gravatar/gravatar.php:96
+#: ../../addon.old/gravatar/gravatar.php:96
 msgid "Select default avatar image if none was found at Gravatar. See README"
 msgstr ""
 
 #: ../../addon/gravatar/gravatar.php:97
+#: ../../addon.old/gravatar/gravatar.php:97
 msgid "Rating of images"
 msgstr ""
 
 #: ../../addon/gravatar/gravatar.php:97
+#: ../../addon.old/gravatar/gravatar.php:97
 msgid "Select the appropriate avatar rating for your site. See README"
 msgstr ""
 
 #: ../../addon/gravatar/gravatar.php:111
+#: ../../addon.old/gravatar/gravatar.php:111
 msgid "Gravatar settings updated."
 msgstr ""
 
 #: ../../addon/testdrive/testdrive.php:95
+#: ../../addon.old/testdrive/testdrive.php:95
 msgid "Your Friendica test account is about to expire."
 msgstr ""
 
 #: ../../addon/testdrive/testdrive.php:96
+#: ../../addon.old/testdrive/testdrive.php:96
 #, php-format
 msgid ""
 "Hi %1$s,\n"
@@ -6467,121 +7044,143 @@ msgid ""
 msgstr ""
 
 #: ../../addon/pageheader/pageheader.php:50
+#: ../../addon.old/pageheader/pageheader.php:50
 msgid "\"pageheader\" Settings"
 msgstr ""
 
 #: ../../addon/pageheader/pageheader.php:68
+#: ../../addon.old/pageheader/pageheader.php:68
 msgid "pageheader Settings saved."
 msgstr ""
 
-#: ../../addon/ijpost/ijpost.php:39
+#: ../../addon/ijpost/ijpost.php:39 ../../addon.old/ijpost/ijpost.php:39
 msgid "Post to Insanejournal"
 msgstr ""
 
-#: ../../addon/ijpost/ijpost.php:70
+#: ../../addon/ijpost/ijpost.php:70 ../../addon.old/ijpost/ijpost.php:70
 msgid "InsaneJournal Post Settings"
 msgstr ""
 
-#: ../../addon/ijpost/ijpost.php:72
+#: ../../addon/ijpost/ijpost.php:72 ../../addon.old/ijpost/ijpost.php:72
 msgid "Enable InsaneJournal Post Plugin"
 msgstr ""
 
-#: ../../addon/ijpost/ijpost.php:77
+#: ../../addon/ijpost/ijpost.php:77 ../../addon.old/ijpost/ijpost.php:77
 msgid "InsaneJournal username"
 msgstr ""
 
-#: ../../addon/ijpost/ijpost.php:82
+#: ../../addon/ijpost/ijpost.php:82 ../../addon.old/ijpost/ijpost.php:82
 msgid "InsaneJournal password"
 msgstr ""
 
-#: ../../addon/ijpost/ijpost.php:87
+#: ../../addon/ijpost/ijpost.php:87 ../../addon.old/ijpost/ijpost.php:87
 msgid "Post to InsaneJournal by default"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:266
+#: ../../addon.old/jappixmini/jappixmini.php:266
 msgid "Jappix Mini addon settings"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:268
+#: ../../addon.old/jappixmini/jappixmini.php:268
 msgid "Activate addon"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:271
+#: ../../addon.old/jappixmini/jappixmini.php:271
 msgid ""
 "Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:274
+#: ../../addon.old/jappixmini/jappixmini.php:274
 msgid "Jabber username"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:277
+#: ../../addon.old/jappixmini/jappixmini.php:277
 msgid "Jabber server"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:281
+#: ../../addon.old/jappixmini/jappixmini.php:281
 msgid "Jabber BOSH host"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:285
+#: ../../addon.old/jappixmini/jappixmini.php:285
 msgid "Jabber password"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:290
+#: ../../addon.old/jappixmini/jappixmini.php:290
 msgid "Encrypt Jabber password with Friendica password (recommended)"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:293
+#: ../../addon.old/jappixmini/jappixmini.php:293
 msgid "Friendica password"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:296
+#: ../../addon.old/jappixmini/jappixmini.php:296
 msgid "Approve subscription requests from Friendica contacts automatically"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:299
+#: ../../addon.old/jappixmini/jappixmini.php:299
 msgid "Subscribe to Friendica contacts automatically"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:302
+#: ../../addon.old/jappixmini/jappixmini.php:302
 msgid "Purge internal list of jabber addresses of contacts"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:308
+#: ../../addon.old/jappixmini/jappixmini.php:308
 msgid "Add contact"
 msgstr ""
 
-#: ../../addon/viewsrc/viewsrc.php:37
+#: ../../addon/viewsrc/viewsrc.php:37 ../../addon.old/viewsrc/viewsrc.php:37
 msgid "View Source"
 msgstr ""
 
 #: ../../addon/statusnet/statusnet.php:134
+#: ../../addon.old/statusnet/statusnet.php:134
 msgid "Post to StatusNet"
 msgstr "Post til StatusNet"
 
 #: ../../addon/statusnet/statusnet.php:176
+#: ../../addon.old/statusnet/statusnet.php:176
 msgid ""
 "Please contact your site administrator.<br />The provided API URL is not "
 "valid."
 msgstr "Vennligst kontakt administratoren på nettstedet ditt.<br />Den oppgitter API URL-en er ikke gyldig."
 
 #: ../../addon/statusnet/statusnet.php:204
+#: ../../addon.old/statusnet/statusnet.php:204
 msgid "We could not contact the StatusNet API with the Path you entered."
 msgstr "Vi kunne ikke kontakte StatusNet API-en med den banen du oppgav."
 
 #: ../../addon/statusnet/statusnet.php:232
+#: ../../addon.old/statusnet/statusnet.php:232
 msgid "StatusNet settings updated."
 msgstr "StatusNet-innstillinger er oppdatert."
 
 #: ../../addon/statusnet/statusnet.php:257
+#: ../../addon.old/statusnet/statusnet.php:257
 msgid "StatusNet Posting Settings"
 msgstr "Innstillinger for posting til StatusNet"
 
 #: ../../addon/statusnet/statusnet.php:271
+#: ../../addon.old/statusnet/statusnet.php:271
 msgid "Globally Available StatusNet OAuthKeys"
 msgstr "Globalt tilgjengelige StatusNet OAuthKeys"
 
 #: ../../addon/statusnet/statusnet.php:272
+#: ../../addon.old/statusnet/statusnet.php:272
 msgid ""
 "There are preconfigured OAuth key pairs for some StatusNet servers "
 "available. If you are useing one of them, please use these credentials. If "
@@ -6589,10 +7188,12 @@ msgid ""
 msgstr "Det finnes ferdig konfigurerte OAuth nøkkelpar tilgjengelig for noen StatusNet-tjenere. Hvis du bruker en av disse, vennligst bruk disse som legitimasjon. Hvis ikke, så er du fri til å opprette en forbindelse til enhver annen StatusNet-forekomst (se nedenfor)."
 
 #: ../../addon/statusnet/statusnet.php:280
+#: ../../addon.old/statusnet/statusnet.php:280
 msgid "Provide your own OAuth Credentials"
 msgstr "Oppgi din egen OAuth-legitimasjon"
 
 #: ../../addon/statusnet/statusnet.php:281
+#: ../../addon.old/statusnet/statusnet.php:281
 msgid ""
 "No consumer key pair for StatusNet found. Register your Friendica Account as"
 " an desktop client on your StatusNet account, copy the consumer key pair "
@@ -6602,18 +7203,22 @@ msgid ""
 msgstr ""
 
 #: ../../addon/statusnet/statusnet.php:283
+#: ../../addon.old/statusnet/statusnet.php:283
 msgid "OAuth Consumer Key"
 msgstr "OAuth Consumer Key"
 
 #: ../../addon/statusnet/statusnet.php:286
+#: ../../addon.old/statusnet/statusnet.php:286
 msgid "OAuth Consumer Secret"
 msgstr "OAuth Consumer Secret"
 
 #: ../../addon/statusnet/statusnet.php:289
+#: ../../addon.old/statusnet/statusnet.php:289
 msgid "Base API Path (remember the trailing /)"
 msgstr "Base API Path (husk / på slutten)"
 
 #: ../../addon/statusnet/statusnet.php:310
+#: ../../addon.old/statusnet/statusnet.php:310
 msgid ""
 "To connect to your StatusNet account click the button below to get a "
 "security code from StatusNet which you have to copy into the input box below"
@@ -6622,30 +7227,38 @@ msgid ""
 msgstr "For å koble din StatusNet-konto, klikk knappen under for å få en sikkerhetskode fra StatusNet som du må kopiere inn i tekstfeltet under, og send inn skjemaet. Det er bare dine <strong>offentlige</strong> meldinger som blir postet til StatusNet."
 
 #: ../../addon/statusnet/statusnet.php:311
+#: ../../addon.old/statusnet/statusnet.php:311
 msgid "Log in with StatusNet"
 msgstr "Logg inn med StatusNet"
 
 #: ../../addon/statusnet/statusnet.php:313
+#: ../../addon.old/statusnet/statusnet.php:313
 msgid "Copy the security code from StatusNet here"
 msgstr "Kopier sikkerhetskoden fra StatusNet hit"
 
 #: ../../addon/statusnet/statusnet.php:319
+#: ../../addon.old/statusnet/statusnet.php:319
 msgid "Cancel Connection Process"
 msgstr "Avbryt forbindelsesprosessen"
 
 #: ../../addon/statusnet/statusnet.php:321
+#: ../../addon.old/statusnet/statusnet.php:321
 msgid "Current StatusNet API is"
 msgstr "Gjeldende StatusNet API er"
 
 #: ../../addon/statusnet/statusnet.php:322
+#: ../../addon.old/statusnet/statusnet.php:322
 msgid "Cancel StatusNet Connection"
 msgstr "Avbryt StatusNet-forbindelsen"
 
 #: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189
+#: ../../addon.old/statusnet/statusnet.php:333
+#: ../../addon.old/twitter/twitter.php:189
 msgid "Currently connected to: "
 msgstr "For øyeblikket tilkoblet til:"
 
 #: ../../addon/statusnet/statusnet.php:334
+#: ../../addon.old/statusnet/statusnet.php:334
 msgid ""
 "If enabled all your <strong>public</strong> postings can be posted to the "
 "associated StatusNet account. You can choose to do so by default (here) or "
@@ -6653,6 +7266,7 @@ msgid ""
 msgstr "Aktivering gjør at alle dine <strong>offentlige</strong> innlegg kan postes til den tilknyttede StatusNet-kontoen. Du kan velge å gjøre dette som standard (her), eller for hvert enkelt innlegg separat i valgmulighetene for posting når du skriver et innlegg."
 
 #: ../../addon/statusnet/statusnet.php:336
+#: ../../addon.old/statusnet/statusnet.php:336
 msgid ""
 "<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
 "details from unknown viewers?</em>) the link potentially included in public "
@@ -6661,143 +7275,169 @@ msgid ""
 msgstr ""
 
 #: ../../addon/statusnet/statusnet.php:339
+#: ../../addon.old/statusnet/statusnet.php:339
 msgid "Allow posting to StatusNet"
 msgstr "Tillat innlegg til StatusNet"
 
 #: ../../addon/statusnet/statusnet.php:342
+#: ../../addon.old/statusnet/statusnet.php:342
 msgid "Send public postings to StatusNet by default"
 msgstr "Send offentlige innlegg til StatusNet som standard"
 
 #: ../../addon/statusnet/statusnet.php:345
+#: ../../addon.old/statusnet/statusnet.php:345
 msgid "Send linked #-tags and @-names to StatusNet"
 msgstr ""
 
 #: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206
+#: ../../addon.old/statusnet/statusnet.php:350
+#: ../../addon.old/twitter/twitter.php:206
 msgid "Clear OAuth configuration"
 msgstr "Fjern OAuth-konfigurasjon"
 
-#: ../../addon/statusnet/statusnet.php:568
+#: ../../addon/statusnet/statusnet.php:677
+#: ../../addon.old/statusnet/statusnet.php:568
 msgid "API URL"
 msgstr "API URL"
 
 #: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
+#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
 msgid "Infinite Improbability Drive"
 msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:36
+#: ../../addon/tumblr/tumblr.php:36 ../../addon.old/tumblr/tumblr.php:36
 msgid "Post to Tumblr"
 msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:67
+#: ../../addon/tumblr/tumblr.php:67 ../../addon.old/tumblr/tumblr.php:67
 msgid "Tumblr Post Settings"
 msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:69
+#: ../../addon/tumblr/tumblr.php:69 ../../addon.old/tumblr/tumblr.php:69
 msgid "Enable Tumblr Post Plugin"
 msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:74
+#: ../../addon/tumblr/tumblr.php:74 ../../addon.old/tumblr/tumblr.php:74
 msgid "Tumblr login"
 msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:79
+#: ../../addon/tumblr/tumblr.php:79 ../../addon.old/tumblr/tumblr.php:79
 msgid "Tumblr password"
 msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:84
+#: ../../addon/tumblr/tumblr.php:84 ../../addon.old/tumblr/tumblr.php:84
 msgid "Post to Tumblr by default"
 msgstr ""
 
 #: ../../addon/numfriends/numfriends.php:46
+#: ../../addon.old/numfriends/numfriends.php:46
 msgid "Numfriends settings updated."
 msgstr ""
 
 #: ../../addon/numfriends/numfriends.php:77
+#: ../../addon.old/numfriends/numfriends.php:77
 msgid "Numfriends Settings"
 msgstr ""
 
-#: ../../addon/gnot/gnot.php:48
+#: ../../addon/numfriends/numfriends.php:79 ../../addon.old/bg/bg.php:84
+#: ../../addon.old/numfriends/numfriends.php:79
+msgid "How many contacts to display on profile sidebar"
+msgstr ""
+
+#: ../../addon/gnot/gnot.php:48 ../../addon.old/gnot/gnot.php:48
 msgid "Gnot settings updated."
 msgstr ""
 
-#: ../../addon/gnot/gnot.php:79
+#: ../../addon/gnot/gnot.php:79 ../../addon.old/gnot/gnot.php:79
 msgid "Gnot Settings"
 msgstr ""
 
-#: ../../addon/gnot/gnot.php:81
+#: ../../addon/gnot/gnot.php:81 ../../addon.old/gnot/gnot.php:81
 msgid ""
 "Allows threading of email comment notifications on Gmail and anonymising the"
 " subject line."
 msgstr ""
 
-#: ../../addon/gnot/gnot.php:82
+#: ../../addon/gnot/gnot.php:82 ../../addon.old/gnot/gnot.php:82
 msgid "Enable this plugin/addon?"
 msgstr ""
 
-#: ../../addon/gnot/gnot.php:97
+#: ../../addon/gnot/gnot.php:97 ../../addon.old/gnot/gnot.php:97
 #, php-format
 msgid "[Friendica:Notify] Comment to conversation #%d"
 msgstr ""
 
-#: ../../addon/wppost/wppost.php:42
+#: ../../addon/wppost/wppost.php:42 ../../addon.old/wppost/wppost.php:42
 msgid "Post to Wordpress"
 msgstr ""
 
-#: ../../addon/wppost/wppost.php:76
+#: ../../addon/wppost/wppost.php:76 ../../addon.old/wppost/wppost.php:76
 msgid "WordPress Post Settings"
 msgstr ""
 
-#: ../../addon/wppost/wppost.php:78
+#: ../../addon/wppost/wppost.php:78 ../../addon.old/wppost/wppost.php:78
 msgid "Enable WordPress Post Plugin"
 msgstr ""
 
-#: ../../addon/wppost/wppost.php:83
+#: ../../addon/wppost/wppost.php:83 ../../addon.old/wppost/wppost.php:83
 msgid "WordPress username"
 msgstr ""
 
-#: ../../addon/wppost/wppost.php:88
+#: ../../addon/wppost/wppost.php:88 ../../addon.old/wppost/wppost.php:88
 msgid "WordPress password"
 msgstr ""
 
-#: ../../addon/wppost/wppost.php:93
+#: ../../addon/wppost/wppost.php:93 ../../addon.old/wppost/wppost.php:93
 msgid "WordPress API URL"
 msgstr ""
 
-#: ../../addon/wppost/wppost.php:98
+#: ../../addon/wppost/wppost.php:98 ../../addon.old/wppost/wppost.php:98
 msgid "Post to WordPress by default"
 msgstr ""
 
-#: ../../addon/wppost/wppost.php:103
+#: ../../addon/wppost/wppost.php:103 ../../addon.old/wppost/wppost.php:103
 msgid "Provide a backlink to the Friendica post"
 msgstr ""
 
-#: ../../addon/wppost/wppost.php:207
+#: ../../addon/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172
+#: ../../addon/posterous/posterous.php:189
+#: ../../addon.old/drpost/drpost.php:184 ../../addon.old/wppost/wppost.php:201
+#: ../../addon.old/blogger/blogger.php:172
+#: ../../addon.old/posterous/posterous.php:189
+msgid "Post from Friendica"
+msgstr ""
+
+#: ../../addon/wppost/wppost.php:207 ../../addon.old/wppost/wppost.php:207
 msgid "Read the original post and comment stream on Friendica"
 msgstr ""
 
 #: ../../addon/showmore/showmore.php:38
+#: ../../addon.old/showmore/showmore.php:38
 msgid "\"Show more\" Settings"
 msgstr ""
 
 #: ../../addon/showmore/showmore.php:41
+#: ../../addon.old/showmore/showmore.php:41
 msgid "Enable Show More"
 msgstr ""
 
 #: ../../addon/showmore/showmore.php:44
+#: ../../addon.old/showmore/showmore.php:44
 msgid "Cutting posts after how much characters"
 msgstr ""
 
 #: ../../addon/showmore/showmore.php:65
+#: ../../addon.old/showmore/showmore.php:65
 msgid "Show More Settings saved."
 msgstr ""
 
-#: ../../addon/piwik/piwik.php:79
+#: ../../addon/piwik/piwik.php:79 ../../addon.old/piwik/piwik.php:79
 msgid ""
 "This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
 "analytics tool."
 msgstr ""
 
-#: ../../addon/piwik/piwik.php:82
+#: ../../addon/piwik/piwik.php:82 ../../addon.old/piwik/piwik.php:82
 #, php-format
 msgid ""
 "If you do not want that your visits are logged this way you <a href='%s'>can"
@@ -6805,47 +7445,47 @@ msgid ""
 "(opt-out)."
 msgstr ""
 
-#: ../../addon/piwik/piwik.php:90
+#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
 msgid "Piwik Base URL"
 msgstr "Piwik Base URL"
 
-#: ../../addon/piwik/piwik.php:90
+#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
 msgid ""
 "Absolute path to your Piwik installation. (without protocol (http/s), with "
 "trailing slash)"
 msgstr ""
 
-#: ../../addon/piwik/piwik.php:91
+#: ../../addon/piwik/piwik.php:91 ../../addon.old/piwik/piwik.php:91
 msgid "Site ID"
 msgstr "Nettstedets ID"
 
-#: ../../addon/piwik/piwik.php:92
+#: ../../addon/piwik/piwik.php:92 ../../addon.old/piwik/piwik.php:92
 msgid "Show opt-out cookie link?"
 msgstr "Vis lenke for å velge bort cookie?"
 
-#: ../../addon/piwik/piwik.php:93
+#: ../../addon/piwik/piwik.php:93 ../../addon.old/piwik/piwik.php:93
 msgid "Asynchronous tracking"
 msgstr ""
 
-#: ../../addon/twitter/twitter.php:73
+#: ../../addon/twitter/twitter.php:73 ../../addon.old/twitter/twitter.php:73
 msgid "Post to Twitter"
 msgstr "Post til Twitter"
 
-#: ../../addon/twitter/twitter.php:122
+#: ../../addon/twitter/twitter.php:122 ../../addon.old/twitter/twitter.php:122
 msgid "Twitter settings updated."
 msgstr "Twitter-innstilinger oppdatert."
 
-#: ../../addon/twitter/twitter.php:146
+#: ../../addon/twitter/twitter.php:146 ../../addon.old/twitter/twitter.php:146
 msgid "Twitter Posting Settings"
 msgstr "Innstillinger for posting til Twitter"
 
-#: ../../addon/twitter/twitter.php:153
+#: ../../addon/twitter/twitter.php:153 ../../addon.old/twitter/twitter.php:153
 msgid ""
 "No consumer key pair for Twitter found. Please contact your site "
 "administrator."
 msgstr "Ingen \"consumer key pair\" for Twitter funnet. Vennligst kontakt stedets administrator."
 
-#: ../../addon/twitter/twitter.php:172
+#: ../../addon/twitter/twitter.php:172 ../../addon.old/twitter/twitter.php:172
 msgid ""
 "At this Friendica instance the Twitter plugin was enabled but you have not "
 "yet connected your account to your Twitter account. To do so click the "
@@ -6854,22 +7494,22 @@ msgid ""
 " be posted to Twitter."
 msgstr "Ved denne Friendica-forekomsten er Twitter-tillegget aktivert, men du har ennå ikke tilkoblet din konto til din Twitter-konto. For å gjøre det, klikk på knappen nedenfor for å få en PIN-kode fra Twitter som du må kopiere inn i feltet nedenfor og sende inn skjemaet. Bare dine <strong>offentlige</strong> innlegg vil bli lagt inn på Twitter. "
 
-#: ../../addon/twitter/twitter.php:173
+#: ../../addon/twitter/twitter.php:173 ../../addon.old/twitter/twitter.php:173
 msgid "Log in with Twitter"
 msgstr "Logg inn via Twitter"
 
-#: ../../addon/twitter/twitter.php:175
+#: ../../addon/twitter/twitter.php:175 ../../addon.old/twitter/twitter.php:175
 msgid "Copy the PIN from Twitter here"
 msgstr "Kopier PIN-kode fra Twitter hit"
 
-#: ../../addon/twitter/twitter.php:190
+#: ../../addon/twitter/twitter.php:190 ../../addon.old/twitter/twitter.php:190
 msgid ""
 "If enabled all your <strong>public</strong> postings can be posted to the "
 "associated Twitter account. You can choose to do so by default (here) or for"
 " every posting separately in the posting options when writing the entry."
 msgstr "Aktivering gjør at alle dine <strong>offentlige</strong> innlegg kan postes til den tilknyttede Twitter-kontoen. Du kan velge å gjøre dette som standard (her), eller for hvert enkelt innlegg separat i valgmulighetene for posting når du skriver et innlegg."
 
-#: ../../addon/twitter/twitter.php:192
+#: ../../addon/twitter/twitter.php:192 ../../addon.old/twitter/twitter.php:192
 msgid ""
 "<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
 "details from unknown viewers?</em>) the link potentially included in public "
@@ -6877,130 +7517,138 @@ msgid ""
 "the visitor that the access to your profile has been restricted."
 msgstr ""
 
-#: ../../addon/twitter/twitter.php:195
+#: ../../addon/twitter/twitter.php:195 ../../addon.old/twitter/twitter.php:195
 msgid "Allow posting to Twitter"
 msgstr "Tillat posting til Twitter"
 
-#: ../../addon/twitter/twitter.php:198
+#: ../../addon/twitter/twitter.php:198 ../../addon.old/twitter/twitter.php:198
 msgid "Send public postings to Twitter by default"
 msgstr "Send offentlige innlegg til Twitter som standard"
 
-#: ../../addon/twitter/twitter.php:201
+#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:201
 msgid "Send linked #-tags and @-names to Twitter"
 msgstr ""
 
-#: ../../addon/twitter/twitter.php:396
+#: ../../addon/twitter/twitter.php:508 ../../addon.old/twitter/twitter.php:396
 msgid "Consumer key"
 msgstr "Consumer key"
 
-#: ../../addon/twitter/twitter.php:397
+#: ../../addon/twitter/twitter.php:509 ../../addon.old/twitter/twitter.php:397
 msgid "Consumer secret"
 msgstr "Consumer secret"
 
-#: ../../addon/irc/irc.php:44
+#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44
 msgid "IRC Settings"
 msgstr ""
 
-#: ../../addon/irc/irc.php:46
+#: ../../addon/irc/irc.php:46 ../../addon.old/irc/irc.php:46
 msgid "Channel(s) to auto connect (comma separated)"
 msgstr ""
 
-#: ../../addon/irc/irc.php:51
+#: ../../addon/irc/irc.php:51 ../../addon.old/irc/irc.php:51
 msgid "Popular Channels (comma separated)"
 msgstr ""
 
-#: ../../addon/irc/irc.php:69
+#: ../../addon/irc/irc.php:69 ../../addon.old/irc/irc.php:69
 msgid "IRC settings saved."
 msgstr ""
 
-#: ../../addon/irc/irc.php:74
+#: ../../addon/irc/irc.php:74 ../../addon.old/irc/irc.php:74
 msgid "IRC Chatroom"
 msgstr ""
 
-#: ../../addon/irc/irc.php:96
+#: ../../addon/irc/irc.php:96 ../../addon.old/irc/irc.php:96
 msgid "Popular Channels"
 msgstr ""
 
-#: ../../addon/fromapp/fromapp.php:38
+#: ../../addon/fromapp/fromapp.php:38 ../../addon.old/fromapp/fromapp.php:38
 msgid "Fromapp settings updated."
 msgstr ""
 
-#: ../../addon/fromapp/fromapp.php:64
+#: ../../addon/fromapp/fromapp.php:64 ../../addon.old/fromapp/fromapp.php:64
 msgid "FromApp Settings"
 msgstr ""
 
-#: ../../addon/fromapp/fromapp.php:66
+#: ../../addon/fromapp/fromapp.php:66 ../../addon.old/fromapp/fromapp.php:66
 msgid ""
 "The application name you would like to show your posts originating from."
 msgstr ""
 
-#: ../../addon/fromapp/fromapp.php:70
+#: ../../addon/fromapp/fromapp.php:70 ../../addon.old/fromapp/fromapp.php:70
 msgid "Use this application name even if another application was used."
 msgstr ""
 
-#: ../../addon/blogger/blogger.php:42
+#: ../../addon/blogger/blogger.php:42 ../../addon.old/blogger/blogger.php:42
 msgid "Post to blogger"
 msgstr ""
 
-#: ../../addon/blogger/blogger.php:74
+#: ../../addon/blogger/blogger.php:74 ../../addon.old/blogger/blogger.php:74
 msgid "Blogger Post Settings"
 msgstr ""
 
-#: ../../addon/blogger/blogger.php:76
+#: ../../addon/blogger/blogger.php:76 ../../addon.old/blogger/blogger.php:76
 msgid "Enable Blogger Post Plugin"
 msgstr ""
 
-#: ../../addon/blogger/blogger.php:81
+#: ../../addon/blogger/blogger.php:81 ../../addon.old/blogger/blogger.php:81
 msgid "Blogger username"
 msgstr ""
 
-#: ../../addon/blogger/blogger.php:86
+#: ../../addon/blogger/blogger.php:86 ../../addon.old/blogger/blogger.php:86
 msgid "Blogger password"
 msgstr ""
 
-#: ../../addon/blogger/blogger.php:91
+#: ../../addon/blogger/blogger.php:91 ../../addon.old/blogger/blogger.php:91
 msgid "Blogger API URL"
 msgstr ""
 
-#: ../../addon/blogger/blogger.php:96
+#: ../../addon/blogger/blogger.php:96 ../../addon.old/blogger/blogger.php:96
 msgid "Post to Blogger by default"
 msgstr ""
 
 #: ../../addon/posterous/posterous.php:37
+#: ../../addon.old/posterous/posterous.php:37
 msgid "Post to Posterous"
 msgstr ""
 
 #: ../../addon/posterous/posterous.php:70
+#: ../../addon.old/posterous/posterous.php:70
 msgid "Posterous Post Settings"
 msgstr ""
 
 #: ../../addon/posterous/posterous.php:72
+#: ../../addon.old/posterous/posterous.php:72
 msgid "Enable Posterous Post Plugin"
 msgstr ""
 
 #: ../../addon/posterous/posterous.php:77
+#: ../../addon.old/posterous/posterous.php:77
 msgid "Posterous login"
 msgstr ""
 
 #: ../../addon/posterous/posterous.php:82
+#: ../../addon.old/posterous/posterous.php:82
 msgid "Posterous password"
 msgstr ""
 
 #: ../../addon/posterous/posterous.php:87
+#: ../../addon.old/posterous/posterous.php:87
 msgid "Posterous site ID"
 msgstr ""
 
 #: ../../addon/posterous/posterous.php:92
+#: ../../addon.old/posterous/posterous.php:92
 msgid "Posterous API token"
 msgstr ""
 
 #: ../../addon/posterous/posterous.php:97
+#: ../../addon.old/posterous/posterous.php:97
 msgid "Post to Posterous by default"
 msgstr ""
 
 #: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/diabook/config.php:192
-#: ../../view/theme/quattro/config.php:55 ../../view/theme/dispy/config.php:72
+#: ../../view/theme/diabook/config.php:154
+#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
 msgid "Theme settings"
 msgstr ""
 
@@ -7009,7 +7657,7 @@ msgid "Set resize level for images in posts and comments (width and height)"
 msgstr ""
 
 #: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/diabook/config.php:193
+#: ../../view/theme/diabook/config.php:155
 #: ../../view/theme/dispy/config.php:73
 msgid "Set font-size for posts and comments"
 msgstr ""
@@ -7019,193 +7667,185 @@ msgid "Set theme width"
 msgstr ""
 
 #: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:57
+#: ../../view/theme/quattro/config.php:68
 msgid "Color scheme"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:49
-#: ../../include/nav.php:115
+#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:49
+#: ../../include/nav.php:116
 msgid "Your posts and conversations"
 msgstr "Dine innlegg og samtaler"
 
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:50
+#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:50
 msgid "Your profile page"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:129
+#: ../../view/theme/diabook/theme.php:89
 msgid "Your contacts"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:130 ../../include/nav.php:51
+#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:51
 msgid "Your photos"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:131 ../../include/nav.php:52
+#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:52
 msgid "Your events"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
+#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
 msgid "Personal notes"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
+#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
 msgid "Your personal photos"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:134
-#: ../../view/theme/diabook/theme.php:643
-#: ../../view/theme/diabook/theme.php:747
-#: ../../view/theme/diabook/config.php:201
+#: ../../view/theme/diabook/theme.php:94
+#: ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:163
 msgid "Community Pages"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:490
-#: ../../view/theme/diabook/theme.php:749
-#: ../../view/theme/diabook/config.php:203
+#: ../../view/theme/diabook/theme.php:384
+#: ../../view/theme/diabook/theme.php:634
+#: ../../view/theme/diabook/config.php:165
 msgid "Community Profiles"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:511
-#: ../../view/theme/diabook/theme.php:754
-#: ../../view/theme/diabook/config.php:208
+#: ../../view/theme/diabook/theme.php:405
+#: ../../view/theme/diabook/theme.php:639
+#: ../../view/theme/diabook/config.php:170
 msgid "Last users"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:540
-#: ../../view/theme/diabook/theme.php:756
-#: ../../view/theme/diabook/config.php:210
+#: ../../view/theme/diabook/theme.php:434
+#: ../../view/theme/diabook/theme.php:641
+#: ../../view/theme/diabook/config.php:172
 msgid "Last likes"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:585
-#: ../../view/theme/diabook/theme.php:755
-#: ../../view/theme/diabook/config.php:209
+#: ../../view/theme/diabook/theme.php:479
+#: ../../view/theme/diabook/theme.php:640
+#: ../../view/theme/diabook/config.php:171
 msgid "Last photos"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:622
-#: ../../view/theme/diabook/theme.php:752
-#: ../../view/theme/diabook/config.php:206
+#: ../../view/theme/diabook/theme.php:516
+#: ../../view/theme/diabook/theme.php:637
+#: ../../view/theme/diabook/config.php:168
 msgid "Find Friends"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:623
+#: ../../view/theme/diabook/theme.php:517
 msgid "Local Directory"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:625 ../../include/contact_widgets.php:35
+#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35
 msgid "Similar Interests"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:627 ../../include/contact_widgets.php:37
+#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37
 msgid "Invite Friends"
 msgstr "Inviterer venner"
 
-#: ../../view/theme/diabook/theme.php:678
-#: ../../view/theme/diabook/theme.php:748
-#: ../../view/theme/diabook/config.php:202
+#: ../../view/theme/diabook/theme.php:572
+#: ../../view/theme/diabook/theme.php:633
+#: ../../view/theme/diabook/config.php:164
 msgid "Earth Layers"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:683
+#: ../../view/theme/diabook/theme.php:577
 msgid "Set zoomfactor for Earth Layers"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:684
-#: ../../view/theme/diabook/config.php:199
+#: ../../view/theme/diabook/theme.php:578
+#: ../../view/theme/diabook/config.php:161
 msgid "Set longitude (X) for Earth Layers"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:685
-#: ../../view/theme/diabook/config.php:200
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/config.php:162
 msgid "Set latitude (Y) for Earth Layers"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:698
-#: ../../view/theme/diabook/theme.php:750
-#: ../../view/theme/diabook/config.php:204
+#: ../../view/theme/diabook/theme.php:592
+#: ../../view/theme/diabook/theme.php:635
+#: ../../view/theme/diabook/config.php:166
 msgid "Help or @NewHere ?"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:705
-#: ../../view/theme/diabook/theme.php:751
-#: ../../view/theme/diabook/config.php:205
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:636
+#: ../../view/theme/diabook/config.php:167
 msgid "Connect Services"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:712
-#: ../../view/theme/diabook/theme.php:753
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:638
 msgid "Last Tweets"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:715
-#: ../../view/theme/diabook/config.php:197
+#: ../../view/theme/diabook/theme.php:609
+#: ../../view/theme/diabook/config.php:159
 msgid "Set twitter search term"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:735
-#: ../../view/theme/diabook/theme.php:736
-#: ../../view/theme/diabook/theme.php:737
-#: ../../view/theme/diabook/theme.php:738
-#: ../../view/theme/diabook/theme.php:739
-#: ../../view/theme/diabook/theme.php:740
-#: ../../view/theme/diabook/theme.php:741
-#: ../../view/theme/diabook/theme.php:742
-#: ../../view/theme/diabook/theme.php:743
-#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:288
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:288
 msgid "don't show"
 msgstr "ikke vis"
 
-#: ../../view/theme/diabook/theme.php:735
-#: ../../view/theme/diabook/theme.php:736
-#: ../../view/theme/diabook/theme.php:737
-#: ../../view/theme/diabook/theme.php:738
-#: ../../view/theme/diabook/theme.php:739
-#: ../../view/theme/diabook/theme.php:740
-#: ../../view/theme/diabook/theme.php:741
-#: ../../view/theme/diabook/theme.php:742
-#: ../../view/theme/diabook/theme.php:743
-#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:287
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:287
 msgid "show"
 msgstr "vis"
 
-#: ../../view/theme/diabook/theme.php:745
+#: ../../view/theme/diabook/theme.php:630
 msgid "Show/hide boxes at right-hand column:"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:194
+#: ../../view/theme/diabook/config.php:156
 #: ../../view/theme/dispy/config.php:74
 msgid "Set line-height for posts and comments"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:195
+#: ../../view/theme/diabook/config.php:157
 msgid "Set resolution for middle column"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:196
+#: ../../view/theme/diabook/config.php:158
 msgid "Set color scheme"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:198
+#: ../../view/theme/diabook/config.php:160
 msgid "Set zoomfactor for Earth Layer"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:207
+#: ../../view/theme/diabook/config.php:169
 msgid "Last tweets"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:56
+#: ../../view/theme/quattro/config.php:67
 msgid "Alignment"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:56
+#: ../../view/theme/quattro/config.php:67
 msgid "Left"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:56
+#: ../../view/theme/quattro/config.php:67
 msgid "Center"
 msgstr ""
 
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr ""
+
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr ""
+
 #: ../../view/theme/dispy/config.php:75
 msgid "Set colour scheme"
 msgstr ""
@@ -7335,6 +7975,10 @@ msgstr ""
 msgid "MySpace"
 msgstr ""
 
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr ""
+
 #: ../../include/profile_selectors.php:6
 msgid "Male"
 msgstr "Mann"
@@ -7576,11 +8220,11 @@ msgstr "Starter:"
 msgid "Finishes:"
 msgstr "Slutter:"
 
-#: ../../include/delivery.php:457 ../../include/notifier.php:703
+#: ../../include/delivery.php:457 ../../include/notifier.php:771
 msgid "(no subject)"
 msgstr "(uten emne)"
 
-#: ../../include/Scrape.php:576
+#: ../../include/Scrape.php:583
 msgid " on Last.fm"
 msgstr ""
 
@@ -7608,230 +8252,230 @@ msgstr ""
 msgid "older"
 msgstr ""
 
-#: ../../include/text.php:597
+#: ../../include/text.php:604
 msgid "No contacts"
 msgstr "Ingen kontakter"
 
-#: ../../include/text.php:606
+#: ../../include/text.php:613
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d kontakt"
 msgstr[1] "%d kontakter"
 
-#: ../../include/text.php:719
+#: ../../include/text.php:726
 msgid "poke"
 msgstr ""
 
-#: ../../include/text.php:719 ../../include/conversation.php:210
+#: ../../include/text.php:726 ../../include/conversation.php:210
 msgid "poked"
 msgstr ""
 
-#: ../../include/text.php:720
+#: ../../include/text.php:727
 msgid "ping"
 msgstr ""
 
-#: ../../include/text.php:720
+#: ../../include/text.php:727
 msgid "pinged"
 msgstr ""
 
-#: ../../include/text.php:721
+#: ../../include/text.php:728
 msgid "prod"
 msgstr ""
 
-#: ../../include/text.php:721
+#: ../../include/text.php:728
 msgid "prodded"
 msgstr ""
 
-#: ../../include/text.php:722
+#: ../../include/text.php:729
 msgid "slap"
 msgstr ""
 
-#: ../../include/text.php:722
+#: ../../include/text.php:729
 msgid "slapped"
 msgstr ""
 
-#: ../../include/text.php:723
+#: ../../include/text.php:730
 msgid "finger"
 msgstr ""
 
-#: ../../include/text.php:723
+#: ../../include/text.php:730
 msgid "fingered"
 msgstr ""
 
-#: ../../include/text.php:724
+#: ../../include/text.php:731
 msgid "rebuff"
 msgstr ""
 
-#: ../../include/text.php:724
+#: ../../include/text.php:731
 msgid "rebuffed"
 msgstr ""
 
-#: ../../include/text.php:736
+#: ../../include/text.php:743
 msgid "happy"
 msgstr ""
 
-#: ../../include/text.php:737
+#: ../../include/text.php:744
 msgid "sad"
 msgstr ""
 
-#: ../../include/text.php:738
+#: ../../include/text.php:745
 msgid "mellow"
 msgstr ""
 
-#: ../../include/text.php:739
+#: ../../include/text.php:746
 msgid "tired"
 msgstr ""
 
-#: ../../include/text.php:740
+#: ../../include/text.php:747
 msgid "perky"
 msgstr ""
 
-#: ../../include/text.php:741
+#: ../../include/text.php:748
 msgid "angry"
 msgstr ""
 
-#: ../../include/text.php:742
+#: ../../include/text.php:749
 msgid "stupified"
 msgstr ""
 
-#: ../../include/text.php:743
+#: ../../include/text.php:750
 msgid "puzzled"
 msgstr ""
 
-#: ../../include/text.php:744
+#: ../../include/text.php:751
 msgid "interested"
 msgstr ""
 
-#: ../../include/text.php:745
+#: ../../include/text.php:752
 msgid "bitter"
 msgstr ""
 
-#: ../../include/text.php:746
+#: ../../include/text.php:753
 msgid "cheerful"
 msgstr ""
 
-#: ../../include/text.php:747
+#: ../../include/text.php:754
 msgid "alive"
 msgstr ""
 
-#: ../../include/text.php:748
+#: ../../include/text.php:755
 msgid "annoyed"
 msgstr ""
 
-#: ../../include/text.php:749
+#: ../../include/text.php:756
 msgid "anxious"
 msgstr ""
 
-#: ../../include/text.php:750
+#: ../../include/text.php:757
 msgid "cranky"
 msgstr ""
 
-#: ../../include/text.php:751
+#: ../../include/text.php:758
 msgid "disturbed"
 msgstr ""
 
-#: ../../include/text.php:752
+#: ../../include/text.php:759
 msgid "frustrated"
 msgstr ""
 
-#: ../../include/text.php:753
+#: ../../include/text.php:760
 msgid "motivated"
 msgstr ""
 
-#: ../../include/text.php:754
+#: ../../include/text.php:761
 msgid "relaxed"
 msgstr ""
 
-#: ../../include/text.php:755
+#: ../../include/text.php:762
 msgid "surprised"
 msgstr ""
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "January"
 msgstr "januar"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "February"
 msgstr "februar"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "March"
 msgstr "mars"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "April"
 msgstr "april"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "May"
 msgstr "mai"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "June"
 msgstr "juni"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "July"
 msgstr "juli"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "August"
 msgstr "august"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "September"
 msgstr "september"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "October"
 msgstr "oktober"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "November"
 msgstr "november"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "December"
 msgstr "desember"
 
-#: ../../include/text.php:1007
+#: ../../include/text.php:1010
 msgid "bytes"
 msgstr "bytes"
 
-#: ../../include/text.php:1034 ../../include/text.php:1046
+#: ../../include/text.php:1037 ../../include/text.php:1049
 msgid "Click to open/close"
 msgstr ""
 
-#: ../../include/text.php:1219 ../../include/user.php:236
+#: ../../include/text.php:1222 ../../include/user.php:236
 msgid "default"
 msgstr ""
 
-#: ../../include/text.php:1231
+#: ../../include/text.php:1234
 msgid "Select an alternate language"
 msgstr "Velg et annet språk"
 
-#: ../../include/text.php:1441
+#: ../../include/text.php:1444
 msgid "activity"
 msgstr ""
 
-#: ../../include/text.php:1444
+#: ../../include/text.php:1447
 msgid "post"
 msgstr ""
 
-#: ../../include/text.php:1599
+#: ../../include/text.php:1602
 msgid "Item filed"
 msgstr ""
 
-#: ../../include/diaspora.php:691
+#: ../../include/diaspora.php:702
 msgid "Sharing notification from Diaspora network"
 msgstr "Dele varslinger fra Diaspora nettverket"
 
-#: ../../include/diaspora.php:2211
+#: ../../include/diaspora.php:2236
 msgid "Attachments:"
 msgstr ""
 
-#: ../../include/network.php:849
+#: ../../include/network.php:847
 msgid "view full size"
 msgstr ""
 
@@ -7843,6 +8487,46 @@ msgstr ""
 msgid "Embedding disabled"
 msgstr "Innebygging avskrudd"
 
+#: ../../include/uimport.php:61
+msgid "Error decoding account file"
+msgstr ""
+
+#: ../../include/uimport.php:67
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr ""
+
+#: ../../include/uimport.php:72
+msgid "Error! I can't import this file: DB schema version is not compatible."
+msgstr ""
+
+#: ../../include/uimport.php:81
+msgid "Error! Cannot check nickname"
+msgstr ""
+
+#: ../../include/uimport.php:85
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr ""
+
+#: ../../include/uimport.php:104
+msgid "User creation error"
+msgstr ""
+
+#: ../../include/uimport.php:122
+msgid "User profile creation error"
+msgstr ""
+
+#: ../../include/uimport.php:167
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/uimport.php:245
+msgid "Done. You can now login with your username and password"
+msgstr ""
+
 #: ../../include/group.php:25
 msgid ""
 "A deleted group with this name was revived. Existing item permissions "
@@ -7850,31 +8534,31 @@ msgid ""
 "not what you intended, please create another group with a different name."
 msgstr ""
 
-#: ../../include/group.php:176
+#: ../../include/group.php:207
 msgid "Default privacy group for new contacts"
 msgstr ""
 
-#: ../../include/group.php:195
+#: ../../include/group.php:226
 msgid "Everybody"
 msgstr "Alle"
 
-#: ../../include/group.php:218
+#: ../../include/group.php:249
 msgid "edit"
 msgstr ""
 
-#: ../../include/group.php:240
+#: ../../include/group.php:271
 msgid "Edit group"
 msgstr ""
 
-#: ../../include/group.php:241
+#: ../../include/group.php:272
 msgid "Create a new group"
 msgstr "Lag en ny gruppe"
 
-#: ../../include/group.php:242
+#: ../../include/group.php:273
 msgid "Contacts not in any group"
 msgstr ""
 
-#: ../../include/nav.php:46 ../../boot.php:911
+#: ../../include/nav.php:46 ../../boot.php:948
 msgid "Logout"
 msgstr "Logg ut"
 
@@ -7882,7 +8566,7 @@ msgstr "Logg ut"
 msgid "End this session"
 msgstr "Avslutt denne økten"
 
-#: ../../include/nav.php:49 ../../boot.php:1665
+#: ../../include/nav.php:49 ../../boot.php:1724
 msgid "Status"
 msgstr "Status"
 
@@ -7930,55 +8614,63 @@ msgstr "Personkatalog"
 msgid "Conversations from your friends"
 msgstr "Samtaler fra dine venner"
 
-#: ../../include/nav.php:121
+#: ../../include/nav.php:114
+msgid "Network Reset"
+msgstr ""
+
+#: ../../include/nav.php:114
+msgid "Load Network page with no filters"
+msgstr ""
+
+#: ../../include/nav.php:122
 msgid "Friend Requests"
 msgstr ""
 
-#: ../../include/nav.php:123
+#: ../../include/nav.php:124
 msgid "See all notifications"
 msgstr ""
 
-#: ../../include/nav.php:124
+#: ../../include/nav.php:125
 msgid "Mark all system notifications seen"
 msgstr ""
 
-#: ../../include/nav.php:128
+#: ../../include/nav.php:129
 msgid "Private mail"
 msgstr "Privat post"
 
-#: ../../include/nav.php:129
+#: ../../include/nav.php:130
 msgid "Inbox"
 msgstr "Innboks"
 
-#: ../../include/nav.php:130
+#: ../../include/nav.php:131
 msgid "Outbox"
 msgstr "Utboks"
 
-#: ../../include/nav.php:134
+#: ../../include/nav.php:135
 msgid "Manage"
 msgstr "Behandle"
 
-#: ../../include/nav.php:134
+#: ../../include/nav.php:135
 msgid "Manage other pages"
 msgstr "Behandle andre sider"
 
-#: ../../include/nav.php:138 ../../boot.php:1186
+#: ../../include/nav.php:140 ../../boot.php:1238
 msgid "Profiles"
 msgstr "Profiler"
 
-#: ../../include/nav.php:138 ../../boot.php:1186
-msgid "Manage/edit profiles"
-msgstr "Behandle/endre profiler"
+#: ../../include/nav.php:140
+msgid "Manage/Edit Profiles"
+msgstr ""
 
-#: ../../include/nav.php:139
+#: ../../include/nav.php:142
 msgid "Manage/edit friends and contacts"
 msgstr "Behandle/endre venner og kontakter"
 
-#: ../../include/nav.php:146
+#: ../../include/nav.php:149
 msgid "Site setup and configuration"
 msgstr "Nettstedsoppsett og konfigurasjon"
 
-#: ../../include/nav.php:170
+#: ../../include/nav.php:173
 msgid "Nothing new here"
 msgstr ""
 
@@ -8021,37 +8713,37 @@ msgstr ""
 msgid "Random Profile"
 msgstr ""
 
-#: ../../include/contact_widgets.php:68
+#: ../../include/contact_widgets.php:70
 msgid "Networks"
 msgstr ""
 
-#: ../../include/contact_widgets.php:71
+#: ../../include/contact_widgets.php:73
 msgid "All Networks"
 msgstr ""
 
-#: ../../include/contact_widgets.php:98
+#: ../../include/contact_widgets.php:103 ../../include/features.php:59
 msgid "Saved Folders"
 msgstr ""
 
-#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
 msgid "Everything"
 msgstr ""
 
-#: ../../include/contact_widgets.php:126
+#: ../../include/contact_widgets.php:135
 msgid "Categories"
 msgstr ""
 
-#: ../../include/auth.php:35
+#: ../../include/auth.php:36
 msgid "Logged out."
 msgstr "Logget ut."
 
-#: ../../include/auth.php:114
+#: ../../include/auth.php:126
 msgid ""
 "We encountered a problem while logging in with the OpenID you provided. "
 "Please check the correct spelling of the ID."
 msgstr ""
 
-#: ../../include/auth.php:114
+#: ../../include/auth.php:126
 msgid "The error message was:"
 msgstr ""
 
@@ -8112,38 +8804,186 @@ msgstr "sekunder"
 msgid "%1$d %2$s ago"
 msgstr ""
 
-#: ../../include/datetime.php:472 ../../include/items.php:1688
+#: ../../include/datetime.php:472 ../../include/items.php:1695
 #, php-format
 msgid "%s's birthday"
 msgstr ""
 
-#: ../../include/datetime.php:473 ../../include/items.php:1689
+#: ../../include/datetime.php:473 ../../include/items.php:1696
 #, php-format
 msgid "Happy Birthday %s"
 msgstr ""
 
-#: ../../include/onepoll.php:399
+#: ../../include/onepoll.php:414
 msgid "From: "
 msgstr "Fra: "
 
-#: ../../include/bbcode.php:185 ../../include/bbcode.php:406
+#: ../../include/bbcode.php:202 ../../include/bbcode.php:423
 msgid "Image/photo"
 msgstr "Bilde/fotografi"
 
-#: ../../include/bbcode.php:371 ../../include/bbcode.php:391
+#: ../../include/bbcode.php:388 ../../include/bbcode.php:408
 msgid "$1 wrote:"
 msgstr ""
 
-#: ../../include/bbcode.php:410 ../../include/bbcode.php:411
+#: ../../include/bbcode.php:427 ../../include/bbcode.php:428
 msgid "Encrypted content"
 msgstr ""
 
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr ""
+
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr ""
+
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr ""
+
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr ""
+
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr ""
+
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr ""
+
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr ""
+
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr ""
+
+#: ../../include/features.php:37
+msgid "Network Sidebar Widgets"
+msgstr ""
+
+#: ../../include/features.php:38
+msgid "Search by Date"
+msgstr ""
+
+#: ../../include/features.php:38
+msgid "Ability to select posts by date ranges"
+msgstr ""
+
+#: ../../include/features.php:39
+msgid "Group Filter"
+msgstr ""
+
+#: ../../include/features.php:39
+msgid "Enable widget to display Network posts only from selected group"
+msgstr ""
+
+#: ../../include/features.php:40
+msgid "Network Filter"
+msgstr ""
+
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected network"
+msgstr ""
+
+#: ../../include/features.php:41
+msgid "Save search terms for re-use"
+msgstr ""
+
+#: ../../include/features.php:46
+msgid "Network Tabs"
+msgstr ""
+
+#: ../../include/features.php:47
+msgid "Network Personal Tab"
+msgstr ""
+
+#: ../../include/features.php:47
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr ""
+
+#: ../../include/features.php:48
+msgid "Network New Tab"
+msgstr ""
+
+#: ../../include/features.php:48
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr ""
+
+#: ../../include/features.php:49
+msgid "Network Shared Links Tab"
+msgstr ""
+
+#: ../../include/features.php:49
+msgid "Enable tab to display only Network posts with links in them"
+msgstr ""
+
+#: ../../include/features.php:54
+msgid "Post/Comment Tools"
+msgstr ""
+
+#: ../../include/features.php:55
+msgid "Multiple Deletion"
+msgstr ""
+
+#: ../../include/features.php:55
+msgid "Select and delete multiple posts/comments at once"
+msgstr ""
+
+#: ../../include/features.php:56
+msgid "Edit Sent Posts"
+msgstr ""
+
+#: ../../include/features.php:56
+msgid "Edit and correct posts and comments after sending"
+msgstr ""
+
+#: ../../include/features.php:57
+msgid "Tagging"
+msgstr ""
+
+#: ../../include/features.php:57
+msgid "Ability to tag existing posts"
+msgstr ""
+
+#: ../../include/features.php:58
+msgid "Post Categories"
+msgstr ""
+
+#: ../../include/features.php:58
+msgid "Add categories to your posts"
+msgstr ""
+
+#: ../../include/features.php:59
+msgid "Ability to file posts under folders"
+msgstr ""
+
+#: ../../include/features.php:60
+msgid "Dislike Posts"
+msgstr ""
+
+#: ../../include/features.php:60
+msgid "Ability to dislike posts/comments"
+msgstr ""
+
+#: ../../include/features.php:61
+msgid "Star Posts"
+msgstr ""
+
+#: ../../include/features.php:61
+msgid "Ability to mark special posts with a star indicator"
+msgstr ""
+
 #: ../../include/dba.php:41
 #, php-format
 msgid "Cannot locate DNS info for database server '%s'"
 msgstr "Kan ikke finne DNS informasjon for databasetjeneren '%s' "
 
-#: ../../include/message.php:15 ../../include/message.php:171
+#: ../../include/message.php:15 ../../include/message.php:172
 msgid "[no subject]"
 msgstr "[ikke noe emne]"
 
@@ -8392,15 +9232,15 @@ msgstr "Ikke i stand til å hente kontaktinformasjon."
 msgid "following"
 msgstr "følger"
 
-#: ../../include/items.php:3299
+#: ../../include/items.php:3363
 msgid "A new person is sharing with you at "
 msgstr ""
 
-#: ../../include/items.php:3299
+#: ../../include/items.php:3363
 msgid "You have a new follower at "
 msgstr "Du har en ny følgesvenn på "
 
-#: ../../include/items.php:3980
+#: ../../include/items.php:4047
 msgid "Archives"
 msgstr ""
 
@@ -8484,44 +9324,44 @@ msgstr "Vennligst last opp et profilbilde."
 msgid "Welcome back "
 msgstr "Velkommen tilbake"
 
-#: ../../include/security.php:344
+#: ../../include/security.php:357
 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/Contact.php:111
+#: ../../include/Contact.php:115
 msgid "stopped following"
 msgstr "sluttet å følge"
 
-#: ../../include/Contact.php:220 ../../include/conversation.php:734
+#: ../../include/Contact.php:225 ../../include/conversation.php:795
 msgid "Poke"
 msgstr ""
 
-#: ../../include/Contact.php:221 ../../include/conversation.php:728
+#: ../../include/Contact.php:226 ../../include/conversation.php:789
 msgid "View Status"
 msgstr ""
 
-#: ../../include/Contact.php:222 ../../include/conversation.php:729
+#: ../../include/Contact.php:227 ../../include/conversation.php:790
 msgid "View Profile"
 msgstr ""
 
-#: ../../include/Contact.php:223 ../../include/conversation.php:730
+#: ../../include/Contact.php:228 ../../include/conversation.php:791
 msgid "View Photos"
 msgstr ""
 
-#: ../../include/Contact.php:224 ../../include/Contact.php:237
-#: ../../include/conversation.php:731
+#: ../../include/Contact.php:229 ../../include/Contact.php:242
+#: ../../include/conversation.php:792
 msgid "Network Posts"
 msgstr ""
 
-#: ../../include/Contact.php:225 ../../include/Contact.php:237
-#: ../../include/conversation.php:732
+#: ../../include/Contact.php:230 ../../include/Contact.php:242
+#: ../../include/conversation.php:793
 msgid "Edit Contact"
 msgstr ""
 
-#: ../../include/Contact.php:226 ../../include/Contact.php:237
-#: ../../include/conversation.php:733
+#: ../../include/Contact.php:231 ../../include/Contact.php:242
+#: ../../include/conversation.php:794
 msgid "Send PM"
 msgstr "Send privat melding"
 
@@ -8539,118 +9379,90 @@ msgstr ""
 msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr ""
 
-#: ../../include/conversation.php:545 ../../object/Item.php:218
+#: ../../include/conversation.php:599 ../../object/Item.php:225
 msgid "Categories:"
 msgstr ""
 
-#: ../../include/conversation.php:546 ../../object/Item.php:219
+#: ../../include/conversation.php:600 ../../object/Item.php:226
 msgid "Filed under:"
 msgstr ""
 
-#: ../../include/conversation.php:630
+#: ../../include/conversation.php:685
 msgid "remove"
 msgstr ""
 
-#: ../../include/conversation.php:634
+#: ../../include/conversation.php:689
 msgid "Delete Selected Items"
 msgstr "Slette valgte elementer"
 
-#: ../../include/conversation.php:792
+#: ../../include/conversation.php:788
+msgid "Follow Thread"
+msgstr ""
+
+#: ../../include/conversation.php:857
 #, php-format
 msgid "%s likes this."
 msgstr "%s liker dette."
 
-#: ../../include/conversation.php:792
+#: ../../include/conversation.php:857
 #, php-format
 msgid "%s doesn't like this."
 msgstr "%s liker ikke dette."
 
-#: ../../include/conversation.php:796
+#: ../../include/conversation.php:861
 #, php-format
 msgid "<span  %1$s>%2$d people</span> like this."
 msgstr "<span %1$s>%2$d personer</span> liker dette."
 
-#: ../../include/conversation.php:798
+#: ../../include/conversation.php:863
 #, php-format
 msgid "<span  %1$s>%2$d people</span> don't like this."
 msgstr "<span %1$s>%2$d personer</span> liker ikke dette."
 
-#: ../../include/conversation.php:804
+#: ../../include/conversation.php:869
 msgid "and"
 msgstr "og"
 
-#: ../../include/conversation.php:807
+#: ../../include/conversation.php:875
 #, php-format
 msgid ", and %d other people"
 msgstr ", og %d andre personer"
 
-#: ../../include/conversation.php:808
+#: ../../include/conversation.php:877
 #, php-format
 msgid "%s like this."
 msgstr "%s liker dette."
 
-#: ../../include/conversation.php:808
+#: ../../include/conversation.php:877
 #, php-format
 msgid "%s don't like this."
 msgstr "%s liker ikke dette."
 
-#: ../../include/conversation.php:832 ../../include/conversation.php:849
+#: ../../include/conversation.php:904 ../../include/conversation.php:922
 msgid "Visible to <strong>everybody</strong>"
 msgstr "Synlig for <strong>alle</strong>"
 
-#: ../../include/conversation.php:834 ../../include/conversation.php:851
+#: ../../include/conversation.php:906 ../../include/conversation.php:924
 msgid "Please enter a video link/URL:"
 msgstr ""
 
-#: ../../include/conversation.php:835 ../../include/conversation.php:852
+#: ../../include/conversation.php:907 ../../include/conversation.php:925
 msgid "Please enter an audio link/URL:"
 msgstr ""
 
-#: ../../include/conversation.php:836 ../../include/conversation.php:853
+#: ../../include/conversation.php:908 ../../include/conversation.php:926
 msgid "Tag term:"
 msgstr ""
 
-#: ../../include/conversation.php:838 ../../include/conversation.php:855
+#: ../../include/conversation.php:910 ../../include/conversation.php:928
 msgid "Where are you right now?"
 msgstr "Hvor er du akkurat nå?"
 
-#: ../../include/conversation.php:898
-msgid "upload photo"
-msgstr ""
-
-#: ../../include/conversation.php:900
-msgid "attach file"
-msgstr ""
-
-#: ../../include/conversation.php:902
-msgid "web link"
-msgstr ""
-
-#: ../../include/conversation.php:903
-msgid "Insert video link"
-msgstr ""
-
-#: ../../include/conversation.php:904
-msgid "video link"
-msgstr ""
-
-#: ../../include/conversation.php:905
-msgid "Insert audio link"
-msgstr ""
-
-#: ../../include/conversation.php:906
-msgid "audio link"
-msgstr ""
-
-#: ../../include/conversation.php:908
-msgid "set location"
-msgstr ""
-
-#: ../../include/conversation.php:910
-msgid "clear location"
+#: ../../include/conversation.php:911
+msgid "Delete item(s)?"
 msgstr ""
 
-#: ../../include/conversation.php:917
+#: ../../include/conversation.php:990
 msgid "permissions"
 msgstr ""
 
@@ -8666,100 +9478,172 @@ msgstr ""
 msgid "This action is not available under your subscription plan."
 msgstr ""
 
-#: ../../boot.php:573
+#: ../../boot.php:607
 msgid "Delete this item?"
 msgstr "Slett dette elementet?"
 
-#: ../../boot.php:576
+#: ../../boot.php:610
 msgid "show fewer"
 msgstr ""
 
-#: ../../boot.php:783
+#: ../../boot.php:819
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Oppdatering %s mislyktes. Se feilloggene."
 
-#: ../../boot.php:785
+#: ../../boot.php:821
 #, php-format
 msgid "Update Error at %s"
 msgstr ""
 
-#: ../../boot.php:886
+#: ../../boot.php:922
 msgid "Create a New Account"
 msgstr "Lag en ny konto"
 
-#: ../../boot.php:914
+#: ../../boot.php:951
 msgid "Nickname or Email address: "
 msgstr "Kallenavn eller epostadresse: "
 
-#: ../../boot.php:915
+#: ../../boot.php:952
 msgid "Password: "
 msgstr "Passord: "
 
-#: ../../boot.php:918
+#: ../../boot.php:953
+msgid "Remember me"
+msgstr ""
+
+#: ../../boot.php:956
 msgid "Or login using OpenID: "
 msgstr ""
 
-#: ../../boot.php:924
+#: ../../boot.php:962
 msgid "Forgot your password?"
 msgstr "Glemt passordet?"
 
-#: ../../boot.php:1035
+#: ../../boot.php:1087
 msgid "Requested account is not available."
 msgstr ""
 
-#: ../../boot.php:1112
+#: ../../boot.php:1164
 msgid "Edit profile"
 msgstr "Rediger profil"
 
-#: ../../boot.php:1178
+#: ../../boot.php:1230
 msgid "Message"
 msgstr ""
 
-#: ../../boot.php:1300 ../../boot.php:1386
+#: ../../boot.php:1238
+msgid "Manage/edit profiles"
+msgstr "Behandle/endre profiler"
+
+#: ../../boot.php:1352 ../../boot.php:1438
 msgid "g A l F d"
 msgstr ""
 
-#: ../../boot.php:1301 ../../boot.php:1387
+#: ../../boot.php:1353 ../../boot.php:1439
 msgid "F d"
 msgstr ""
 
-#: ../../boot.php:1346 ../../boot.php:1427
+#: ../../boot.php:1398 ../../boot.php:1479
 msgid "[today]"
 msgstr "[idag]"
 
-#: ../../boot.php:1358
+#: ../../boot.php:1410
 msgid "Birthday Reminders"
 msgstr "Fødselsdager"
 
-#: ../../boot.php:1359
+#: ../../boot.php:1411
 msgid "Birthdays this week:"
 msgstr "Fødselsdager denne uken:"
 
-#: ../../boot.php:1420
+#: ../../boot.php:1472
 msgid "[No description]"
 msgstr "[Ingen beskrivelse]"
 
-#: ../../boot.php:1438
+#: ../../boot.php:1490
 msgid "Event Reminders"
 msgstr "Påminnelser om hendelser"
 
-#: ../../boot.php:1439
+#: ../../boot.php:1491
 msgid "Events this week:"
 msgstr "Hendelser denne uken:"
 
-#: ../../boot.php:1668
+#: ../../boot.php:1727
 msgid "Status Messages and Posts"
 msgstr ""
 
-#: ../../boot.php:1675
+#: ../../boot.php:1734
 msgid "Profile Details"
 msgstr ""
 
-#: ../../boot.php:1692
+#: ../../boot.php:1751
 msgid "Events and Calendar"
 msgstr ""
 
-#: ../../boot.php:1699
+#: ../../boot.php:1758
 msgid "Only You Can See This"
 msgstr ""
+
+#: ../../object/Item.php:237
+msgid "via"
+msgstr ""
+
+#: ../../index.php:398
+msgid "toggle mobile"
+msgstr ""
+
+#: ../../addon.old/bg/bg.php:51
+msgid "Bg settings updated."
+msgstr ""
+
+#: ../../addon.old/bg/bg.php:82
+msgid "Bg Settings"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:35
+msgid "Post to Drupal"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:72
+msgid "Drupal Post Settings"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:74
+msgid "Enable Drupal Post Plugin"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:79
+msgid "Drupal username"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:84
+msgid "Drupal password"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:89
+msgid "Post Type - article,page,or blog"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:94
+msgid "Drupal site URL"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:99
+msgid "Drupal site uses clean URLS"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:104
+msgid "Post to Drupal by default"
+msgstr ""
+
+#: ../../addon.old/oembed.old/oembed.php:30
+msgid "OEmbed settings updated"
+msgstr "OEmbed-innstillingene er oppdatert"
+
+#: ../../addon.old/oembed.old/oembed.php:43
+msgid "Use OEmbed for YouTube videos"
+msgstr "Bruk OEmbed til YouTube-videoer"
+
+#: ../../addon.old/oembed.old/oembed.php:71
+msgid "URL to embed:"
+msgstr "URL som skal innebygges:"
index 2e02190ddc1cd7b66688a17e0decf0c533bcc00c..c2b32ec7c61ef44e48b11ef5dd4f55e38748e02c 100644 (file)
@@ -11,18 +11,18 @@ $a->strings["Contact update failed."] = "Kontaktoppdatering mislyktes.";
 $a->strings["Permission denied."] = "Ingen tilgang.";
 $a->strings["Contact not found."] = "Kontakt ikke funnet.";
 $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."] = "";
+$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"] = "";
 $a->strings["Name"] = "Navn";
 $a->strings["Account Nickname"] = "Konto Kallenavn";
-$a->strings["@Tagname - overrides Name/Nickname"] = "";
+$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"] = "";
+$a->strings["New photo from this URL"] = "Nytt bilde fra denne URL-en";
 $a->strings["Submit"] = "Lagre";
 $a->strings["Help:"] = "Hjelp:";
 $a->strings["Help"] = "Hjelp";
@@ -58,11 +58,11 @@ $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["%s welcomes %s"] = "%s hilser %s velkommen";
-$a->strings["Authorize application connection"] = "";
-$a->strings["Return to your app and insert this Securty Code:"] = "";
-$a->strings["Please login to continue."] = "";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "";
+$a->strings["%1\$s welcomes %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["Yes"] = "Ja";
 $a->strings["No"] = "Nei";
 $a->strings["Photo Albums"] = "Fotoalbum";
@@ -74,9 +74,8 @@ $a->strings["Profile Photos"] = "Profilbilder";
 $a->strings["Album not found."] = "Album ble ikke funnet.";
 $a->strings["Delete Album"] = "Slett album";
 $a->strings["Delete Photo"] = "Slett bilde";
-$a->strings["was tagged in a"] = "ble tagget i et";
-$a->strings["photo"] = "bilde";
-$a->strings["by"] = "av";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
+$a->strings["a photo"] = "";
 $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.";
@@ -85,7 +84,6 @@ $a->strings["Public access denied."] = "Offentlig tilgang ikke tillatt.";
 $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."] = "";
-$a->strings["You have used %1$.2f Mbytes of photo storage."] = "";
 $a->strings["Upload Photos"] = "Last opp bilder";
 $a->strings["New album name: "] = "Nytt albumnavn:";
 $a->strings["or existing album name: "] = "eller eksisterende albumnavn:";
@@ -135,13 +133,19 @@ $a->strings["Edit post"] = "Endre innlegg";
 $a->strings["Post to Email"] = "Innlegg til e-post";
 $a->strings["Edit"] = "Endre";
 $a->strings["Upload photo"] = "Last opp bilde";
+$a->strings["upload photo"] = "";
 $a->strings["Attach file"] = "Legg ved fil";
+$a->strings["attach file"] = "";
 $a->strings["Insert web link"] = "Sett inn web-adresse";
-$a->strings["Insert YouTube video"] = "Sett inn YouTube-video";
-$a->strings["Insert Vorbis [.ogg] video"] = "Sett inn Vorbis [.ogg] video";
-$a->strings["Insert Vorbis [.ogg] audio"] = "Sett inn Vorbis [ogg] lydfil";
+$a->strings["web link"] = "";
+$a->strings["Insert video link"] = "";
+$a->strings["video link"] = "";
+$a->strings["Insert audio link"] = "";
+$a->strings["audio link"] = "";
 $a->strings["Set your location"] = "Angi din plassering";
+$a->strings["set location"] = "";
 $a->strings["Clear browser location"] = "Fjern nettleserplassering";
+$a->strings["clear location"] = "";
 $a->strings["Permission settings"] = "Tillatelser";
 $a->strings["CC: email addresses"] = "Kopi: e-postadresser";
 $a->strings["Public post"] = "Offentlig innlegg";
@@ -183,16 +187,28 @@ $a->strings["Please enter your 'Identity Address' from one of the following supp
 $a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "";
 $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>."] = "";
 $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"] = "";
+$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"] = "";
+$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."] = "";
 $a->strings["Your Identity Address:"] = "Din identitetsadresse:";
 $a->strings["Submit Request"] = "Send forespørsel";
+$a->strings["Account settings"] = "Kontoinnstillinger";
+$a->strings["Display settings"] = "";
+$a->strings["Connector settings"] = "Koblingsinnstillinger";
+$a->strings["Plugin settings"] = "Tilleggsinnstillinger";
+$a->strings["Connected apps"] = "Tilkoblede programmer";
+$a->strings["Export personal data"] = "Eksporter personlige data";
+$a->strings["Remove account"] = "";
+$a->strings["Settings"] = "Innstillinger";
+$a->strings["Export account"] = "";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "";
+$a->strings["Export all"] = "";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "";
 $a->strings["Friendica Social Communications Server - Setup"] = "";
 $a->strings["Could not connect to database."] = "";
 $a->strings["Could not create table."] = "";
@@ -249,7 +265,7 @@ $a->strings["<h1>What next</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["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["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "";
 $a->strings["UTC time: %s"] = "UTC tid: %s";
 $a->strings["Current timezone: %s"] = "Gjeldende tidssone: %s";
 $a->strings["Converted localtime: %s"] = "Konvertert lokaltid: %s";
@@ -311,7 +327,7 @@ $a->strings["System"] = "";
 $a->strings["Network"] = "Nettverk";
 $a->strings["Personal"] = "";
 $a->strings["Home"] = "Hjem";
-$a->strings["Introductions"] = "";
+$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";
@@ -327,17 +343,17 @@ $a->strings["yes"] = "ja";
 $a->strings["no"] = "ei";
 $a->strings["Approve as: "] = "Godkjenn som:";
 $a->strings["Friend"] = "Venn";
-$a->strings["Sharer"] = "";
+$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."] = "";
 $a->strings["Notifications"] = "Varslinger";
-$a->strings["%s liked %s's post"] = "";
-$a->strings["%s disliked %s's post"] = "";
-$a->strings["%s is now friends with %s"] = "";
-$a->strings["%s created a new post"] = "";
-$a->strings["%s commented on %s's post"] = "";
+$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."] = "";
 $a->strings["Network Notifications"] = "";
 $a->strings["No more system notifications."] = "";
@@ -436,18 +452,12 @@ $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["Account settings"] = "Kontoinnstillinger";
-$a->strings["Display settings"] = "";
-$a->strings["Connector settings"] = "Koblingsinnstillinger";
-$a->strings["Plugin settings"] = "Tilleggsinnstillinger";
-$a->strings["Connected apps"] = "Tilkoblede programmer";
-$a->strings["Export personal data"] = "Eksporter personlige data";
-$a->strings["Remove account"] = "";
-$a->strings["Settings"] = "Innstillinger";
+$a->strings["Additional features"] = "";
 $a->strings["Missing some important data!"] = "Mangler noen viktige data!";
 $a->strings["Update"] = "Oppdater";
 $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"] = "";
 $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["Password changed."] = "Passord endret.";
@@ -471,6 +481,9 @@ $a->strings["No name"] = "Ingen navn";
 $a->strings["Remove authorization"] = "Fjern tillatelse";
 $a->strings["No Plugin settings configured"] = "Ingen tilleggsinnstillinger konfigurert";
 $a->strings["Plugin Settings"] = "Tilleggsinnstillinger";
+$a->strings["Off"] = "";
+$a->strings["On"] = "";
+$a->strings["Additional Features"] = "";
 $a->strings["Built-in support for %s connectivity is %s"] = "Innebygget støtte for %s forbindelse er %s";
 $a->strings["enabled"] = "aktivert";
 $a->strings["disabled"] = "avskrudd";
@@ -573,17 +586,17 @@ $a->strings["Search Results For:"] = "";
 $a->strings["Remove term"] = "Fjern uttrykk";
 $a->strings["Saved Searches"] = "Lagrede søk";
 $a->strings["add"] = "";
-$a->strings["Commented Order"] = "";
+$a->strings["Commented Order"] = "Etter kommentarer";
 $a->strings["Sort by Comment Date"] = "";
-$a->strings["Posted Order"] = "";
+$a->strings["Posted Order"] = "Etter innlegg";
 $a->strings["Sort by Post Date"] = "";
 $a->strings["Posts that mention or involve you"] = "";
-$a->strings["New"] = "";
+$a->strings["New"] = "Ny";
 $a->strings["Activity Stream - by date"] = "";
-$a->strings["Starred"] = "";
-$a->strings["Favourite Posts"] = "";
 $a->strings["Shared Links"] = "";
 $a->strings["Interesting Links"] = "";
+$a->strings["Starred"] = "Med stjerne";
+$a->strings["Favourite Posts"] = "";
 $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.",
@@ -594,6 +607,12 @@ $a->strings["Private messages to this person are at risk of public disclosure."]
 $a->strings["Invalid contact."] = "Ugyldig kontakt.";
 $a->strings["Personal Notes"] = "Personlige notater";
 $a->strings["Save"] = "Lagre";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
+$a->strings["Import"] = "";
+$a->strings["Move account"] = "";
+$a->strings["You can import an account from another Friendica server. <br>\r\n                            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.<br>\r\n                            <b>This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"] = "";
+$a->strings["Account file"] = "";
+$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "";
 $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."] = "";
@@ -669,7 +688,6 @@ $a->strings["Failed to send email message. Here is the message that failed."] =
 $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."] = "";
 $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):";
@@ -683,6 +701,7 @@ $a->strings["Choose a profile nickname. This must begin with a text character. Y
 $a->strings["Choose a nickname: "] = "Velg et kallenavn:";
 $a->strings["Register"] = "Registrer";
 $a->strings["People Search"] = "Personsøk";
+$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["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s's %3\$s";
@@ -741,7 +760,7 @@ $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."] = "";
 $a->strings["Send Reply"] = "Send svar";
 $a->strings["Friends of %s"] = "Venner av %s";
-$a->strings["No friends to display."] = "";
+$a->strings["No friends to display."] = "Ingen venner å vise.";
 $a->strings["Theme settings updated."] = "";
 $a->strings["Site"] = "Nettsted";
 $a->strings["Users"] = "Brukere";
@@ -791,6 +810,8 @@ $a->strings["Maximum length in pixels of the longest side of uploaded images. De
 $a->strings["JPEG image quality"] = "";
 $a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
 $a->strings["Register policy"] = "Registrer retningslinjer";
+$a->strings["Maximum Daily Registrations"] = "";
+$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "";
 $a->strings["Register text"] = "Registrer tekst";
 $a->strings["Will be displayed prominently on the registration page."] = "";
 $a->strings["Accounts abandoned after x days"] = "";
@@ -913,6 +934,7 @@ $a->strings["Login failed."] = "Innlogging mislyktes.";
 $a->strings["Contact added"] = "";
 $a->strings["Common Friends"] = "";
 $a->strings["No contacts in common."] = "";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
 $a->strings["link"] = "";
 $a->strings["Item has been removed."] = "Elementet har blitt slettet.";
 $a->strings["Applications"] = "Programmer";
@@ -995,7 +1017,7 @@ $a->strings["visible to everybody"] = "synlig for alle";
 $a->strings["Edit visibility"] = "Endre synlighet";
 $a->strings["Save to Folder:"] = "";
 $a->strings["- select -"] = "";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "";
+$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["No potential page delegates located."] = "";
 $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å.";
@@ -1113,9 +1135,6 @@ $a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Face
 $a->strings["StatusNet AutoFollow settings updated."] = "";
 $a->strings["StatusNet AutoFollow Settings"] = "";
 $a->strings["Automatically follow any StatusNet followers/mentioners"] = "";
-$a->strings["Bg settings updated."] = "";
-$a->strings["Bg Settings"] = "";
-$a->strings["How many contacts to display on profile sidebar"] = "";
 $a->strings["Lifetime of the cache (in hours)"] = "";
 $a->strings["Cache Statistics"] = "";
 $a->strings["Number of items"] = "";
@@ -1203,6 +1222,7 @@ $a->strings["Randomise Page/Forum list"] = "";
 $a->strings["Show pages/forums on profile page"] = "";
 $a->strings["Planets Settings"] = "";
 $a->strings["Enable Planets Plugin"] = "";
+$a->strings["Forum Directory"] = "";
 $a->strings["Login"] = "Logg inn";
 $a->strings["OpenID"] = "";
 $a->strings["Latest users"] = "";
@@ -1358,16 +1378,15 @@ $a->strings["Enable dreamwidth Post Plugin"] = "";
 $a->strings["dreamwidth username"] = "";
 $a->strings["dreamwidth password"] = "";
 $a->strings["Post to dreamwidth by default"] = "";
-$a->strings["Post to Drupal"] = "";
-$a->strings["Drupal Post Settings"] = "";
-$a->strings["Enable Drupal Post Plugin"] = "";
-$a->strings["Drupal username"] = "";
-$a->strings["Drupal password"] = "";
-$a->strings["Post Type - article,page,or blog"] = "";
-$a->strings["Drupal site URL"] = "";
-$a->strings["Drupal site uses clean URLS"] = "";
-$a->strings["Post to Drupal by default"] = "";
-$a->strings["Post from Friendica"] = "";
+$a->strings["Remote Permissions Settings"] = "";
+$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "";
+$a->strings["Remote Permissions settings updated."] = "";
+$a->strings["Visible to"] = "";
+$a->strings["may only be a partial list"] = "";
+$a->strings["Global"] = "";
+$a->strings["The posts of every user on this server show the post recipients"] = "";
+$a->strings["Individual"] = "";
+$a->strings["Each user chooses whether his/her posts show the post recipients"] = "";
 $a->strings["Startpage Settings"] = "";
 $a->strings["Home page to load after login  - leave blank for profile wall"] = "";
 $a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "";
@@ -1384,15 +1403,13 @@ $a->strings["No files were uploaded."] = "Ingen filer ble lastet opp.";
 $a->strings["Uploaded file is empty"] = "Opplastet fil er tom";
 $a->strings["File has an invalid extension, it should be one of "] = "Filen har en ugyldig endelse, den må være en av ";
 $a->strings["Upload was cancelled, or server error encountered"] = "Opplasting avbrutt, eller det oppstod en feil på tjeneren";
-$a->strings["OEmbed settings updated"] = "OEmbed-innstillingene er oppdatert";
-$a->strings["Use OEmbed for YouTube videos"] = "Bruk OEmbed til YouTube-videoer";
-$a->strings["URL to embed:"] = "URL som skal innebygges:";
 $a->strings["show/hide"] = "";
 $a->strings["No forum subscriptions"] = "";
 $a->strings["Forumlist settings updated."] = "";
 $a->strings["Forumlist Settings"] = "";
 $a->strings["Randomise forum list"] = "";
 $a->strings["Show forums on profile page"] = "";
+$a->strings["Show forums on network page"] = "";
 $a->strings["Impressum"] = "Informasjon om nettstedet";
 $a->strings["Site Owner"] = "Nettstedets eier";
 $a->strings["Email Address"] = "E-postadresse";
@@ -1524,6 +1541,7 @@ $a->strings["Tumblr password"] = "";
 $a->strings["Post to Tumblr by default"] = "";
 $a->strings["Numfriends settings updated."] = "";
 $a->strings["Numfriends Settings"] = "";
+$a->strings["How many contacts to display on profile sidebar"] = "";
 $a->strings["Gnot settings updated."] = "";
 $a->strings["Gnot Settings"] = "";
 $a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "";
@@ -1537,6 +1555,7 @@ $a->strings["WordPress password"] = "";
 $a->strings["WordPress API URL"] = "";
 $a->strings["Post to WordPress by default"] = "";
 $a->strings["Provide a backlink to the Friendica post"] = "";
+$a->strings["Post from Friendica"] = "";
 $a->strings["Read the original post and comment stream on Friendica"] = "";
 $a->strings["\"Show more\" Settings"] = "";
 $a->strings["Enable Show More"] = "";
@@ -1628,6 +1647,8 @@ $a->strings["Last tweets"] = "";
 $a->strings["Alignment"] = "";
 $a->strings["Left"] = "";
 $a->strings["Center"] = "";
+$a->strings["Posts font size"] = "";
+$a->strings["Textareas font size"] = "";
 $a->strings["Set colour scheme"] = "";
 $a->strings["j F, Y"] = "j F, Y";
 $a->strings["j F"] = "j F";
@@ -1660,6 +1681,7 @@ $a->strings["Zot!"] = "";
 $a->strings["LinkedIn"] = "";
 $a->strings["XMPP/IM"] = "";
 $a->strings["MySpace"] = "";
+$a->strings["Google+"] = "";
 $a->strings["Male"] = "Mann";
 $a->strings["Female"] = "Kvinne";
 $a->strings["Currently Male"] = "For øyeblikket mann";
@@ -1789,6 +1811,18 @@ $a->strings["Attachments:"] = "";
 $a->strings["view full size"] = "";
 $a->strings["Embedded content"] = "";
 $a->strings["Embedding disabled"] = "Innebygging avskrudd";
+$a->strings["Error decoding account file"] = "";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
+$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "";
+$a->strings["Error! Cannot check nickname"] = "";
+$a->strings["User '%s' already exists on this server!"] = "";
+$a->strings["User creation error"] = "";
+$a->strings["User profile creation error"] = "";
+$a->strings["%d contact not imported"] = array(
+       0 => "",
+       1 => "",
+);
+$a->strings["Done. You can now login with your username and password"] = "";
 $a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "";
 $a->strings["Default privacy group for new contacts"] = "";
 $a->strings["Everybody"] = "Alle";
@@ -1810,6 +1844,8 @@ $a->strings["Conversations on this site"] = "Samtaler på dette nettstedet";
 $a->strings["Directory"] = "Katalog";
 $a->strings["People directory"] = "Personkatalog";
 $a->strings["Conversations from your friends"] = "Samtaler fra dine venner";
+$a->strings["Network Reset"] = "";
+$a->strings["Load Network page with no filters"] = "";
 $a->strings["Friend Requests"] = "";
 $a->strings["See all notifications"] = "";
 $a->strings["Mark all system notifications seen"] = "";
@@ -1819,7 +1855,7 @@ $a->strings["Outbox"] = "Utboks";
 $a->strings["Manage"] = "Behandle";
 $a->strings["Manage other pages"] = "Behandle andre sider";
 $a->strings["Profiles"] = "Profiler";
-$a->strings["Manage/edit profiles"] = "Behandle/endre profiler";
+$a->strings["Manage/Edit Profiles"] = "";
 $a->strings["Manage/edit friends and contacts"] = "Behandle/endre venner og kontakter";
 $a->strings["Site setup and configuration"] = "Nettstedsoppsett og konfigurasjon";
 $a->strings["Nothing new here"] = "";
@@ -1863,6 +1899,43 @@ $a->strings["From: "] = "Fra: ";
 $a->strings["Image/photo"] = "Bilde/fotografi";
 $a->strings["$1 wrote:"] = "";
 $a->strings["Encrypted content"] = "";
+$a->strings["General Features"] = "";
+$a->strings["Multiple Profiles"] = "";
+$a->strings["Ability to create multiple profiles"] = "";
+$a->strings["Post Composition Features"] = "";
+$a->strings["Richtext Editor"] = "";
+$a->strings["Enable richtext editor"] = "";
+$a->strings["Post Preview"] = "";
+$a->strings["Allow previewing posts and comments before publishing them"] = "";
+$a->strings["Network Sidebar Widgets"] = "";
+$a->strings["Search by Date"] = "";
+$a->strings["Ability to select posts by date ranges"] = "";
+$a->strings["Group Filter"] = "";
+$a->strings["Enable widget to display Network posts only from selected group"] = "";
+$a->strings["Network Filter"] = "";
+$a->strings["Enable widget to display Network posts only from selected network"] = "";
+$a->strings["Save search terms for re-use"] = "";
+$a->strings["Network Tabs"] = "";
+$a->strings["Network Personal Tab"] = "";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
+$a->strings["Network New Tab"] = "";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "";
+$a->strings["Network Shared Links Tab"] = "";
+$a->strings["Enable tab to display only Network posts with links in them"] = "";
+$a->strings["Post/Comment Tools"] = "";
+$a->strings["Multiple Deletion"] = "";
+$a->strings["Select and delete multiple posts/comments at once"] = "";
+$a->strings["Edit Sent Posts"] = "";
+$a->strings["Edit and correct posts and comments after sending"] = "";
+$a->strings["Tagging"] = "";
+$a->strings["Ability to tag existing posts"] = "";
+$a->strings["Post Categories"] = "";
+$a->strings["Add categories to your posts"] = "";
+$a->strings["Ability to file posts under folders"] = "";
+$a->strings["Dislike Posts"] = "";
+$a->strings["Ability to dislike posts/comments"] = "";
+$a->strings["Star Posts"] = "";
+$a->strings["Ability to mark special posts with a star indicator"] = "";
 $a->strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS informasjon for databasetjeneren '%s' ";
 $a->strings["[no subject]"] = "[ikke noe emne]";
 $a->strings["Visible to everybody"] = "Synlig for alle";
@@ -1954,6 +2027,7 @@ $a->strings["Categories:"] = "";
 $a->strings["Filed under:"] = "";
 $a->strings["remove"] = "";
 $a->strings["Delete Selected Items"] = "Slette valgte elementer";
+$a->strings["Follow Thread"] = "";
 $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.";
@@ -1967,15 +2041,7 @@ $a->strings["Please enter a video link/URL:"] = "";
 $a->strings["Please enter an audio link/URL:"] = "";
 $a->strings["Tag term:"] = "";
 $a->strings["Where are you right now?"] = "Hvor er du akkurat nå?";
-$a->strings["upload photo"] = "";
-$a->strings["attach file"] = "";
-$a->strings["web link"] = "";
-$a->strings["Insert video link"] = "";
-$a->strings["video link"] = "";
-$a->strings["Insert audio link"] = "";
-$a->strings["audio link"] = "";
-$a->strings["set location"] = "";
-$a->strings["clear location"] = "";
+$a->strings["Delete item(s)?"] = "";
 $a->strings["permissions"] = "";
 $a->strings["Click here to upgrade."] = "";
 $a->strings["This action exceeds the limits set by your subscription plan."] = "";
@@ -1987,11 +2053,13 @@ $a->strings["Update Error at %s"] = "";
 $a->strings["Create a New Account"] = "Lag en ny konto";
 $a->strings["Nickname or Email address: "] = "Kallenavn eller epostadresse: ";
 $a->strings["Password: "] = "Passord: ";
+$a->strings["Remember me"] = "";
 $a->strings["Or login using OpenID: "] = "";
 $a->strings["Forgot your password?"] = "Glemt passordet?";
 $a->strings["Requested account is not available."] = "";
 $a->strings["Edit profile"] = "Rediger profil";
 $a->strings["Message"] = "";
+$a->strings["Manage/edit profiles"] = "Behandle/endre profiler";
 $a->strings["g A l F d"] = "";
 $a->strings["F d"] = "";
 $a->strings["[today]"] = "[idag]";
@@ -2004,3 +2072,19 @@ $a->strings["Status Messages and Posts"] = "";
 $a->strings["Profile Details"] = "";
 $a->strings["Events and Calendar"] = "";
 $a->strings["Only You Can See This"] = "";
+$a->strings["via"] = "";
+$a->strings["toggle mobile"] = "";
+$a->strings["Bg settings updated."] = "";
+$a->strings["Bg Settings"] = "";
+$a->strings["Post to Drupal"] = "";
+$a->strings["Drupal Post Settings"] = "";
+$a->strings["Enable Drupal Post Plugin"] = "";
+$a->strings["Drupal username"] = "";
+$a->strings["Drupal password"] = "";
+$a->strings["Post Type - article,page,or blog"] = "";
+$a->strings["Drupal site URL"] = "";
+$a->strings["Drupal site uses clean URLS"] = "";
+$a->strings["Post to Drupal by default"] = "";
+$a->strings["OEmbed settings updated"] = "OEmbed-innstillingene er oppdatert";
+$a->strings["Use OEmbed for YouTube videos"] = "Bruk OEmbed til YouTube-videoer";
+$a->strings["URL to embed:"] = "URL som skal innebygges:";
index bc342cc3b6fee382f780355a98b4b5ae15663857..4df6ecc694ce4d81f37de4402263c9330bfb02b7 100644 (file)
@@ -4,6 +4,7 @@ $default
 
 <div id="profile-edit-links">
 <ul>
+<li><a href="profile_photo" id="profile-photo_upload-link" title="$profpic">$profpic</a></li>
 <li><a href="profile/$profile_id/view?tab=profile" id="profile-edit-view-link" title="$viewprof">$viewprof</a></li>
 <li><a href="$profile_clone_link" id="profile-edit-clone-link" title="$cr_prof">$cl_prof</a></li>
 <li></li>
diff --git a/view/pt-br/intro_complete_eml.tpl b/view/pt-br/intro_complete_eml.tpl
new file mode 100644 (file)
index 0000000..13ccbc9
--- /dev/null
@@ -0,0 +1,22 @@
+
+Prezado/a $[username],
+
+       '$[fn]' em '$[dfrn_url]' aceitou 
+seu pedido de coneção em '$[sitename]'.
+
+       '$[fn]' optou por aceitá-lo com "fan", que restringe 
+algumas formas de comunicação, tais como mensagens privadas e algumas interações
+com o  perfil. Se essa é uma página de celebridade ou de comunidade essas configurações foram
+aplicadas automaticamente.
+
+       '$[fn]' pode escolher estender isso para uma comunicação bidirecional ourelacionamento mais permissivo 
+no futuro. 
+
+       Você começará a receber atualizações públicas de '$[fn]' 
+que aparecerão na sua página 'Rede'   
+
+$[siteurl]
+
+Cordialmente,
+
+       Administrador do $[sitemname]
\ No newline at end of file
index d604328847264a070be0260189c7ecd568388de9..37bde3be8ba7ad226f5a4795229aedee6bc01231 100644 (file)
@@ -9,16 +9,18 @@
 # Frederico Aracnus <frederico@teia.bio.br>, 2011-2012.
 # Frederico Goncalves Guimaraes <frederico@teia.bio.br>, 2011.
 # Frederico Gonçalves Guimarães <frederico@teia.bio.br>, 2011-2012.
+# Frederico Gonçalves Guimarães <frederico@teia.bio.br>, 2011-2012, 2012.
 #   <frederico@teia.bio.br>, 2011.
 # FULL NAME <EMAIL@ADDRESS>, 2011.
 # Ricardo Pereira <rhalah@gmail.com>, 2012.
+# Sérgio Lima  <oigreslima@gmail.com>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2012-10-10 10:00-0700\n"
-"PO-Revision-Date: 2012-10-13 01:32+0000\n"
-"Last-Translator: Frederico Aracnus <frederico@teia.bio.br>\n"
+"POT-Creation-Date: 2012-12-03 10:00-0800\n"
+"PO-Revision-Date: 2012-12-03 18:44+0000\n"
+"Last-Translator: Sérgio 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"
@@ -32,6 +34,7 @@ msgstr "Publicado com sucesso."
 
 #: ../../mod/update_notes.php:41 ../../mod/update_community.php:18
 #: ../../mod/update_network.php:22 ../../mod/update_profile.php:41
+#: ../../mod/update_display.php:22
 msgid "[Embedded content - reload page to view]"
 msgstr "[Conteúdo incorporado - recarregue a página para ver]"
 
@@ -45,30 +48,33 @@ msgstr "Não foi possível atualizar o contato."
 
 #: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
 #: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/photos.php:128 ../../mod/photos.php:990
+#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:995
 #: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
-#: ../../mod/notifications.php:66 ../../mod/contacts.php:146
-#: ../../mod/settings.php:86 ../../mod/settings.php:525
-#: ../../mod/settings.php:530 ../../mod/manage.php:87 ../../mod/network.php:6
-#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9
+#: ../../mod/notifications.php:66 ../../mod/contacts.php:147
+#: ../../mod/settings.php:91 ../../mod/settings.php:541
+#: ../../mod/settings.php:546 ../../mod/manage.php:90 ../../mod/network.php:6
+#: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9
 #: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
 #: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
 #: ../../mod/group.php:19 ../../mod/viewcontacts.php:22
-#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:126
-#: ../../mod/item.php:142 ../../mod/mood.php:114
+#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:139
+#: ../../mod/item.php:155 ../../mod/mood.php:114
 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../mod/message.php:38 ../../mod/message.php:168
+#: ../../mod/message.php:38 ../../mod/message.php:172
 #: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
-#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9
-#: ../../mod/display.php:141 ../../mod/profiles.php:7
-#: ../../mod/profiles.php:424 ../../mod/delegate.php:6
+#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9
+#: ../../mod/display.php:165 ../../mod/profiles.php:7
+#: ../../mod/profiles.php:431 ../../mod/delegate.php:6
 #: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
 #: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
 #: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
 #: ../../addon/fbpost/fbpost.php:165
-#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3913
-#: ../../index.php:317
+#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3977
+#: ../../index.php:333 ../../addon.old/facebook/facebook.php:510
+#: ../../addon.old/facebook/facebook.php:516
+#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
+#: ../../addon.old/dav/friendica/layout.fnk.php:354
 msgid "Permission denied."
 msgstr "Permissão negada."
 
@@ -97,8 +103,8 @@ msgstr "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>
 msgid "Return to contact editor"
 msgstr "Voltar ao editor de contatos"
 
-#: ../../mod/crepair.php:148 ../../mod/settings.php:545
-#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702
+#: ../../mod/crepair.php:148 ../../mod/settings.php:561
+#: ../../mod/settings.php:587 ../../mod/admin.php:695 ../../mod/admin.php:705
 msgid "Name"
 msgstr "Nome"
 
@@ -135,28 +141,30 @@ msgid "New photo from this URL"
 msgstr "Nova imagem desta URL"
 
 #: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
-#: ../../mod/events.php:455 ../../mod/photos.php:1023
-#: ../../mod/photos.php:1099 ../../mod/photos.php:1362
-#: ../../mod/photos.php:1402 ../../mod/photos.php:1445
-#: ../../mod/photos.php:1477 ../../mod/install.php:246
+#: ../../mod/events.php:455 ../../mod/photos.php:1028
+#: ../../mod/photos.php:1100 ../../mod/photos.php:1363
+#: ../../mod/photos.php:1403 ../../mod/photos.php:1447
+#: ../../mod/photos.php:1519 ../../mod/install.php:246
 #: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
-#: ../../mod/content.php:693 ../../mod/contacts.php:348
-#: ../../mod/settings.php:543 ../../mod/settings.php:697
-#: ../../mod/settings.php:769 ../../mod/settings.php:976
-#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294
-#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689
-#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112
-#: ../../mod/profiles.php:594 ../../mod/invite.php:119
-#: ../../addon/fromgplus/fromgplus.php:40
+#: ../../mod/content.php:693 ../../mod/contacts.php:352
+#: ../../mod/settings.php:559 ../../mod/settings.php:669
+#: ../../mod/settings.php:738 ../../mod/settings.php:810
+#: ../../mod/settings.php:1017 ../../mod/group.php:85 ../../mod/mood.php:137
+#: ../../mod/message.php:301 ../../mod/message.php:487 ../../mod/admin.php:445
+#: ../../mod/admin.php:692 ../../mod/admin.php:829 ../../mod/admin.php:1028
+#: ../../mod/admin.php:1115 ../../mod/profiles.php:604
+#: ../../mod/invite.php:119 ../../addon/fromgplus/fromgplus.php:40
 #: ../../addon/facebook/facebook.php:619
-#: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90
+#: ../../addon/snautofollow/snautofollow.php:64
 #: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76
 #: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88
 #: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158
 #: ../../addon/uhremotestorage/uhremotestorage.php:89
 #: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
-#: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92
-#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41
+#: ../../addon/remote_permissions/remote_permissions.php:47
+#: ../../addon/remote_permissions/remote_permissions.php:195
+#: ../../addon/startpage/startpage.php:92
+#: ../../addon/geonames/geonames.php:187
 #: ../../addon/forumlist/forumlist.php:175
 #: ../../addon/impressum/impressum.php:83
 #: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
@@ -174,35 +182,80 @@ msgstr "Nova imagem desta URL"
 #: ../../addon/statusnet/statusnet.php:318
 #: ../../addon/statusnet/statusnet.php:325
 #: ../../addon/statusnet/statusnet.php:353
-#: ../../addon/statusnet/statusnet.php:576 ../../addon/tumblr/tumblr.php:90
+#: ../../addon/statusnet/statusnet.php:685 ../../addon/tumblr/tumblr.php:90
 #: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
 #: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
 #: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
-#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394
+#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:506
 #: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
 #: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
 #: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/diabook/theme.php:757
-#: ../../view/theme/diabook/config.php:190
+#: ../../view/theme/diabook/theme.php:642
+#: ../../view/theme/diabook/config.php:152
 #: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
-#: ../../object/Item.php:558
+#: ../../object/Item.php:570 ../../addon.old/fromgplus/fromgplus.php:40
+#: ../../addon.old/facebook/facebook.php:619
+#: ../../addon.old/snautofollow/snautofollow.php:64
+#: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226
+#: ../../addon.old/yourls/yourls.php:76 ../../addon.old/ljpost/ljpost.php:93
+#: ../../addon.old/nsfw/nsfw.php:88 ../../addon.old/page/page.php:211
+#: ../../addon.old/planets/planets.php:158
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:89
+#: ../../addon.old/randplace/randplace.php:177
+#: ../../addon.old/dwpost/dwpost.php:93 ../../addon.old/drpost/drpost.php:110
+#: ../../addon.old/startpage/startpage.php:92
+#: ../../addon.old/geonames/geonames.php:187
+#: ../../addon.old/oembed.old/oembed.php:41
+#: ../../addon.old/forumlist/forumlist.php:175
+#: ../../addon.old/impressum/impressum.php:83
+#: ../../addon.old/notimeline/notimeline.php:64
+#: ../../addon.old/blockem/blockem.php:57
+#: ../../addon.old/qcomment/qcomment.php:61
+#: ../../addon.old/openstreetmap/openstreetmap.php:70
+#: ../../addon.old/group_text/group_text.php:84
+#: ../../addon.old/libravatar/libravatar.php:99
+#: ../../addon.old/libertree/libertree.php:90
+#: ../../addon.old/altpager/altpager.php:87
+#: ../../addon.old/mathjax/mathjax.php:42
+#: ../../addon.old/editplain/editplain.php:84
+#: ../../addon.old/blackout/blackout.php:98
+#: ../../addon.old/gravatar/gravatar.php:95
+#: ../../addon.old/pageheader/pageheader.php:55
+#: ../../addon.old/ijpost/ijpost.php:93
+#: ../../addon.old/jappixmini/jappixmini.php:307
+#: ../../addon.old/statusnet/statusnet.php:278
+#: ../../addon.old/statusnet/statusnet.php:292
+#: ../../addon.old/statusnet/statusnet.php:318
+#: ../../addon.old/statusnet/statusnet.php:325
+#: ../../addon.old/statusnet/statusnet.php:353
+#: ../../addon.old/statusnet/statusnet.php:576
+#: ../../addon.old/tumblr/tumblr.php:90
+#: ../../addon.old/numfriends/numfriends.php:85
+#: ../../addon.old/gnot/gnot.php:88 ../../addon.old/wppost/wppost.php:110
+#: ../../addon.old/showmore/showmore.php:48 ../../addon.old/piwik/piwik.php:89
+#: ../../addon.old/twitter/twitter.php:180
+#: ../../addon.old/twitter/twitter.php:209
+#: ../../addon.old/twitter/twitter.php:394 ../../addon.old/irc/irc.php:55
+#: ../../addon.old/fromapp/fromapp.php:77
+#: ../../addon.old/blogger/blogger.php:102
+#: ../../addon.old/posterous/posterous.php:103
 msgid "Submit"
 msgstr "Enviar"
 
-#: ../../mod/help.php:30
+#: ../../mod/help.php:79
 msgid "Help:"
 msgstr "Ajuda:"
 
-#: ../../mod/help.php:34 ../../addon/dav/friendica/layout.fnk.php:225
-#: ../../include/nav.php:86
+#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225
+#: ../../include/nav.php:86 ../../addon.old/dav/friendica/layout.fnk.php:225
 msgid "Help"
 msgstr "Ajuda"
 
-#: ../../mod/help.php:38 ../../index.php:226
+#: ../../mod/help.php:90 ../../index.php:218
 msgid "Not Found"
 msgstr "Não encontrada"
 
-#: ../../mod/help.php:41 ../../index.php:229
+#: ../../mod/help.php:93 ../../index.php:221
 msgid "Page not found."
 msgstr "Página não encontrada."
 
@@ -240,12 +293,12 @@ msgstr "l, F j"
 msgid "Edit event"
 msgstr "Editar o evento"
 
-#: ../../mod/events.php:323 ../../include/text.php:1187
+#: ../../mod/events.php:323 ../../include/text.php:1190
 msgid "link to source"
 msgstr "exibir a origem"
 
-#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:131
-#: ../../include/nav.php:52 ../../boot.php:1700
+#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:91
+#: ../../include/nav.php:52 ../../boot.php:1748
 msgid "Events"
 msgstr "Eventos"
 
@@ -254,11 +307,13 @@ msgid "Create New Event"
 msgstr "Criar um novo evento"
 
 #: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263
+#: ../../addon.old/dav/friendica/layout.fnk.php:263
 msgid "Previous"
 msgstr "Anterior"
 
 #: ../../mod/events.php:350 ../../mod/install.php:205
 #: ../../addon/dav/friendica/layout.fnk.php:266
+#: ../../addon.old/dav/friendica/layout.fnk.php:266
 msgid "Next"
 msgstr "Próximo"
 
@@ -300,8 +355,9 @@ msgid "Description:"
 msgstr "Descrição:"
 
 #: ../../mod/events.php:448 ../../mod/directory.php:134
+#: ../../addon/forumdirectory/forumdirectory.php:156
 #: ../../include/event.php:40 ../../include/bb2diaspora.php:412
-#: ../../boot.php:1236
+#: ../../boot.php:1278
 msgid "Location:"
 msgstr "Localização:"
 
@@ -313,10 +369,11 @@ msgstr "Título:"
 msgid "Share this event"
 msgstr "Compartilhar este evento"
 
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:142
-#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544
-#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45
-#: ../../include/conversation.php:948
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:145
+#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:560
+#: ../../mod/settings.php:586 ../../addon/js_upload/js_upload.php:45
+#: ../../include/conversation.php:1009
+#: ../../addon.old/js_upload/js_upload.php:45
 msgid "Cancel"
 msgstr "Cancelar"
 
@@ -334,13 +391,14 @@ msgstr "Selecione uma etiqueta para remover: "
 
 #: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
 #: ../../addon/dav/common/wdcal_edit.inc.php:468
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:468
 msgid "Remove"
 msgstr "Remover"
 
 #: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530
 #, php-format
-msgid "%s welcomes %s"
-msgstr "%s dá as boas vindas a %s"
+msgid "%1$s welcomes %2$s"
+msgstr ""
 
 #: ../../mod/api.php:76 ../../mod/api.php:102
 msgid "Authorize application connection"
@@ -361,284 +419,277 @@ msgid ""
 msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"
 
 #: ../../mod/api.php:105 ../../mod/dfrn_request.php:835
-#: ../../mod/settings.php:892 ../../mod/settings.php:898
-#: ../../mod/settings.php:906 ../../mod/settings.php:910
-#: ../../mod/settings.php:915 ../../mod/settings.php:921
-#: ../../mod/settings.php:927 ../../mod/settings.php:933
-#: ../../mod/settings.php:963 ../../mod/settings.php:964
-#: ../../mod/settings.php:965 ../../mod/settings.php:966
-#: ../../mod/settings.php:967 ../../mod/register.php:236
-#: ../../mod/profiles.php:574
+#: ../../mod/settings.php:933 ../../mod/settings.php:939
+#: ../../mod/settings.php:947 ../../mod/settings.php:951
+#: ../../mod/settings.php:956 ../../mod/settings.php:962
+#: ../../mod/settings.php:968 ../../mod/settings.php:974
+#: ../../mod/settings.php:1004 ../../mod/settings.php:1005
+#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
+#: ../../mod/settings.php:1008 ../../mod/register.php:237
+#: ../../mod/profiles.php:584
 msgid "Yes"
 msgstr "Sim"
 
 #: ../../mod/api.php:106 ../../mod/dfrn_request.php:836
-#: ../../mod/settings.php:892 ../../mod/settings.php:898
-#: ../../mod/settings.php:906 ../../mod/settings.php:910
-#: ../../mod/settings.php:915 ../../mod/settings.php:921
-#: ../../mod/settings.php:927 ../../mod/settings.php:933
-#: ../../mod/settings.php:963 ../../mod/settings.php:964
-#: ../../mod/settings.php:965 ../../mod/settings.php:966
-#: ../../mod/settings.php:967 ../../mod/register.php:237
-#: ../../mod/profiles.php:575
+#: ../../mod/settings.php:933 ../../mod/settings.php:939
+#: ../../mod/settings.php:947 ../../mod/settings.php:951
+#: ../../mod/settings.php:956 ../../mod/settings.php:962
+#: ../../mod/settings.php:968 ../../mod/settings.php:974
+#: ../../mod/settings.php:1004 ../../mod/settings.php:1005
+#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
+#: ../../mod/settings.php:1008 ../../mod/register.php:238
+#: ../../mod/profiles.php:585
 msgid "No"
 msgstr "Não"
 
-#: ../../mod/photos.php:46 ../../boot.php:1693
+#: ../../mod/photos.php:51 ../../boot.php:1741
 msgid "Photo Albums"
 msgstr "Álbum de fotos"
 
-#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:1004
-#: ../../mod/photos.php:1091 ../../mod/photos.php:1106
-#: ../../mod/photos.php:1556 ../../mod/photos.php:1568
+#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1009
+#: ../../mod/photos.php:1092 ../../mod/photos.php:1107
+#: ../../mod/photos.php:1562 ../../mod/photos.php:1574
 #: ../../addon/communityhome/communityhome.php:110
-#: ../../view/theme/diabook/theme.php:598
+#: ../../view/theme/diabook/theme.php:492
+#: ../../addon.old/communityhome/communityhome.php:110
 msgid "Contact Photos"
 msgstr "Fotos dos contatos"
 
-#: ../../mod/photos.php:61 ../../mod/photos.php:1122 ../../mod/photos.php:1606
+#: ../../mod/photos.php:66 ../../mod/photos.php:1123 ../../mod/photos.php:1612
 msgid "Upload New Photos"
 msgstr "Enviar novas fotos"
 
-#: ../../mod/photos.php:74 ../../mod/settings.php:23
+#: ../../mod/photos.php:79 ../../mod/settings.php:23
 msgid "everybody"
 msgstr "todos"
 
-#: ../../mod/photos.php:138
+#: ../../mod/photos.php:143
 msgid "Contact information unavailable"
 msgstr "A informação de contato não está disponível"
 
-#: ../../mod/photos.php:149 ../../mod/photos.php:671 ../../mod/photos.php:1091
-#: ../../mod/photos.php:1106 ../../mod/profile_photo.php:74
+#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1092
+#: ../../mod/photos.php:1107 ../../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
 #: ../../addon/communityhome/communityhome.php:111
-#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:324
+#: ../../view/theme/diabook/theme.php:493 ../../include/user.php:324
 #: ../../include/user.php:331 ../../include/user.php:338
+#: ../../addon.old/communityhome/communityhome.php:111
 msgid "Profile Photos"
 msgstr "Fotos do perfil"
 
-#: ../../mod/photos.php:159
+#: ../../mod/photos.php:164
 msgid "Album not found."
 msgstr "O álbum não foi encontrado."
 
-#: ../../mod/photos.php:177 ../../mod/photos.php:1100
+#: ../../mod/photos.php:182 ../../mod/photos.php:1101
 msgid "Delete Album"
 msgstr "Excluir o álbum"
 
-#: ../../mod/photos.php:240 ../../mod/photos.php:1363
+#: ../../mod/photos.php:245 ../../mod/photos.php:1364
 msgid "Delete Photo"
 msgstr "Excluir a foto"
 
-#: ../../mod/photos.php:602
-msgid "was tagged in a"
-msgstr "foi etiquetada em uma"
-
-#: ../../mod/photos.php:602 ../../mod/like.php:145 ../../mod/subthread.php:87
-#: ../../mod/tagger.php:62 ../../addon/communityhome/communityhome.php:163
-#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439
-#: ../../include/diaspora.php:1835 ../../include/conversation.php:125
-#: ../../include/conversation.php:253
-msgid "photo"
-msgstr "foto"
+#: ../../mod/photos.php:607
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr ""
 
-#: ../../mod/photos.php:602
-msgid "by"
-msgstr "por"
+#: ../../mod/photos.php:607
+msgid "a photo"
+msgstr ""
 
-#: ../../mod/photos.php:707 ../../addon/js_upload/js_upload.php:315
+#: ../../mod/photos.php:712 ../../addon/js_upload/js_upload.php:321
+#: ../../addon.old/js_upload/js_upload.php:315
 msgid "Image exceeds size limit of "
 msgstr "A imagem excede o tamanho máximo de "
 
-#: ../../mod/photos.php:715
+#: ../../mod/photos.php:720
 msgid "Image file is empty."
 msgstr "O arquivo de imagem está vazio."
 
-#: ../../mod/photos.php:747 ../../mod/profile_photo.php:153
-#: ../../mod/wall_upload.php:110
+#: ../../mod/photos.php:752 ../../mod/profile_photo.php:153
+#: ../../mod/wall_upload.php:112
 msgid "Unable to process image."
 msgstr "Não foi possível processar a imagem."
 
-#: ../../mod/photos.php:774 ../../mod/profile_photo.php:301
-#: ../../mod/wall_upload.php:136
+#: ../../mod/photos.php:779 ../../mod/profile_photo.php:301
+#: ../../mod/wall_upload.php:138
 msgid "Image upload failed."
 msgstr "Não foi possível enviar a imagem."
 
-#: ../../mod/photos.php:860 ../../mod/community.php:18
+#: ../../mod/photos.php:865 ../../mod/community.php:18
 #: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17
-#: ../../mod/display.php:7 ../../mod/search.php:86 ../../mod/directory.php:31
+#: ../../mod/display.php:7 ../../mod/search.php:89 ../../mod/directory.php:31
+#: ../../addon/forumdirectory/forumdirectory.php:53
 msgid "Public access denied."
 msgstr "Acesso público negado."
 
-#: ../../mod/photos.php:870
+#: ../../mod/photos.php:875
 msgid "No photos selected"
 msgstr "Não foi selecionada nenhuma foto"
 
-#: ../../mod/photos.php:971
+#: ../../mod/photos.php:976
 msgid "Access to this item is restricted."
 msgstr "O acesso a este item é restrito."
 
-#: ../../mod/photos.php:1033
+#: ../../mod/photos.php:1037
 #, 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/photos.php:1036
-#, php-format
-msgid "You have used %1$.2f Mbytes of photo storage."
-msgstr "Você está usando %1$.2f Mbytes do armazenamento de fotos."
-
-#: ../../mod/photos.php:1042
+#: ../../mod/photos.php:1043
 msgid "Upload Photos"
 msgstr "Enviar fotos"
 
-#: ../../mod/photos.php:1046 ../../mod/photos.php:1095
+#: ../../mod/photos.php:1047 ../../mod/photos.php:1096
 msgid "New album name: "
 msgstr "Nome do novo álbum: "
 
-#: ../../mod/photos.php:1047
+#: ../../mod/photos.php:1048
 msgid "or existing album name: "
 msgstr "ou o nome de um álbum já existente: "
 
-#: ../../mod/photos.php:1048
+#: ../../mod/photos.php:1049
 msgid "Do not show a status post for this upload"
 msgstr "Não exiba uma publicação de status para este envio"
 
-#: ../../mod/photos.php:1050 ../../mod/photos.php:1358
+#: ../../mod/photos.php:1051 ../../mod/photos.php:1359
 msgid "Permissions"
 msgstr "Permissões"
 
-#: ../../mod/photos.php:1110
+#: ../../mod/photos.php:1111
 msgid "Edit Album"
 msgstr "Editar o álbum"
 
-#: ../../mod/photos.php:1116
+#: ../../mod/photos.php:1117
 msgid "Show Newest First"
 msgstr "Exibir as mais recentes primeiro"
 
-#: ../../mod/photos.php:1118
+#: ../../mod/photos.php:1119
 msgid "Show Oldest First"
 msgstr "Exibir as mais antigas primeiro"
 
-#: ../../mod/photos.php:1142 ../../mod/photos.php:1589
+#: ../../mod/photos.php:1143 ../../mod/photos.php:1595
 msgid "View Photo"
 msgstr "Ver a foto"
 
-#: ../../mod/photos.php:1177
+#: ../../mod/photos.php:1178
 msgid "Permission denied. Access to this item may be restricted."
 msgstr "Permissão negada. O acesso a este item pode estar restrito."
 
-#: ../../mod/photos.php:1179
+#: ../../mod/photos.php:1180
 msgid "Photo not available"
 msgstr "A foto não está disponível"
 
-#: ../../mod/photos.php:1235
+#: ../../mod/photos.php:1236
 msgid "View photo"
 msgstr "Ver a imagem"
 
-#: ../../mod/photos.php:1235
+#: ../../mod/photos.php:1236
 msgid "Edit photo"
 msgstr "Editar a foto"
 
-#: ../../mod/photos.php:1236
+#: ../../mod/photos.php:1237
 msgid "Use as profile photo"
 msgstr "Usar como uma foto de perfil"
 
-#: ../../mod/photos.php:1242 ../../mod/content.php:603
-#: ../../object/Item.php:103
+#: ../../mod/photos.php:1243 ../../mod/content.php:603
+#: ../../object/Item.php:104
 msgid "Private Message"
 msgstr "Mensagem privada"
 
-#: ../../mod/photos.php:1261
+#: ../../mod/photos.php:1262
 msgid "View Full Size"
 msgstr "Ver no tamanho real"
 
-#: ../../mod/photos.php:1335
+#: ../../mod/photos.php:1336
 msgid "Tags: "
 msgstr "Etiquetas: "
 
-#: ../../mod/photos.php:1338
+#: ../../mod/photos.php:1339
 msgid "[Remove any tag]"
 msgstr "[Remover qualquer etiqueta]"
 
-#: ../../mod/photos.php:1348
+#: ../../mod/photos.php:1349
 msgid "Rotate CW (right)"
 msgstr "Rotacionar para direita"
 
-#: ../../mod/photos.php:1349
+#: ../../mod/photos.php:1350
 msgid "Rotate CCW (left)"
 msgstr "Rotacionar para esquerda"
 
-#: ../../mod/photos.php:1351
+#: ../../mod/photos.php:1352
 msgid "New album name"
 msgstr "Novo nome para o álbum"
 
-#: ../../mod/photos.php:1354
+#: ../../mod/photos.php:1355
 msgid "Caption"
 msgstr "Legenda"
 
-#: ../../mod/photos.php:1356
+#: ../../mod/photos.php:1357
 msgid "Add a Tag"
 msgstr "Adicionar uma etiqueta"
 
-#: ../../mod/photos.php:1360
+#: ../../mod/photos.php:1361
 msgid ""
 "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento"
 
-#: ../../mod/photos.php:1380 ../../mod/content.php:667
-#: ../../object/Item.php:196
+#: ../../mod/photos.php:1381 ../../mod/content.php:667
+#: ../../object/Item.php:202
 msgid "I like this (toggle)"
 msgstr "Eu gostei disso (alternar)"
 
-#: ../../mod/photos.php:1381 ../../mod/content.php:668
-#: ../../object/Item.php:197
+#: ../../mod/photos.php:1382 ../../mod/content.php:668
+#: ../../object/Item.php:203
 msgid "I don't like this (toggle)"
 msgstr "Eu não gostei disso (alternar)"
 
-#: ../../mod/photos.php:1382 ../../include/conversation.php:909
+#: ../../mod/photos.php:1383 ../../include/conversation.php:969
 msgid "Share"
 msgstr "Compartilhar"
 
-#: ../../mod/photos.php:1383 ../../mod/editpost.php:118
-#: ../../mod/content.php:482 ../../mod/content.php:845
-#: ../../mod/wallmessage.php:152 ../../mod/message.php:293
-#: ../../mod/message.php:481 ../../include/conversation.php:573
-#: ../../include/conversation.php:928 ../../object/Item.php:258
+#: ../../mod/photos.php:1384 ../../mod/editpost.php:121
+#: ../../mod/content.php:482 ../../mod/content.php:848
+#: ../../mod/wallmessage.php:152 ../../mod/message.php:300
+#: ../../mod/message.php:488 ../../include/conversation.php:624
+#: ../../include/conversation.php:988 ../../object/Item.php:269
 msgid "Please wait"
 msgstr "Por favor, espere"
 
-#: ../../mod/photos.php:1399 ../../mod/photos.php:1442
-#: ../../mod/photos.php:1474 ../../mod/content.php:690
-#: ../../object/Item.php:555
+#: ../../mod/photos.php:1400 ../../mod/photos.php:1444
+#: ../../mod/photos.php:1516 ../../mod/content.php:690
+#: ../../object/Item.php:567
 msgid "This is you"
 msgstr "Este(a) é você"
 
-#: ../../mod/photos.php:1401 ../../mod/photos.php:1444
-#: ../../mod/photos.php:1476 ../../mod/content.php:692 ../../boot.php:584
-#: ../../object/Item.php:557
+#: ../../mod/photos.php:1402 ../../mod/photos.php:1446
+#: ../../mod/photos.php:1518 ../../mod/content.php:692 ../../boot.php:608
+#: ../../object/Item.php:266 ../../object/Item.php:569
 msgid "Comment"
 msgstr "Comentar"
 
-#: ../../mod/photos.php:1403 ../../mod/editpost.php:139
-#: ../../mod/content.php:702 ../../include/conversation.php:946
-#: ../../object/Item.php:567
+#: ../../mod/photos.php:1404 ../../mod/photos.php:1448
+#: ../../mod/photos.php:1520 ../../mod/editpost.php:142
+#: ../../mod/content.php:702 ../../include/conversation.php:1006
+#: ../../object/Item.php:579
 msgid "Preview"
 msgstr "Pré-visualização"
 
-#: ../../mod/photos.php:1505 ../../mod/content.php:439
-#: ../../mod/content.php:723 ../../mod/settings.php:606
-#: ../../mod/group.php:168 ../../mod/admin.php:696
-#: ../../include/conversation.php:518 ../../object/Item.php:117
+#: ../../mod/photos.php:1488 ../../mod/content.php:439
+#: ../../mod/content.php:724 ../../mod/settings.php:622
+#: ../../mod/group.php:168 ../../mod/admin.php:699
+#: ../../include/conversation.php:569 ../../object/Item.php:118
 msgid "Delete"
 msgstr "Excluir"
 
-#: ../../mod/photos.php:1595
+#: ../../mod/photos.php:1601
 msgid "View Album"
 msgstr "Ver álbum"
 
-#: ../../mod/photos.php:1604
+#: ../../mod/photos.php:1610
 msgid "Recent Photos"
 msgstr "Fotos recentes"
 
@@ -646,13 +697,13 @@ msgstr "Fotos recentes"
 msgid "Not available."
 msgstr "Não disponível."
 
-#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:133
+#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
 #: ../../include/nav.php:101
 msgid "Community"
 msgstr "Comunidade"
 
-#: ../../mod/community.php:63 ../../mod/community.php:88
-#: ../../mod/search.php:161 ../../mod/search.php:187
+#: ../../mod/community.php:61 ../../mod/community.php:86
+#: ../../mod/search.php:162 ../../mod/search.php:188
 msgid "No results."
 msgstr "Nenhum resultado."
 
@@ -692,100 +743,100 @@ msgstr "Nenhum plugin/complemento/aplicativo instalado"
 msgid "Item not found"
 msgstr "O item não foi encontrado"
 
-#: ../../mod/editpost.php:36
+#: ../../mod/editpost.php:39
 msgid "Edit post"
 msgstr "Editar a publicação"
 
-#: ../../mod/editpost.php:88 ../../include/conversation.php:895
+#: ../../mod/editpost.php:91 ../../include/conversation.php:955
 msgid "Post to Email"
 msgstr "Enviar por e-mail"
 
-#: ../../mod/editpost.php:103 ../../mod/content.php:710
-#: ../../mod/settings.php:605 ../../object/Item.php:107
+#: ../../mod/editpost.php:106 ../../mod/content.php:711
+#: ../../mod/settings.php:621 ../../object/Item.php:108
 msgid "Edit"
 msgstr "Editar"
 
-#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
-#: ../../mod/message.php:291 ../../mod/message.php:478
-#: ../../include/conversation.php:910
+#: ../../mod/editpost.php:107 ../../mod/wallmessage.php:150
+#: ../../mod/message.php:298 ../../mod/message.php:485
+#: ../../include/conversation.php:970
 msgid "Upload photo"
 msgstr "Enviar foto"
 
-#: ../../mod/editpost.php:105 ../../include/conversation.php:911
+#: ../../mod/editpost.php:108 ../../include/conversation.php:971
 msgid "upload photo"
 msgstr "upload de foto"
 
-#: ../../mod/editpost.php:106 ../../include/conversation.php:912
+#: ../../mod/editpost.php:109 ../../include/conversation.php:972
 msgid "Attach file"
 msgstr "Anexar arquivo"
 
-#: ../../mod/editpost.php:107 ../../include/conversation.php:913
+#: ../../mod/editpost.php:110 ../../include/conversation.php:973
 msgid "attach file"
 msgstr "anexar arquivo"
 
-#: ../../mod/editpost.php:108 ../../mod/wallmessage.php:151
-#: ../../mod/message.php:292 ../../mod/message.php:479
-#: ../../include/conversation.php:914
+#: ../../mod/editpost.php:111 ../../mod/wallmessage.php:151
+#: ../../mod/message.php:299 ../../mod/message.php:486
+#: ../../include/conversation.php:974
 msgid "Insert web link"
 msgstr "Inserir link web"
 
-#: ../../mod/editpost.php:109 ../../include/conversation.php:915
+#: ../../mod/editpost.php:112 ../../include/conversation.php:975
 msgid "web link"
 msgstr "link web"
 
-#: ../../mod/editpost.php:110 ../../include/conversation.php:916
+#: ../../mod/editpost.php:113 ../../include/conversation.php:976
 msgid "Insert video link"
 msgstr "Inserir link de vídeo"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:917
+#: ../../mod/editpost.php:114 ../../include/conversation.php:977
 msgid "video link"
 msgstr "link de vídeo"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:918
+#: ../../mod/editpost.php:115 ../../include/conversation.php:978
 msgid "Insert audio link"
 msgstr "Inserir link de áudio"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:919
+#: ../../mod/editpost.php:116 ../../include/conversation.php:979
 msgid "audio link"
 msgstr "link de áudio"
 
-#: ../../mod/editpost.php:114 ../../include/conversation.php:920
+#: ../../mod/editpost.php:117 ../../include/conversation.php:980
 msgid "Set your location"
 msgstr "Definir sua localização"
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:921
+#: ../../mod/editpost.php:118 ../../include/conversation.php:981
 msgid "set location"
 msgstr "configure localização"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:922
+#: ../../mod/editpost.php:119 ../../include/conversation.php:982
 msgid "Clear browser location"
 msgstr "Limpar a localização do navegador"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:923
+#: ../../mod/editpost.php:120 ../../include/conversation.php:983
 msgid "clear location"
 msgstr "apague localização"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:929
+#: ../../mod/editpost.php:122 ../../include/conversation.php:989
 msgid "Permission settings"
 msgstr "Configurações de permissão"
 
-#: ../../mod/editpost.php:127 ../../include/conversation.php:938
+#: ../../mod/editpost.php:130 ../../include/conversation.php:998
 msgid "CC: email addresses"
 msgstr "CC: endereço de e-mail"
 
-#: ../../mod/editpost.php:128 ../../include/conversation.php:939
+#: ../../mod/editpost.php:131 ../../include/conversation.php:999
 msgid "Public post"
 msgstr "Publicação pública"
 
-#: ../../mod/editpost.php:131 ../../include/conversation.php:925
+#: ../../mod/editpost.php:134 ../../include/conversation.php:985
 msgid "Set title"
 msgstr "Definir o título"
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:927
+#: ../../mod/editpost.php:136 ../../include/conversation.php:987
 msgid "Categories (comma-separated list)"
 msgstr "Categorias (lista separada por vírgulas)"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:941
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1001
 msgid "Example: bob@example.com, mary@example.com"
 msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com"
 
@@ -870,7 +921,7 @@ msgstr "URL de perfil inválida."
 msgid "Disallowed profile URL."
 msgstr "URL de perfil não permitida."
 
-#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:123
+#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:124
 msgid "Failed to update contact record."
 msgstr "Não foi possível atualizar o registro do contato."
 
@@ -906,7 +957,7 @@ msgstr "Por favor, confirme sua solicitação de apresentação/conexão para %s
 msgid "Confirm"
 msgstr "Confirmar"
 
-#: ../../mod/dfrn_request.php:715 ../../include/items.php:3292
+#: ../../mod/dfrn_request.php:715 ../../include/items.php:3356
 msgid "[Name Withheld]"
 msgstr "[Nome não revelado]"
 
@@ -958,7 +1009,7 @@ msgstr "Friendica"
 msgid "StatusNet/Federated Social Web"
 msgstr "StatusNet/Federated Social Web"
 
-#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640
+#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:681
 #: ../../include/contact_selectors.php:80
 msgid "Diaspora"
 msgstr "Diaspora"
@@ -978,6 +1029,65 @@ msgstr "Seu endereço de identificação:"
 msgid "Submit Request"
 msgstr "Enviar solicitação"
 
+#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:138
+msgid "Account settings"
+msgstr "Configurações da conta"
+
+#: ../../mod/uexport.php:14 ../../mod/settings.php:40
+msgid "Display settings"
+msgstr "Configurações de exibição"
+
+#: ../../mod/uexport.php:20 ../../mod/settings.php:46
+msgid "Connector settings"
+msgstr "Configurações do conector"
+
+#: ../../mod/uexport.php:25 ../../mod/settings.php:51
+msgid "Plugin settings"
+msgstr "Configurações dos plugins"
+
+#: ../../mod/uexport.php:30 ../../mod/settings.php:56
+msgid "Connected apps"
+msgstr "Aplicações conectadas"
+
+#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:61
+msgid "Export personal data"
+msgstr "Exportar dados pessoais"
+
+#: ../../mod/uexport.php:40 ../../mod/settings.php:66
+msgid "Remove account"
+msgstr "Remover a conta"
+
+#: ../../mod/uexport.php:48 ../../mod/settings.php:74
+#: ../../mod/newmember.php:22 ../../mod/admin.php:788 ../../mod/admin.php:993
+#: ../../addon/dav/friendica/layout.fnk.php:225
+#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:138
+#: ../../addon.old/dav/friendica/layout.fnk.php:225
+#: ../../addon.old/mathjax/mathjax.php:36
+msgid "Settings"
+msgstr "Configurações"
+
+#: ../../mod/uexport.php:72
+msgid "Export account"
+msgstr ""
+
+#: ../../mod/uexport.php:72
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr ""
+
+#: ../../mod/uexport.php:73
+msgid "Export all"
+msgstr ""
+
+#: ../../mod/uexport.php:73
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr ""
+
 #: ../../mod/install.php:117
 msgid "Friendica Social Communications Server - Setup"
 msgstr "Servidor de Comunicações Sociais Friendica - Configuração"
@@ -1216,7 +1326,7 @@ 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 Friendica em seu servidor web."
+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/install.php:475
 msgid "Errors encountered creating database tables."
@@ -1245,7 +1355,7 @@ msgstr "Conversão de tempo"
 msgid ""
 "Friendica provides this service for sharing events with other networks and "
 "friends in unknown timezones."
-msgstr "Friendica fornece este serviço para compartilhar eventos com outras redes e amigos em fusos horários diferentes."
+msgstr ""
 
 #: ../../mod/localtime.php:30
 #, php-format
@@ -1299,7 +1409,7 @@ msgid "is interested in:"
 msgstr "se interessa por:"
 
 #: ../../mod/match.php:58 ../../mod/suggest.php:59
-#: ../../include/contact_widgets.php:9 ../../boot.php:1174
+#: ../../include/contact_widgets.php:9 ../../boot.php:1216
 msgid "Connect"
 msgstr "Conectar"
 
@@ -1307,57 +1417,58 @@ msgstr "Conectar"
 msgid "No matches"
 msgstr "Nenhuma correspondência"
 
-#: ../../mod/lockview.php:34
+#: ../../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/lockview.php:43
+#: ../../mod/lockview.php:48
+#: ../../addon/remote_permissions/remote_permissions.php:123
 msgid "Visible to:"
 msgstr "Visível para:"
 
-#: ../../mod/content.php:119 ../../mod/network.php:544
+#: ../../mod/content.php:119 ../../mod/network.php:594
 msgid "No such group"
 msgstr "Este grupo não existe"
 
-#: ../../mod/content.php:130 ../../mod/network.php:555
+#: ../../mod/content.php:130 ../../mod/network.php:605
 msgid "Group is empty"
 msgstr "O grupo está vazio"
 
-#: ../../mod/content.php:134 ../../mod/network.php:559
+#: ../../mod/content.php:134 ../../mod/network.php:609
 msgid "Group: "
 msgstr "Grupo: "
 
-#: ../../mod/content.php:438 ../../mod/content.php:722
-#: ../../include/conversation.php:517 ../../object/Item.php:116
+#: ../../mod/content.php:438 ../../mod/content.php:723
+#: ../../include/conversation.php:568 ../../object/Item.php:117
 msgid "Select"
 msgstr "Selecionar"
 
-#: ../../mod/content.php:455 ../../mod/content.php:815
-#: ../../mod/content.php:816 ../../include/conversation.php:536
-#: ../../object/Item.php:227 ../../object/Item.php:228
+#: ../../mod/content.php:455 ../../mod/content.php:817
+#: ../../mod/content.php:818 ../../include/conversation.php:587
+#: ../../object/Item.php:234 ../../object/Item.php:235
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr "Ver o perfil de %s @ %s"
 
-#: ../../mod/content.php:465 ../../mod/content.php:827
-#: ../../include/conversation.php:556 ../../object/Item.php:240
+#: ../../mod/content.php:465 ../../mod/content.php:829
+#: ../../include/conversation.php:607 ../../object/Item.php:248
 #, php-format
 msgid "%s from %s"
 msgstr "%s de %s"
 
-#: ../../mod/content.php:480 ../../include/conversation.php:571
+#: ../../mod/content.php:480 ../../include/conversation.php:622
 msgid "View in context"
 msgstr "Ver no contexto"
 
-#: ../../mod/content.php:586 ../../object/Item.php:277
+#: ../../mod/content.php:586 ../../object/Item.php:288
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] "%d comentário"
 msgstr[1] "%d comentários"
 
-#: ../../mod/content.php:588 ../../include/text.php:1443
-#: ../../object/Item.php:279 ../../object/Item.php:292
+#: ../../mod/content.php:588 ../../include/text.php:1446
+#: ../../object/Item.php:290 ../../object/Item.php:303
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] "comentário"
@@ -1365,96 +1476,98 @@ msgstr[1] "comentários"
 
 #: ../../mod/content.php:589 ../../addon/page/page.php:77
 #: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
-#: ../../include/contact_widgets.php:195 ../../boot.php:585
-#: ../../object/Item.php:280
+#: ../../include/contact_widgets.php:204 ../../boot.php:609
+#: ../../object/Item.php:291 ../../addon.old/page/page.php:77
+#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119
 msgid "show more"
 msgstr "exibir mais"
 
-#: ../../mod/content.php:667 ../../object/Item.php:196
+#: ../../mod/content.php:667 ../../object/Item.php:202
 msgid "like"
 msgstr "gostei"
 
-#: ../../mod/content.php:668 ../../object/Item.php:197
+#: ../../mod/content.php:668 ../../object/Item.php:203
 msgid "dislike"
 msgstr "não gostei"
 
-#: ../../mod/content.php:670 ../../object/Item.php:199
+#: ../../mod/content.php:670 ../../object/Item.php:205
 msgid "Share this"
 msgstr "Compartilhar isso"
 
-#: ../../mod/content.php:670 ../../object/Item.php:199
+#: ../../mod/content.php:670 ../../object/Item.php:205
 msgid "share"
 msgstr "compartilhar"
 
-#: ../../mod/content.php:694 ../../object/Item.php:559
+#: ../../mod/content.php:694 ../../object/Item.php:571
 msgid "Bold"
 msgstr "Negrito"
 
-#: ../../mod/content.php:695 ../../object/Item.php:560
+#: ../../mod/content.php:695 ../../object/Item.php:572
 msgid "Italic"
 msgstr "Itálico"
 
-#: ../../mod/content.php:696 ../../object/Item.php:561
+#: ../../mod/content.php:696 ../../object/Item.php:573
 msgid "Underline"
 msgstr "Sublinhado"
 
-#: ../../mod/content.php:697 ../../object/Item.php:562
+#: ../../mod/content.php:697 ../../object/Item.php:574
 msgid "Quote"
 msgstr "Citação"
 
-#: ../../mod/content.php:698 ../../object/Item.php:563
+#: ../../mod/content.php:698 ../../object/Item.php:575
 msgid "Code"
 msgstr "Código"
 
-#: ../../mod/content.php:699 ../../object/Item.php:564
+#: ../../mod/content.php:699 ../../object/Item.php:576
 msgid "Image"
 msgstr "Imagem"
 
-#: ../../mod/content.php:700 ../../object/Item.php:565
+#: ../../mod/content.php:700 ../../object/Item.php:577
 msgid "Link"
 msgstr "Link"
 
-#: ../../mod/content.php:701 ../../object/Item.php:566
+#: ../../mod/content.php:701 ../../object/Item.php:578
 msgid "Video"
 msgstr "Vídeo"
 
-#: ../../mod/content.php:735 ../../object/Item.php:180
+#: ../../mod/content.php:736 ../../object/Item.php:181
 msgid "add star"
 msgstr "marcar com estrela"
 
-#: ../../mod/content.php:736 ../../object/Item.php:181
+#: ../../mod/content.php:737 ../../object/Item.php:182
 msgid "remove star"
 msgstr "remover estrela"
 
-#: ../../mod/content.php:737 ../../object/Item.php:182
+#: ../../mod/content.php:738 ../../object/Item.php:183
 msgid "toggle star status"
 msgstr "ativa/desativa o destaque"
 
-#: ../../mod/content.php:740 ../../object/Item.php:185
+#: ../../mod/content.php:741 ../../object/Item.php:186
 msgid "starred"
 msgstr "marcado com estrela"
 
-#: ../../mod/content.php:741 ../../object/Item.php:186
+#: ../../mod/content.php:742 ../../object/Item.php:191
 msgid "add tag"
 msgstr "adicionar tag"
 
-#: ../../mod/content.php:745 ../../object/Item.php:120
+#: ../../mod/content.php:746 ../../object/Item.php:121
 msgid "save to folder"
 msgstr "salvar na pasta"
 
-#: ../../mod/content.php:817 ../../object/Item.php:229
+#: ../../mod/content.php:819 ../../object/Item.php:236
 msgid "to"
 msgstr "para"
 
-#: ../../mod/content.php:818 ../../object/Item.php:230
+#: ../../mod/content.php:820 ../../object/Item.php:238
 msgid "Wall-to-Wall"
 msgstr "Mural-para-mural"
 
-#: ../../mod/content.php:819 ../../object/Item.php:231
+#: ../../mod/content.php:821 ../../object/Item.php:239
 msgid "via Wall-To-Wall:"
 msgstr "via Mural-para-mural"
 
-#: ../../mod/home.php:28 ../../addon/communityhome/communityhome.php:179
+#: ../../mod/home.php:30 ../../addon/communityhome/communityhome.php:179
+#: ../../addon.old/communityhome/communityhome.php:179
 #, php-format
 msgid "Welcome to %s"
 msgstr "Bem-vindo(a) a %s"
@@ -1463,488 +1576,490 @@ msgstr "Bem-vindo(a) a %s"
 msgid "Invalid request identifier."
 msgstr "Identificador de solicitação inválido"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:207
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210
 msgid "Discard"
 msgstr "Descartar"
 
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:160
-#: ../../mod/notifications.php:206 ../../mod/contacts.php:321
-#: ../../mod/contacts.php:375
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:163
+#: ../../mod/notifications.php:209 ../../mod/contacts.php:325
+#: ../../mod/contacts.php:379
 msgid "Ignore"
 msgstr "Ignorar"
 
-#: ../../mod/notifications.php:75
+#: ../../mod/notifications.php:78
 msgid "System"
 msgstr "Sistema"
 
-#: ../../mod/notifications.php:80 ../../include/nav.php:113
+#: ../../mod/notifications.php:83 ../../include/nav.php:113
 msgid "Network"
 msgstr "Rede"
 
-#: ../../mod/notifications.php:85 ../../mod/network.php:407
+#: ../../mod/notifications.php:88 ../../mod/network.php:444
 msgid "Personal"
 msgstr "Pessoal"
 
-#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:127
-#: ../../include/nav.php:77 ../../include/nav.php:115
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
+#: ../../include/nav.php:77 ../../include/nav.php:116
 msgid "Home"
 msgstr "Pessoal"
 
-#: ../../mod/notifications.php:95 ../../include/nav.php:121
+#: ../../mod/notifications.php:98 ../../include/nav.php:122
 msgid "Introductions"
 msgstr "Apresentações"
 
-#: ../../mod/notifications.php:100 ../../mod/message.php:176
-#: ../../include/nav.php:128
+#: ../../mod/notifications.php:103 ../../mod/message.php:180
+#: ../../include/nav.php:129
 msgid "Messages"
 msgstr "Mensagens"
 
-#: ../../mod/notifications.php:119
+#: ../../mod/notifications.php:122
 msgid "Show Ignored Requests"
 msgstr "Exibir solicitações ignoradas"
 
-#: ../../mod/notifications.php:119
+#: ../../mod/notifications.php:122
 msgid "Hide Ignored Requests"
 msgstr "Ocultar solicitações ignoradas"
 
-#: ../../mod/notifications.php:145 ../../mod/notifications.php:191
+#: ../../mod/notifications.php:148 ../../mod/notifications.php:194
 msgid "Notification type: "
 msgstr "Tipo de notificação:"
 
-#: ../../mod/notifications.php:146
+#: ../../mod/notifications.php:149
 msgid "Friend Suggestion"
 msgstr "Sugestão de amigo"
 
-#: ../../mod/notifications.php:148
+#: ../../mod/notifications.php:151
 #, php-format
 msgid "suggested by %s"
 msgstr "sugerido por %s"
 
-#: ../../mod/notifications.php:153 ../../mod/notifications.php:200
-#: ../../mod/contacts.php:381
+#: ../../mod/notifications.php:156 ../../mod/notifications.php:203
+#: ../../mod/contacts.php:385
 msgid "Hide this contact from others"
 msgstr "Ocultar este contato dos outros"
 
-#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
 msgid "Post a new friend activity"
 msgstr "Publicar a adição de amigo"
 
-#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
 msgid "if applicable"
 msgstr "se aplicável"
 
-#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
-#: ../../mod/admin.php:694
+#: ../../mod/notifications.php:160 ../../mod/notifications.php:207
+#: ../../mod/admin.php:697
 msgid "Approve"
 msgstr "Aprovar"
 
-#: ../../mod/notifications.php:177
+#: ../../mod/notifications.php:180
 msgid "Claims to be known to you: "
 msgstr "Alega ser conhecido por você: "
 
-#: ../../mod/notifications.php:177
+#: ../../mod/notifications.php:180
 msgid "yes"
 msgstr "sim"
 
-#: ../../mod/notifications.php:177
+#: ../../mod/notifications.php:180
 msgid "no"
 msgstr "não"
 
-#: ../../mod/notifications.php:184
+#: ../../mod/notifications.php:187
 msgid "Approve as: "
 msgstr "Aprovar como:"
 
-#: ../../mod/notifications.php:185
+#: ../../mod/notifications.php:188
 msgid "Friend"
 msgstr "Amigo"
 
-#: ../../mod/notifications.php:186
+#: ../../mod/notifications.php:189
 msgid "Sharer"
 msgstr "Compartilhador"
 
-#: ../../mod/notifications.php:186
+#: ../../mod/notifications.php:189
 msgid "Fan/Admirer"
 msgstr "Fã/Admirador"
 
-#: ../../mod/notifications.php:192
+#: ../../mod/notifications.php:195
 msgid "Friend/Connect Request"
 msgstr "Solicitação de amizade/conexão"
 
-#: ../../mod/notifications.php:192
+#: ../../mod/notifications.php:195
 msgid "New Follower"
 msgstr "Novo acompanhante"
 
-#: ../../mod/notifications.php:213
+#: ../../mod/notifications.php:216
 msgid "No introductions."
 msgstr "Sem apresentações."
 
-#: ../../mod/notifications.php:216 ../../include/nav.php:122
+#: ../../mod/notifications.php:219 ../../include/nav.php:123
 msgid "Notifications"
 msgstr "Notificações"
 
-#: ../../mod/notifications.php:253 ../../mod/notifications.php:378
-#: ../../mod/notifications.php:465
+#: ../../mod/notifications.php:256 ../../mod/notifications.php:381
+#: ../../mod/notifications.php:468
 #, php-format
 msgid "%s liked %s's post"
 msgstr "%s gostou da publicação de %s"
 
-#: ../../mod/notifications.php:262 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:474
+#: ../../mod/notifications.php:265 ../../mod/notifications.php:390
+#: ../../mod/notifications.php:477
 #, php-format
 msgid "%s disliked %s's post"
 msgstr "%s não gostou da publicação de %s"
 
-#: ../../mod/notifications.php:276 ../../mod/notifications.php:401
-#: ../../mod/notifications.php:488
+#: ../../mod/notifications.php:279 ../../mod/notifications.php:404
+#: ../../mod/notifications.php:491
 #, php-format
 msgid "%s is now friends with %s"
 msgstr "%s agora é amigo de %s"
 
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:408
+#: ../../mod/notifications.php:286 ../../mod/notifications.php:411
 #, php-format
 msgid "%s created a new post"
 msgstr "%s criou uma nova publicação"
 
-#: ../../mod/notifications.php:284 ../../mod/notifications.php:409
-#: ../../mod/notifications.php:497
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#: ../../mod/notifications.php:500
 #, php-format
 msgid "%s commented on %s's post"
 msgstr "%s comentou uma publicação de %s"
 
-#: ../../mod/notifications.php:298
+#: ../../mod/notifications.php:301
 msgid "No more network notifications."
 msgstr "Nenhuma notificação de rede."
 
-#: ../../mod/notifications.php:302
+#: ../../mod/notifications.php:305
 msgid "Network Notifications"
 msgstr "Notificações de rede"
 
-#: ../../mod/notifications.php:328 ../../mod/notify.php:61
+#: ../../mod/notifications.php:331 ../../mod/notify.php:61
 msgid "No more system notifications."
 msgstr "Não fazer notificações de sistema."
 
-#: ../../mod/notifications.php:332 ../../mod/notify.php:65
+#: ../../mod/notifications.php:335 ../../mod/notify.php:65
 msgid "System Notifications"
 msgstr "Notificações de sistema"
 
-#: ../../mod/notifications.php:423
+#: ../../mod/notifications.php:426
 msgid "No more personal notifications."
 msgstr "Nenhuma notificação pessoal."
 
-#: ../../mod/notifications.php:427
+#: ../../mod/notifications.php:430
 msgid "Personal Notifications"
 msgstr "Notificações pessoais"
 
-#: ../../mod/notifications.php:504
+#: ../../mod/notifications.php:507
 msgid "No more home notifications."
 msgstr "Não existe mais nenhuma notificação pessoal."
 
-#: ../../mod/notifications.php:508
+#: ../../mod/notifications.php:511
 msgid "Home Notifications"
 msgstr "Notificações pessoais"
 
-#: ../../mod/contacts.php:84 ../../mod/contacts.php:164
+#: ../../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/contacts.php:98
+#: ../../mod/contacts.php:99
 msgid "Could not locate selected profile."
 msgstr "Não foi possível localizar o perfil selecionado."
 
-#: ../../mod/contacts.php:121
+#: ../../mod/contacts.php:122
 msgid "Contact updated."
 msgstr "O contato foi atualizado."
 
-#: ../../mod/contacts.php:186
+#: ../../mod/contacts.php:187
 msgid "Contact has been blocked"
 msgstr "O contato foi bloqueado"
 
-#: ../../mod/contacts.php:186
+#: ../../mod/contacts.php:187
 msgid "Contact has been unblocked"
 msgstr "O contato foi desbloqueado"
 
-#: ../../mod/contacts.php:200
+#: ../../mod/contacts.php:201
 msgid "Contact has been ignored"
 msgstr "O contato foi ignorado"
 
-#: ../../mod/contacts.php:200
+#: ../../mod/contacts.php:201
 msgid "Contact has been unignored"
 msgstr "O contato deixou de ser ignorado"
 
-#: ../../mod/contacts.php:216
+#: ../../mod/contacts.php:220
 msgid "Contact has been archived"
 msgstr "O contato foi arquivado"
 
-#: ../../mod/contacts.php:216
+#: ../../mod/contacts.php:220
 msgid "Contact has been unarchived"
 msgstr "O contato foi desarquivado"
 
-#: ../../mod/contacts.php:229
+#: ../../mod/contacts.php:233
 msgid "Contact has been removed."
 msgstr "O contato foi removido."
 
-#: ../../mod/contacts.php:263
+#: ../../mod/contacts.php:267
 #, php-format
 msgid "You are mutual friends with %s"
 msgstr "Você possui uma amizade mútua com %s"
 
-#: ../../mod/contacts.php:267
+#: ../../mod/contacts.php:271
 #, php-format
 msgid "You are sharing with %s"
 msgstr "Você está compartilhando com %s"
 
-#: ../../mod/contacts.php:272
+#: ../../mod/contacts.php:276
 #, php-format
 msgid "%s is sharing with you"
 msgstr "%s está compartilhando com você"
 
-#: ../../mod/contacts.php:289
+#: ../../mod/contacts.php:293
 msgid "Private communications are not available for this contact."
 msgstr "As comunicações privadas não estão disponíveis para este contato."
 
-#: ../../mod/contacts.php:292
+#: ../../mod/contacts.php:296
 msgid "Never"
 msgstr "Nunca"
 
-#: ../../mod/contacts.php:296
+#: ../../mod/contacts.php:300
 msgid "(Update was successful)"
 msgstr "(A atualização foi bem sucedida)"
 
-#: ../../mod/contacts.php:296
+#: ../../mod/contacts.php:300
 msgid "(Update was not successful)"
 msgstr "(A atualização não foi bem sucedida)"
 
-#: ../../mod/contacts.php:298
+#: ../../mod/contacts.php:302
 msgid "Suggest friends"
 msgstr "Sugerir amigos"
 
-#: ../../mod/contacts.php:302
+#: ../../mod/contacts.php:306
 #, php-format
 msgid "Network type: %s"
 msgstr "Tipo de rede: %s"
 
-#: ../../mod/contacts.php:305 ../../include/contact_widgets.php:190
+#: ../../mod/contacts.php:309 ../../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/contacts.php:310
+#: ../../mod/contacts.php:314
 msgid "View all contacts"
 msgstr "Ver todos os contatos"
 
-#: ../../mod/contacts.php:315 ../../mod/contacts.php:374
-#: ../../mod/admin.php:698
+#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
+#: ../../mod/admin.php:701
 msgid "Unblock"
 msgstr "Desbloquear"
 
-#: ../../mod/contacts.php:315 ../../mod/contacts.php:374
-#: ../../mod/admin.php:697
+#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
+#: ../../mod/admin.php:700
 msgid "Block"
 msgstr "Bloquear"
 
-#: ../../mod/contacts.php:318
+#: ../../mod/contacts.php:322
 msgid "Toggle Blocked status"
 msgstr "Alternar o status de bloqueio"
 
-#: ../../mod/contacts.php:321 ../../mod/contacts.php:375
+#: ../../mod/contacts.php:325 ../../mod/contacts.php:379
 msgid "Unignore"
 msgstr "Deixar de ignorar"
 
-#: ../../mod/contacts.php:324
+#: ../../mod/contacts.php:328
 msgid "Toggle Ignored status"
 msgstr "Alternar o status de ignorado"
 
-#: ../../mod/contacts.php:328
+#: ../../mod/contacts.php:332
 msgid "Unarchive"
 msgstr "Desarquivar"
 
-#: ../../mod/contacts.php:328
+#: ../../mod/contacts.php:332
 msgid "Archive"
 msgstr "Arquivar"
 
-#: ../../mod/contacts.php:331
+#: ../../mod/contacts.php:335
 msgid "Toggle Archive status"
 msgstr "Alternar o status de arquivamento"
 
-#: ../../mod/contacts.php:334
+#: ../../mod/contacts.php:338
 msgid "Repair"
 msgstr "Reparar"
 
-#: ../../mod/contacts.php:337
+#: ../../mod/contacts.php:341
 msgid "Advanced Contact Settings"
 msgstr "Configurações avançadas do contato"
 
-#: ../../mod/contacts.php:343
+#: ../../mod/contacts.php:347
 msgid "Communications lost with this contact!"
 msgstr "As comunicações com esse contato foram perdidas!"
 
-#: ../../mod/contacts.php:346
+#: ../../mod/contacts.php:350
 msgid "Contact Editor"
 msgstr "Editor de contatos"
 
-#: ../../mod/contacts.php:349
+#: ../../mod/contacts.php:353
 msgid "Profile Visibility"
 msgstr "Visibilidade do perfil"
 
-#: ../../mod/contacts.php:350
+#: ../../mod/contacts.php:354
 #, 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/contacts.php:351
+#: ../../mod/contacts.php:355
 msgid "Contact Information / Notes"
 msgstr "Informações sobre o contato / Anotações"
 
-#: ../../mod/contacts.php:352
+#: ../../mod/contacts.php:356
 msgid "Edit contact notes"
 msgstr "Editar as anotações do contato"
 
-#: ../../mod/contacts.php:357 ../../mod/contacts.php:549
+#: ../../mod/contacts.php:361 ../../mod/contacts.php:553
 #: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
 #, php-format
 msgid "Visit %s's profile [%s]"
 msgstr "Visitar o perfil de %s [%s]"
 
-#: ../../mod/contacts.php:358
+#: ../../mod/contacts.php:362
 msgid "Block/Unblock contact"
 msgstr "Bloquear/desbloquear o contato"
 
-#: ../../mod/contacts.php:359
+#: ../../mod/contacts.php:363
 msgid "Ignore contact"
 msgstr "Ignorar o contato"
 
-#: ../../mod/contacts.php:360
+#: ../../mod/contacts.php:364
 msgid "Repair URL settings"
 msgstr "Reparar as definições de URL"
 
-#: ../../mod/contacts.php:361
+#: ../../mod/contacts.php:365
 msgid "View conversations"
 msgstr "Ver as conversas"
 
-#: ../../mod/contacts.php:363
+#: ../../mod/contacts.php:367
 msgid "Delete contact"
 msgstr "Excluir o contato"
 
-#: ../../mod/contacts.php:367
+#: ../../mod/contacts.php:371
 msgid "Last update:"
 msgstr "Última atualização:"
 
-#: ../../mod/contacts.php:369
+#: ../../mod/contacts.php:373
 msgid "Update public posts"
 msgstr "Atualizar publicações públicas"
 
-#: ../../mod/contacts.php:371 ../../mod/admin.php:1170
+#: ../../mod/contacts.php:375 ../../mod/admin.php:1173
 msgid "Update now"
 msgstr "Atualizar agora"
 
-#: ../../mod/contacts.php:378
+#: ../../mod/contacts.php:382
 msgid "Currently blocked"
 msgstr "Atualmente bloqueado"
 
-#: ../../mod/contacts.php:379
+#: ../../mod/contacts.php:383
 msgid "Currently ignored"
 msgstr "Atualmente ignorado"
 
-#: ../../mod/contacts.php:380
+#: ../../mod/contacts.php:384
 msgid "Currently archived"
 msgstr "Atualmente arquivado"
 
-#: ../../mod/contacts.php:381
+#: ../../mod/contacts.php:385
 msgid ""
 "Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr "Respostas/Gostar associados às suas publicações <strong>podem</strong> estar visíveis"
 
-#: ../../mod/contacts.php:434
+#: ../../mod/contacts.php:438
 msgid "Suggestions"
 msgstr "Sugestões"
 
-#: ../../mod/contacts.php:437
+#: ../../mod/contacts.php:441
 msgid "Suggest potential friends"
 msgstr "Sugerir amigos em potencial"
 
-#: ../../mod/contacts.php:440 ../../mod/group.php:191
+#: ../../mod/contacts.php:444 ../../mod/group.php:191
 msgid "All Contacts"
 msgstr "Todos os contatos"
 
-#: ../../mod/contacts.php:443
+#: ../../mod/contacts.php:447
 msgid "Show all contacts"
 msgstr "Exibe todos os contatos"
 
-#: ../../mod/contacts.php:446
+#: ../../mod/contacts.php:450
 msgid "Unblocked"
 msgstr "Desbloquear"
 
-#: ../../mod/contacts.php:449
+#: ../../mod/contacts.php:453
 msgid "Only show unblocked contacts"
 msgstr "Exibe somente contatos desbloqueados"
 
-#: ../../mod/contacts.php:453
+#: ../../mod/contacts.php:457
 msgid "Blocked"
 msgstr "Bloqueado"
 
-#: ../../mod/contacts.php:456
+#: ../../mod/contacts.php:460
 msgid "Only show blocked contacts"
 msgstr "Exibe somente contatos bloqueados"
 
-#: ../../mod/contacts.php:460
+#: ../../mod/contacts.php:464
 msgid "Ignored"
 msgstr "Ignorados"
 
-#: ../../mod/contacts.php:463
+#: ../../mod/contacts.php:467
 msgid "Only show ignored contacts"
 msgstr "Exibe somente contatos ignorados"
 
-#: ../../mod/contacts.php:467
+#: ../../mod/contacts.php:471
 msgid "Archived"
 msgstr "Arquivados"
 
-#: ../../mod/contacts.php:470
+#: ../../mod/contacts.php:474
 msgid "Only show archived contacts"
 msgstr "Exibe somente contatos arquivados"
 
-#: ../../mod/contacts.php:474
+#: ../../mod/contacts.php:478
 msgid "Hidden"
 msgstr "Ocultos"
 
-#: ../../mod/contacts.php:477
+#: ../../mod/contacts.php:481
 msgid "Only show hidden contacts"
 msgstr "Exibe somente contatos ocultos"
 
-#: ../../mod/contacts.php:525
+#: ../../mod/contacts.php:529
 msgid "Mutual Friendship"
 msgstr "Amizade mútua"
 
-#: ../../mod/contacts.php:529
+#: ../../mod/contacts.php:533
 msgid "is a fan of yours"
 msgstr "é um fã seu"
 
-#: ../../mod/contacts.php:533
+#: ../../mod/contacts.php:537
 msgid "you are a fan of"
 msgstr "você é um fã de"
 
-#: ../../mod/contacts.php:550 ../../mod/nogroup.php:41
+#: ../../mod/contacts.php:554 ../../mod/nogroup.php:41
 msgid "Edit contact"
 msgstr "Editar o contato"
 
-#: ../../mod/contacts.php:571 ../../view/theme/diabook/theme.php:129
-#: ../../include/nav.php:139
+#: ../../mod/contacts.php:575 ../../view/theme/diabook/theme.php:89
+#: ../../include/nav.php:142
 msgid "Contacts"
 msgstr "Contatos"
 
-#: ../../mod/contacts.php:575
+#: ../../mod/contacts.php:579
 msgid "Search your contacts"
 msgstr "Pesquisar seus contatos"
 
-#: ../../mod/contacts.php:576 ../../mod/directory.php:59
+#: ../../mod/contacts.php:580 ../../mod/directory.php:59
+#: ../../addon/forumdirectory/forumdirectory.php:81
 msgid "Finding: "
 msgstr "Pesquisando: "
 
-#: ../../mod/contacts.php:577 ../../mod/directory.php:61
+#: ../../mod/contacts.php:581 ../../mod/directory.php:61
+#: ../../addon/forumdirectory/forumdirectory.php:83
 #: ../../include/contact_widgets.php:33
 msgid "Find"
 msgstr "Pesquisar"
@@ -1963,13 +2078,17 @@ msgid "Password reset requested at %s"
 msgstr "Foi feita uma solicitação de reiniciação da senha em %s"
 
 #: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
-#: ../../mod/register.php:90 ../../mod/register.php:144
+#: ../../mod/register.php:91 ../../mod/register.php:145
 #: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
 #: ../../addon/facebook/facebook.php:702
 #: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
 #: ../../addon/public_server/public_server.php:62
-#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3301
-#: ../../boot.php:798
+#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3365
+#: ../../boot.php:824 ../../addon.old/facebook/facebook.php:702
+#: ../../addon.old/facebook/facebook.php:1200
+#: ../../addon.old/fbpost/fbpost.php:661
+#: ../../addon.old/public_server/public_server.php:62
+#: ../../addon.old/testdrive/testdrive.php:67
 msgid "Administrator"
 msgstr "Administrador"
 
@@ -1979,7 +2098,7 @@ msgid ""
 "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/lostpass.php:83 ../../boot.php:935
+#: ../../mod/lostpass.php:83 ../../boot.php:963
 msgid "Password Reset"
 msgstr "Reiniciar a senha"
 
@@ -2023,553 +2142,549 @@ msgstr "Identificação ou e-mail: "
 msgid "Reset"
 msgstr "Reiniciar"
 
-#: ../../mod/settings.php:30 ../../include/nav.php:137
-msgid "Account settings"
-msgstr "Configurações da conta"
-
 #: ../../mod/settings.php:35
-msgid "Display settings"
-msgstr "Configurações de exibição"
-
-#: ../../mod/settings.php:41
-msgid "Connector settings"
-msgstr "Configurações do conector"
-
-#: ../../mod/settings.php:46
-msgid "Plugin settings"
-msgstr "Configurações dos plugins"
-
-#: ../../mod/settings.php:51
-msgid "Connected apps"
-msgstr "Aplicações conectadas"
-
-#: ../../mod/settings.php:56
-msgid "Export personal data"
-msgstr "Exportar dados pessoais"
-
-#: ../../mod/settings.php:61
-msgid "Remove account"
-msgstr "Remover a conta"
-
-#: ../../mod/settings.php:69 ../../mod/newmember.php:22
-#: ../../mod/admin.php:785 ../../mod/admin.php:990
-#: ../../addon/dav/friendica/layout.fnk.php:225
-#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643
-#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137
-msgid "Settings"
-msgstr "Configurações"
+msgid "Additional features"
+msgstr ""
 
-#: ../../mod/settings.php:113
+#: ../../mod/settings.php:118
 msgid "Missing some important data!"
 msgstr "Está faltando algum dado importante!"
 
-#: ../../mod/settings.php:116 ../../mod/settings.php:569
+#: ../../mod/settings.php:121 ../../mod/settings.php:585
 msgid "Update"
 msgstr "Atualizar"
 
-#: ../../mod/settings.php:221
+#: ../../mod/settings.php:226
 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:226
+#: ../../mod/settings.php:231
 msgid "Email settings updated."
 msgstr "As configurações de e-mail foram atualizadas."
 
-#: ../../mod/settings.php:290
+#: ../../mod/settings.php:246
+msgid "Features updated"
+msgstr ""
+
+#: ../../mod/settings.php:306
 msgid "Passwords do not match. Password unchanged."
 msgstr "As senhas não correspondem. A senha não foi modificada."
 
-#: ../../mod/settings.php:295
+#: ../../mod/settings.php:311
 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:306
+#: ../../mod/settings.php:322
 msgid "Password changed."
 msgstr "A senha foi modificada."
 
-#: ../../mod/settings.php:308
+#: ../../mod/settings.php:324
 msgid "Password update failed. Please try again."
 msgstr "Não foi possível atualizar a senha. Por favor, tente novamente."
 
-#: ../../mod/settings.php:373
+#: ../../mod/settings.php:389
 msgid " Please use a shorter name."
 msgstr " Por favor, use um nome mais curto."
 
-#: ../../mod/settings.php:375
+#: ../../mod/settings.php:391
 msgid " Name too short."
 msgstr " O nome é muito curto."
 
-#: ../../mod/settings.php:381
+#: ../../mod/settings.php:397
 msgid " Not valid email."
 msgstr " Não é um e-mail válido."
 
-#: ../../mod/settings.php:383
+#: ../../mod/settings.php:399
 msgid " Cannot change to that email."
 msgstr " Não foi possível alterar para esse e-mail."
 
-#: ../../mod/settings.php:437
+#: ../../mod/settings.php:453
 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:441
+#: ../../mod/settings.php:457
 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:471 ../../addon/facebook/facebook.php:495
-#: ../../addon/fbpost/fbpost.php:144 ../../addon/impressum/impressum.php:78
+#: ../../mod/settings.php:487 ../../addon/facebook/facebook.php:495
+#: ../../addon/fbpost/fbpost.php:144
+#: ../../addon/remote_permissions/remote_permissions.php:204
+#: ../../addon/impressum/impressum.php:78
 #: ../../addon/openstreetmap/openstreetmap.php:80
 #: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
-#: ../../addon/twitter/twitter.php:389
+#: ../../addon/twitter/twitter.php:501
+#: ../../addon.old/facebook/facebook.php:495
+#: ../../addon.old/fbpost/fbpost.php:144
+#: ../../addon.old/impressum/impressum.php:78
+#: ../../addon.old/openstreetmap/openstreetmap.php:80
+#: ../../addon.old/mathjax/mathjax.php:66 ../../addon.old/piwik/piwik.php:105
+#: ../../addon.old/twitter/twitter.php:389
 msgid "Settings updated."
 msgstr "As configurações foram atualizadas."
 
-#: ../../mod/settings.php:542 ../../mod/settings.php:568
-#: ../../mod/settings.php:604
+#: ../../mod/settings.php:558 ../../mod/settings.php:584
+#: ../../mod/settings.php:620
 msgid "Add application"
 msgstr "Adicionar aplicação"
 
-#: ../../mod/settings.php:546 ../../mod/settings.php:572
-#: ../../addon/statusnet/statusnet.php:570
+#: ../../mod/settings.php:562 ../../mod/settings.php:588
+#: ../../addon/statusnet/statusnet.php:679
+#: ../../addon.old/statusnet/statusnet.php:570
 msgid "Consumer Key"
 msgstr "Chave do consumidor"
 
-#: ../../mod/settings.php:547 ../../mod/settings.php:573
-#: ../../addon/statusnet/statusnet.php:569
+#: ../../mod/settings.php:563 ../../mod/settings.php:589
+#: ../../addon/statusnet/statusnet.php:678
+#: ../../addon.old/statusnet/statusnet.php:569
 msgid "Consumer Secret"
 msgstr "Segredo do consumidor"
 
-#: ../../mod/settings.php:548 ../../mod/settings.php:574
+#: ../../mod/settings.php:564 ../../mod/settings.php:590
 msgid "Redirect"
 msgstr "Redirecionar"
 
-#: ../../mod/settings.php:549 ../../mod/settings.php:575
+#: ../../mod/settings.php:565 ../../mod/settings.php:591
 msgid "Icon url"
 msgstr "URL do ícone"
 
-#: ../../mod/settings.php:560
+#: ../../mod/settings.php:576
 msgid "You can't edit this application."
 msgstr "Você não pode editar esta aplicação."
 
-#: ../../mod/settings.php:603
+#: ../../mod/settings.php:619
 msgid "Connected Apps"
 msgstr "Aplicações conectadas"
 
-#: ../../mod/settings.php:607
+#: ../../mod/settings.php:623
 msgid "Client key starts with"
 msgstr "A chave do cliente inicia com"
 
-#: ../../mod/settings.php:608
+#: ../../mod/settings.php:624
 msgid "No name"
 msgstr "Sem nome"
 
-#: ../../mod/settings.php:609
+#: ../../mod/settings.php:625
 msgid "Remove authorization"
 msgstr "Remover autorização"
 
-#: ../../mod/settings.php:620
+#: ../../mod/settings.php:637
 msgid "No Plugin settings configured"
 msgstr "Não foi definida nenhuma configuração de plugin"
 
-#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123
+#: ../../mod/settings.php:645 ../../addon/widgets/widgets.php:123
+#: ../../addon.old/widgets/widgets.php:123
 msgid "Plugin Settings"
 msgstr "Configurações do plugin"
 
-#: ../../mod/settings.php:640 ../../mod/settings.php:641
+#: ../../mod/settings.php:659
+msgid "Off"
+msgstr ""
+
+#: ../../mod/settings.php:659
+msgid "On"
+msgstr ""
+
+#: ../../mod/settings.php:667
+msgid "Additional Features"
+msgstr ""
+
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "O suporte interno para conectividade de %s está %s"
 
-#: ../../mod/settings.php:640 ../../mod/settings.php:641
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
 msgid "enabled"
 msgstr "habilitado"
 
-#: ../../mod/settings.php:640 ../../mod/settings.php:641
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
 msgid "disabled"
 msgstr "desabilitado"
 
-#: ../../mod/settings.php:641
+#: ../../mod/settings.php:682
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:673
+#: ../../mod/settings.php:714
 msgid "Email access is disabled on this site."
 msgstr "O acesso ao e-mail está desabilitado neste site."
 
-#: ../../mod/settings.php:679
+#: ../../mod/settings.php:720
 msgid "Connector Settings"
 msgstr "Configurações do conector"
 
-#: ../../mod/settings.php:684
+#: ../../mod/settings.php:725
 msgid "Email/Mailbox Setup"
 msgstr "Configurações do e-mail/caixa postal"
 
-#: ../../mod/settings.php:685
+#: ../../mod/settings.php:726
 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:686
+#: ../../mod/settings.php:727
 msgid "Last successful email check:"
 msgstr "Última checagem bem sucedida de e-mail:"
 
-#: ../../mod/settings.php:688
+#: ../../mod/settings.php:729
 msgid "IMAP server name:"
 msgstr "Nome do servidor IMAP:"
 
-#: ../../mod/settings.php:689
+#: ../../mod/settings.php:730
 msgid "IMAP port:"
 msgstr "Porta do IMAP:"
 
-#: ../../mod/settings.php:690
+#: ../../mod/settings.php:731
 msgid "Security:"
 msgstr "Segurança:"
 
-#: ../../mod/settings.php:690 ../../mod/settings.php:695
+#: ../../mod/settings.php:731 ../../mod/settings.php:736
 #: ../../addon/dav/common/wdcal_edit.inc.php:191
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
 msgid "None"
 msgstr "Nenhuma"
 
-#: ../../mod/settings.php:691
+#: ../../mod/settings.php:732
 msgid "Email login name:"
 msgstr "Nome de usuário do e-mail:"
 
-#: ../../mod/settings.php:692
+#: ../../mod/settings.php:733
 msgid "Email password:"
 msgstr "Senha do e-mail:"
 
-#: ../../mod/settings.php:693
+#: ../../mod/settings.php:734
 msgid "Reply-to address:"
 msgstr "Endereço de resposta (Reply-to):"
 
-#: ../../mod/settings.php:694
+#: ../../mod/settings.php:735
 msgid "Send public posts to all email contacts:"
 msgstr "Enviar publicações públicas para todos os contatos de e-mail:"
 
-#: ../../mod/settings.php:695
+#: ../../mod/settings.php:736
 msgid "Action after import:"
 msgstr "Ação após a importação:"
 
-#: ../../mod/settings.php:695
+#: ../../mod/settings.php:736
 msgid "Mark as seen"
 msgstr "Marcar como visto"
 
-#: ../../mod/settings.php:695
+#: ../../mod/settings.php:736
 msgid "Move to folder"
 msgstr "Mover para pasta"
 
-#: ../../mod/settings.php:696
+#: ../../mod/settings.php:737
 msgid "Move to folder:"
 msgstr "Mover para pasta:"
 
-#: ../../mod/settings.php:727 ../../mod/admin.php:402
+#: ../../mod/settings.php:768 ../../mod/admin.php:404
 msgid "No special theme for mobile devices"
 msgstr "Nenhum tema especial para dispositivos móveis"
 
-#: ../../mod/settings.php:767
+#: ../../mod/settings.php:808
 msgid "Display Settings"
 msgstr "Configurações de exibição"
 
-#: ../../mod/settings.php:773 ../../mod/settings.php:784
+#: ../../mod/settings.php:814 ../../mod/settings.php:825
 msgid "Display Theme:"
 msgstr "Tema do perfil:"
 
-#: ../../mod/settings.php:774
+#: ../../mod/settings.php:815
 msgid "Mobile Theme:"
 msgstr "Tema para dispositivos móveis:"
 
-#: ../../mod/settings.php:775
+#: ../../mod/settings.php:816
 msgid "Update browser every xx seconds"
 msgstr "Atualizar o navegador a cada xx segundos"
 
-#: ../../mod/settings.php:775
+#: ../../mod/settings.php:816
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Mínimo de 10 segundos, não possui máximo"
 
-#: ../../mod/settings.php:776
+#: ../../mod/settings.php:817
 msgid "Number of items to display per page:"
 msgstr "Número de itens a serem exibidos por página:"
 
-#: ../../mod/settings.php:776
+#: ../../mod/settings.php:817
 msgid "Maximum of 100 items"
 msgstr "Máximo de 100 itens"
 
-#: ../../mod/settings.php:777
+#: ../../mod/settings.php:818
 msgid "Don't show emoticons"
 msgstr "Não exibir emoticons"
 
-#: ../../mod/settings.php:853
+#: ../../mod/settings.php:894
 msgid "Normal Account Page"
 msgstr "Página de conta normal"
 
-#: ../../mod/settings.php:854
+#: ../../mod/settings.php:895
 msgid "This account is a normal personal profile"
 msgstr "Essa conta é um perfil pessoal normal"
 
-#: ../../mod/settings.php:857
+#: ../../mod/settings.php:898
 msgid "Soapbox Page"
 msgstr "Página de vitrine"
 
-#: ../../mod/settings.php:858
+#: ../../mod/settings.php:899
 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/settings.php:861
+#: ../../mod/settings.php:902
 msgid "Community Forum/Celebrity Account"
 msgstr "Conta de fórum de comunidade/celebridade"
 
-#: ../../mod/settings.php:862
+#: ../../mod/settings.php:903
 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/settings.php:865
+#: ../../mod/settings.php:906
 msgid "Automatic Friend Page"
 msgstr "Página de amigo automático"
 
-#: ../../mod/settings.php:866
+#: ../../mod/settings.php:907
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos"
 
-#: ../../mod/settings.php:869
+#: ../../mod/settings.php:910
 msgid "Private Forum [Experimental]"
 msgstr "Fórum privado [Experimental]"
 
-#: ../../mod/settings.php:870
+#: ../../mod/settings.php:911
 msgid "Private forum - approved members only"
 msgstr "Fórum privado - somente membros aprovados"
 
-#: ../../mod/settings.php:882
+#: ../../mod/settings.php:923
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:882
+#: ../../mod/settings.php:923
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "(Opcional) Permitir o uso deste OpenID para entrar nesta conta"
 
-#: ../../mod/settings.php:892
+#: ../../mod/settings.php:933
 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/settings.php:898
+#: ../../mod/settings.php:939
 msgid "Publish your default profile in the global social directory?"
 msgstr "Publicar o seu perfil padrão no diretório social global?"
 
-#: ../../mod/settings.php:906
+#: ../../mod/settings.php:947
 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/settings.php:910
+#: ../../mod/settings.php:951
 msgid "Hide your profile details from unknown viewers?"
 msgstr "Ocultar os detalhes do seu perfil para pessoas desconhecidas?"
 
-#: ../../mod/settings.php:915
+#: ../../mod/settings.php:956
 msgid "Allow friends to post to your profile page?"
 msgstr "Permitir aos amigos publicarem na sua página de perfil?"
 
-#: ../../mod/settings.php:921
+#: ../../mod/settings.php:962
 msgid "Allow friends to tag your posts?"
 msgstr "Permitir aos amigos etiquetarem suas publicações?"
 
-#: ../../mod/settings.php:927
+#: ../../mod/settings.php:968
 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/settings.php:933
+#: ../../mod/settings.php:974
 msgid "Permit unknown people to send you private mail?"
 msgstr "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?"
 
-#: ../../mod/settings.php:941
+#: ../../mod/settings.php:982
 msgid "Profile is <strong>not published</strong>."
 msgstr "O perfil <strong>não está publicado</strong>."
 
-#: ../../mod/settings.php:944 ../../mod/profile_photo.php:248
+#: ../../mod/settings.php:985 ../../mod/profile_photo.php:248
 msgid "or"
 msgstr "ou"
 
-#: ../../mod/settings.php:949
+#: ../../mod/settings.php:990
 msgid "Your Identity Address is"
 msgstr "O endereço da sua identidade é"
 
-#: ../../mod/settings.php:960
+#: ../../mod/settings.php:1001
 msgid "Automatically expire posts after this many days:"
 msgstr "Expirar automaticamente publicações após tantos dias:"
 
-#: ../../mod/settings.php:960
+#: ../../mod/settings.php:1001
 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/settings.php:961
+#: ../../mod/settings.php:1002
 msgid "Advanced expiration settings"
 msgstr "Configurações avançadas de expiração"
 
-#: ../../mod/settings.php:962
+#: ../../mod/settings.php:1003
 msgid "Advanced Expiration"
 msgstr "Expiração avançada"
 
-#: ../../mod/settings.php:963
+#: ../../mod/settings.php:1004
 msgid "Expire posts:"
 msgstr "Expirar publicações:"
 
-#: ../../mod/settings.php:964
+#: ../../mod/settings.php:1005
 msgid "Expire personal notes:"
 msgstr "Expirar notas pessoais:"
 
-#: ../../mod/settings.php:965
+#: ../../mod/settings.php:1006
 msgid "Expire starred posts:"
 msgstr "Expirar publicações destacadas:"
 
-#: ../../mod/settings.php:966
+#: ../../mod/settings.php:1007
 msgid "Expire photos:"
 msgstr "Expirar fotos:"
 
-#: ../../mod/settings.php:967
+#: ../../mod/settings.php:1008
 msgid "Only expire posts by others:"
 msgstr "Expirar somente as publicações de outras pessoas:"
 
-#: ../../mod/settings.php:974
+#: ../../mod/settings.php:1015
 msgid "Account Settings"
 msgstr "Configurações da conta"
 
-#: ../../mod/settings.php:982
+#: ../../mod/settings.php:1023
 msgid "Password Settings"
 msgstr "Configurações da senha"
 
-#: ../../mod/settings.php:983
+#: ../../mod/settings.php:1024
 msgid "New Password:"
 msgstr "Nova senha:"
 
-#: ../../mod/settings.php:984
+#: ../../mod/settings.php:1025
 msgid "Confirm:"
 msgstr "Confirme:"
 
-#: ../../mod/settings.php:984
+#: ../../mod/settings.php:1025
 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/settings.php:988
+#: ../../mod/settings.php:1029
 msgid "Basic Settings"
 msgstr "Configurações básicas"
 
-#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15
+#: ../../mod/settings.php:1030 ../../include/profile_advanced.php:15
 msgid "Full Name:"
 msgstr "Nome completo:"
 
-#: ../../mod/settings.php:990
+#: ../../mod/settings.php:1031
 msgid "Email Address:"
 msgstr "Endereço de e-mail:"
 
-#: ../../mod/settings.php:991
+#: ../../mod/settings.php:1032
 msgid "Your Timezone:"
 msgstr "Seu fuso horário:"
 
-#: ../../mod/settings.php:992
+#: ../../mod/settings.php:1033
 msgid "Default Post Location:"
 msgstr "Localização padrão de suas publicações:"
 
-#: ../../mod/settings.php:993
+#: ../../mod/settings.php:1034
 msgid "Use Browser Location:"
 msgstr "Usar localizador do navegador:"
 
-#: ../../mod/settings.php:996
+#: ../../mod/settings.php:1037
 msgid "Security and Privacy Settings"
 msgstr "Configurações de segurança e privacidade"
 
-#: ../../mod/settings.php:998
+#: ../../mod/settings.php:1039
 msgid "Maximum Friend Requests/Day:"
 msgstr "Número máximo de requisições de amizade por dia:"
 
-#: ../../mod/settings.php:998 ../../mod/settings.php:1017
+#: ../../mod/settings.php:1039 ../../mod/settings.php:1058
 msgid "(to prevent spam abuse)"
 msgstr "(para prevenir abuso de spammers)"
 
-#: ../../mod/settings.php:999
+#: ../../mod/settings.php:1040
 msgid "Default Post Permissions"
 msgstr "Permissões padrão de publicação"
 
-#: ../../mod/settings.php:1000
+#: ../../mod/settings.php:1041
 msgid "(click to open/close)"
 msgstr "(clique para abrir/fechar)"
 
-#: ../../mod/settings.php:1017
+#: ../../mod/settings.php:1058
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Número máximo de mensagens privadas de pessoas desconhecidas, por dia:"
 
-#: ../../mod/settings.php:1020
+#: ../../mod/settings.php:1061
 msgid "Notification Settings"
 msgstr "Configurações de notificação"
 
-#: ../../mod/settings.php:1021
+#: ../../mod/settings.php:1062
 msgid "By default post a status message when:"
 msgstr "Por padrão, publicar uma mensagem de status ao:"
 
-#: ../../mod/settings.php:1022
+#: ../../mod/settings.php:1063
 msgid "accepting a friend request"
 msgstr "aceitar uma requisição de amizade"
 
-#: ../../mod/settings.php:1023
+#: ../../mod/settings.php:1064
 msgid "joining a forum/community"
 msgstr "associar-se a um fórum/comunidade"
 
-#: ../../mod/settings.php:1024
+#: ../../mod/settings.php:1065
 msgid "making an <em>interesting</em> profile change"
 msgstr "fazer uma modificação <em>interessante</em> em seu perfil"
 
-#: ../../mod/settings.php:1025
+#: ../../mod/settings.php:1066
 msgid "Send a notification email when:"
 msgstr "Enviar um e-mail de notificação sempre que:"
 
-#: ../../mod/settings.php:1026
+#: ../../mod/settings.php:1067
 msgid "You receive an introduction"
 msgstr "Você receber uma apresentação"
 
-#: ../../mod/settings.php:1027
+#: ../../mod/settings.php:1068
 msgid "Your introductions are confirmed"
 msgstr "Suas apresentações forem confirmadas"
 
-#: ../../mod/settings.php:1028
+#: ../../mod/settings.php:1069
 msgid "Someone writes on your profile wall"
 msgstr "Alguém escrever no mural do seu perfil"
 
-#: ../../mod/settings.php:1029
+#: ../../mod/settings.php:1070
 msgid "Someone writes a followup comment"
 msgstr "Alguém comentar a sua mensagem"
 
-#: ../../mod/settings.php:1030
+#: ../../mod/settings.php:1071
 msgid "You receive a private message"
 msgstr "Você receber uma mensagem privada"
 
-#: ../../mod/settings.php:1031
+#: ../../mod/settings.php:1072
 msgid "You receive a friend suggestion"
 msgstr "Você recebe uma suggestão de amigo"
 
-#: ../../mod/settings.php:1032
+#: ../../mod/settings.php:1073
 msgid "You are tagged in a post"
 msgstr "Você foi marcado em uma publicação"
 
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1074
 msgid "You are poked/prodded/etc. in a post"
 msgstr ""
 
-#: ../../mod/settings.php:1036
+#: ../../mod/settings.php:1077
 msgid "Advanced Account/Page Type Settings"
 msgstr "Conta avançada/Configurações do tipo de página"
 
-#: ../../mod/settings.php:1037
+#: ../../mod/settings.php:1078
 msgid "Change the behaviour of this account for special situations"
 msgstr "Modificar o comportamento desta conta em situações especiais"
 
-#: ../../mod/manage.php:91
+#: ../../mod/manage.php:94
 msgid "Manage Identities and/or Pages"
 msgstr "Gerenciar identidades e/ou páginas"
 
-#: ../../mod/manage.php:94
+#: ../../mod/manage.php:97
 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/manage.php:96
+#: ../../mod/manage.php:99
 msgid "Select an identity to manage: "
 msgstr "Selecione uma identidade para gerenciar: "
 
@@ -2577,63 +2692,64 @@ msgstr "Selecione uma identidade para gerenciar: "
 msgid "Search Results For:"
 msgstr "Resultados de Busca Por:"
 
-#: ../../mod/network.php:221 ../../mod/search.php:18
+#: ../../mod/network.php:224 ../../mod/search.php:21
 msgid "Remove term"
 msgstr "Remover o termo"
 
-#: ../../mod/network.php:230 ../../mod/search.php:27
+#: ../../mod/network.php:233 ../../mod/search.php:30
+#: ../../include/features.php:41
 msgid "Saved Searches"
 msgstr "Pesquisas salvas"
 
-#: ../../mod/network.php:231 ../../include/group.php:275
+#: ../../mod/network.php:234 ../../include/group.php:275
 msgid "add"
 msgstr "adicionar"
 
-#: ../../mod/network.php:394
+#: ../../mod/network.php:397
 msgid "Commented Order"
 msgstr "Ordem dos comentários"
 
-#: ../../mod/network.php:397
+#: ../../mod/network.php:400
 msgid "Sort by Comment Date"
 msgstr "Ordenar pela data do comentário"
 
-#: ../../mod/network.php:400
+#: ../../mod/network.php:403
 msgid "Posted Order"
 msgstr "Ordem das publicações"
 
-#: ../../mod/network.php:403
+#: ../../mod/network.php:406
 msgid "Sort by Post Date"
 msgstr "Ordenar pela data de publicação"
 
-#: ../../mod/network.php:410
+#: ../../mod/network.php:447
 msgid "Posts that mention or involve you"
 msgstr "Publicações que mencionem ou envolvam você"
 
-#: ../../mod/network.php:413
+#: ../../mod/network.php:453
 msgid "New"
 msgstr "Nova"
 
-#: ../../mod/network.php:416
+#: ../../mod/network.php:456
 msgid "Activity Stream - by date"
 msgstr "Fluxo de atividades - por data"
 
-#: ../../mod/network.php:419
-msgid "Starred"
-msgstr "Destacada"
-
-#: ../../mod/network.php:422
-msgid "Favourite Posts"
-msgstr "Publicações favoritas"
-
-#: ../../mod/network.php:425
+#: ../../mod/network.php:462
 msgid "Shared Links"
 msgstr "Links compartilhados"
 
-#: ../../mod/network.php:428
+#: ../../mod/network.php:465
 msgid "Interesting Links"
 msgstr "Links interessantes"
 
-#: ../../mod/network.php:496
+#: ../../mod/network.php:471
+msgid "Starred"
+msgstr "Destacada"
+
+#: ../../mod/network.php:474
+msgid "Favourite Posts"
+msgstr "Publicações favoritas"
+
+#: ../../mod/network.php:546
 #, php-format
 msgid "Warning: This group contains %s member from an insecure network."
 msgid_plural ""
@@ -2641,41 +2757,77 @@ msgid_plural ""
 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/network.php:499
+#: ../../mod/network.php:549
 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/network.php:569
+#: ../../mod/network.php:619
 msgid "Contact: "
 msgstr "Contato: "
 
-#: ../../mod/network.php:571
+#: ../../mod/network.php:621
 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/network.php:576
+#: ../../mod/network.php:626
 msgid "Invalid contact."
 msgstr "Contato inválido."
 
-#: ../../mod/notes.php:44 ../../boot.php:1707
+#: ../../mod/notes.php:44 ../../boot.php:1755
 msgid "Personal Notes"
 msgstr "Notas pessoais"
 
 #: ../../mod/notes.php:63 ../../mod/filer.php:30
 #: ../../addon/facebook/facebook.php:770
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:263
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:281
 #: ../../addon/fbpost/fbpost.php:267
 #: ../../addon/dav/friendica/layout.fnk.php:441
-#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681
+#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:688
+#: ../../addon.old/facebook/facebook.php:770
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
+#: ../../addon.old/fbpost/fbpost.php:267
+#: ../../addon.old/dav/friendica/layout.fnk.php:441
+#: ../../addon.old/dav/friendica/layout.fnk.php:488
 msgid "Save"
 msgstr "Salvar"
 
+#: ../../mod/uimport.php:50 ../../mod/register.php:190
+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/uimport.php:64
+msgid "Import"
+msgstr ""
+
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr ""
+
+#: ../../mod/uimport.php:67
+msgid ""
+"You can import an account from another Friendica server. <br>\r\n"
+"                            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.<br>\r\n"
+"                            <b>This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"
+msgstr ""
+
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr ""
+
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your accont, go to \"Settings->Export your porsonal data\" and "
+"select \"Export account\""
+msgstr ""
+
 #: ../../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/wallmessage.php:56 ../../mod/message.php:59
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
 msgid "No recipient selected."
 msgstr "Não foi selecionado nenhum destinatário."
 
@@ -2683,15 +2835,15 @@ msgstr "Não foi selecionado nenhum destinatário."
 msgid "Unable to check your home location."
 msgstr "Não foi possível verificar a sua localização."
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:66
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
 msgid "Message could not be sent."
 msgstr "Não foi possível enviar a mensagem."
 
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:69
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
 msgid "Message collection failure."
 msgstr "Falha na coleta de mensagens."
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:72
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
 msgid "Message sent."
 msgstr "A mensagem foi enviada."
 
@@ -2700,12 +2852,12 @@ msgid "No recipient."
 msgstr "Nenhum destinatário."
 
 #: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
-#: ../../mod/message.php:242 ../../mod/message.php:250
-#: ../../include/conversation.php:846 ../../include/conversation.php:863
+#: ../../mod/message.php:249 ../../mod/message.php:257
+#: ../../include/conversation.php:905 ../../include/conversation.php:923
 msgid "Please enter a link URL:"
 msgstr "Por favor, digite uma URL:"
 
-#: ../../mod/wallmessage.php:138 ../../mod/message.php:278
+#: ../../mod/wallmessage.php:138 ../../mod/message.php:285
 msgid "Send Private Message"
 msgstr "Enviar mensagem privada"
 
@@ -2716,18 +2868,18 @@ msgid ""
 "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/wallmessage.php:140 ../../mod/message.php:279
-#: ../../mod/message.php:469
+#: ../../mod/wallmessage.php:140 ../../mod/message.php:286
+#: ../../mod/message.php:476
 msgid "To:"
 msgstr "Para:"
 
-#: ../../mod/wallmessage.php:141 ../../mod/message.php:284
-#: ../../mod/message.php:471
+#: ../../mod/wallmessage.php:141 ../../mod/message.php:291
+#: ../../mod/message.php:478
 msgid "Subject:"
 msgstr "Assunto:"
 
-#: ../../mod/wallmessage.php:147 ../../mod/message.php:288
-#: ../../mod/message.php:474 ../../mod/invite.php:113
+#: ../../mod/wallmessage.php:147 ../../mod/message.php:295
+#: ../../mod/message.php:481 ../../mod/invite.php:113
 msgid "Your message:"
 msgstr "Sua mensagem:"
 
@@ -2782,9 +2934,9 @@ msgid ""
 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/newmember.php:32 ../../mod/profperm.php:103
-#: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7
+#: ../../view/theme/diabook/theme.php:88 ../../include/profile_advanced.php:7
 #: ../../include/profile_advanced.php:84 ../../include/nav.php:50
-#: ../../boot.php:1683
+#: ../../boot.php:1731
 msgid "Profile"
 msgstr "Perfil "
 
@@ -2828,6 +2980,8 @@ msgstr "Conexões"
 #: ../../mod/newmember.php:49 ../../mod/newmember.php:51
 #: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239
 #: ../../include/contact_selectors.php:81
+#: ../../addon.old/facebook/facebook.php:728
+#: ../../addon.old/fbpost/fbpost.php:239
 msgid "Facebook"
 msgstr "Facebook"
 
@@ -2913,7 +3067,7 @@ 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 ""
+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/newmember.php:78
 msgid "Getting Help"
@@ -2953,7 +3107,7 @@ msgstr "O grupo não foi encontrado."
 msgid "Group name changed."
 msgstr "O nome do grupo foi alterado."
 
-#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:316
+#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:332
 msgid "Permission denied"
 msgstr "Permissão negada"
 
@@ -3005,95 +3159,89 @@ msgstr "Todos os contatos (com acesso a perfil seguro)"
 msgid "No contacts."
 msgstr "Nenhum contato."
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:618
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:625
 msgid "View Contacts"
 msgstr "Ver contatos"
 
-#: ../../mod/register.php:88 ../../mod/regmod.php:52
+#: ../../mod/register.php:89 ../../mod/regmod.php:52
 #, php-format
 msgid "Registration details for %s"
 msgstr "Detalhes do registro de %s"
 
-#: ../../mod/register.php:96
+#: ../../mod/register.php:97
 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/register.php:100
+#: ../../mod/register.php:101
 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/register.php:105
+#: ../../mod/register.php:106
 msgid "Your registration can not be processed."
 msgstr "Não foi possível processar o seu registro."
 
-#: ../../mod/register.php:142
+#: ../../mod/register.php:143
 #, php-format
 msgid "Registration request at %s"
 msgstr "Solicitação de registro em %s"
 
-#: ../../mod/register.php:151
+#: ../../mod/register.php:152
 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/register.php:189
-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/register.php:217
+#: ../../mod/register.php:218
 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/register.php:218
+#: ../../mod/register.php:219
 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/register.php:219
+#: ../../mod/register.php:220
 msgid "Your OpenID (optional): "
 msgstr "Seu OpenID (opcional): "
 
-#: ../../mod/register.php:233
+#: ../../mod/register.php:234
 msgid "Include your profile in member directory?"
 msgstr "Incluir o seu perfil no diretório de membros?"
 
-#: ../../mod/register.php:255
+#: ../../mod/register.php:256
 msgid "Membership on this site is by invitation only."
 msgstr "A associação a este site só pode ser feita mediante convite."
 
-#: ../../mod/register.php:256
+#: ../../mod/register.php:257
 msgid "Your invitation ID: "
 msgstr "A ID do seu convite: "
 
-#: ../../mod/register.php:259 ../../mod/admin.php:444
+#: ../../mod/register.php:260 ../../mod/admin.php:446
 msgid "Registration"
 msgstr "Registro"
 
-#: ../../mod/register.php:267
+#: ../../mod/register.php:268
 msgid "Your Full Name (e.g. Joe Smith): "
 msgstr "Seu nome completo (ex: José da Silva): "
 
-#: ../../mod/register.php:268
+#: ../../mod/register.php:269
 msgid "Your Email Address: "
 msgstr "Seu endereço de e-mail: "
 
-#: ../../mod/register.php:269
+#: ../../mod/register.php:270
 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/register.php:270
+#: ../../mod/register.php:271
 msgid "Choose a nickname: "
 msgstr "Escolha uma identificação: "
 
-#: ../../mod/register.php:273 ../../include/nav.php:81 ../../boot.php:897
+#: ../../mod/register.php:274 ../../include/nav.php:81 ../../boot.php:923
 msgid "Register"
 msgstr "Registrar"
 
@@ -3101,21 +3249,35 @@ msgstr "Registrar"
 msgid "People Search"
 msgstr "Pesquisar pessoas"
 
+#: ../../mod/like.php:145 ../../mod/subthread.php:87 ../../mod/tagger.php:62
+#: ../../addon/communityhome/communityhome.php:163
+#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1442
+#: ../../include/diaspora.php:1848 ../../include/conversation.php:125
+#: ../../include/conversation.php:253
+#: ../../addon.old/communityhome/communityhome.php:163
+msgid "photo"
+msgstr "foto"
+
 #: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/subthread.php:87
 #: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1598
 #: ../../addon/communityhome/communityhome.php:158
 #: ../../addon/communityhome/communityhome.php:167
-#: ../../view/theme/diabook/theme.php:565
-#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1835
+#: ../../view/theme/diabook/theme.php:459
+#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1848
 #: ../../include/conversation.php:120 ../../include/conversation.php:129
 #: ../../include/conversation.php:248 ../../include/conversation.php:257
+#: ../../addon.old/facebook/facebook.php:1598
+#: ../../addon.old/communityhome/communityhome.php:158
+#: ../../addon.old/communityhome/communityhome.php:167
 msgid "status"
 msgstr "status"
 
 #: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602
 #: ../../addon/communityhome/communityhome.php:172
-#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1851
+#: ../../view/theme/diabook/theme.php:473 ../../include/diaspora.php:1864
 #: ../../include/conversation.php:136
+#: ../../addon.old/facebook/facebook.php:1602
+#: ../../addon.old/communityhome/communityhome.php:172
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
 msgstr "%1$s gosta de %3$s de %2$s"
@@ -3126,8 +3288,8 @@ msgid "%1$s doesn't like %2$s's %3$s"
 msgstr "%1$s não gosta de %3$s de %2$s"
 
 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
-#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29
-#: ../../mod/display.php:145 ../../include/items.php:3779
+#: ../../mod/admin.php:737 ../../mod/admin.php:936 ../../mod/display.php:39
+#: ../../mod/display.php:169 ../../include/items.php:3843
 msgid "Item not found."
 msgstr "O item não foi encontrado."
 
@@ -3135,8 +3297,8 @@ msgstr "O item não foi encontrado."
 msgid "Access denied."
 msgstr "Acesso negado."
 
-#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130
-#: ../../include/nav.php:51 ../../boot.php:1690
+#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
+#: ../../include/nav.php:51 ../../boot.php:1738
 msgid "Photos"
 msgstr "Fotos"
 
@@ -3157,43 +3319,43 @@ msgstr "O registro de %s foi revogado"
 msgid "Please login."
 msgstr "Por favor, autentique-se."
 
-#: ../../mod/item.php:91
+#: ../../mod/item.php:104
 msgid "Unable to locate original post."
 msgstr "Não foi possível localizar a publicação original."
 
-#: ../../mod/item.php:275
+#: ../../mod/item.php:288
 msgid "Empty post discarded."
 msgstr "A publicação em branco foi descartada."
 
-#: ../../mod/item.php:407 ../../mod/wall_upload.php:133
-#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149
+#: ../../mod/item.php:424 ../../mod/wall_upload.php:135
+#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151
 #: ../../include/message.php:144
 msgid "Wall Photos"
 msgstr "Fotos do mural"
 
-#: ../../mod/item.php:820
+#: ../../mod/item.php:837
 msgid "System error. Post not saved."
 msgstr "Erro no sistema. A publicação não foi salva."
 
-#: ../../mod/item.php:845
+#: ../../mod/item.php:862
 #, 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/item.php:847
+#: ../../mod/item.php:864
 #, php-format
 msgid "You may visit them online at %s"
 msgstr "Você pode visitá-lo em %s"
 
-#: ../../mod/item.php:848
+#: ../../mod/item.php:865
 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/item.php:850
+#: ../../mod/item.php:867
 #, php-format
 msgid "%s posted an update."
 msgstr "%s publicou uma atualização."
@@ -3231,7 +3393,7 @@ msgstr "Recarregue a página pressionando a tecla Shift ou limpe o cache do nave
 msgid "Unable to process image"
 msgstr "Não foi possível processar a imagem"
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:88
+#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90
 #, php-format
 msgid "Image exceeds size limit of %d"
 msgstr "A imagem excede o limite de tamanho de %d"
@@ -3246,6 +3408,7 @@ msgstr "Selecione um perfil:"
 
 #: ../../mod/profile_photo.php:245
 #: ../../addon/dav/friendica/layout.fnk.php:152
+#: ../../addon.old/dav/friendica/layout.fnk.php:152
 msgid "Upload"
 msgstr "Enviar"
 
@@ -3291,71 +3454,71 @@ msgstr "Isso removerá completamente a sua conta. Uma vez feito isso, não será
 msgid "Please enter your password for verification:"
 msgstr "Por favor, digite a sua senha para verificação:"
 
-#: ../../mod/message.php:9 ../../include/nav.php:131
+#: ../../mod/message.php:9 ../../include/nav.php:132
 msgid "New Message"
 msgstr "Nova mensagem"
 
-#: ../../mod/message.php:63
+#: ../../mod/message.php:67
 msgid "Unable to locate contact information."
 msgstr "Não foi possível localizar informação do contato."
 
-#: ../../mod/message.php:191
+#: ../../mod/message.php:195
 msgid "Message deleted."
 msgstr "A mensagem foi excluída."
 
-#: ../../mod/message.php:221
+#: ../../mod/message.php:225
 msgid "Conversation removed."
 msgstr "A conversa foi removida."
 
-#: ../../mod/message.php:327
+#: ../../mod/message.php:334
 msgid "No messages."
 msgstr "Nenhuma mensagem."
 
-#: ../../mod/message.php:334
+#: ../../mod/message.php:341
 #, php-format
 msgid "Unknown sender - %s"
 msgstr "Remetente desconhecido - %s"
 
-#: ../../mod/message.php:337
+#: ../../mod/message.php:344
 #, php-format
 msgid "You and %s"
 msgstr "Você e %s"
 
-#: ../../mod/message.php:340
+#: ../../mod/message.php:347
 #, php-format
 msgid "%s and You"
 msgstr "%s e você"
 
-#: ../../mod/message.php:350 ../../mod/message.php:462
+#: ../../mod/message.php:357 ../../mod/message.php:469
 msgid "Delete conversation"
 msgstr "Excluir conversa"
 
-#: ../../mod/message.php:353
+#: ../../mod/message.php:360
 msgid "D, d M Y - g:i A"
 msgstr "D, d M Y - g:i A"
 
-#: ../../mod/message.php:356
+#: ../../mod/message.php:363
 #, php-format
 msgid "%d message"
 msgid_plural "%d messages"
 msgstr[0] "%d mensagem"
 msgstr[1] "%d mensagens"
 
-#: ../../mod/message.php:391
+#: ../../mod/message.php:398
 msgid "Message not available."
 msgstr "A mensagem não está disponível."
 
-#: ../../mod/message.php:444
+#: ../../mod/message.php:451
 msgid "Delete message"
 msgstr "Excluir a mensagem"
 
-#: ../../mod/message.php:464
+#: ../../mod/message.php:471
 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:468
+#: ../../mod/message.php:475
 msgid "Send Reply"
 msgstr "Enviar resposta"
 
@@ -3372,19 +3535,19 @@ msgstr "Nenhum amigo para exibir."
 msgid "Theme settings updated."
 msgstr "As configurações do tema foram atualizadas."
 
-#: ../../mod/admin.php:96 ../../mod/admin.php:442
+#: ../../mod/admin.php:96 ../../mod/admin.php:444
 msgid "Site"
 msgstr "Site"
 
-#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701
+#: ../../mod/admin.php:97 ../../mod/admin.php:691 ../../mod/admin.php:704
 msgid "Users"
 msgstr "Usuários"
 
-#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825
+#: ../../mod/admin.php:98 ../../mod/admin.php:786 ../../mod/admin.php:828
 msgid "Plugins"
 msgstr "Plugins"
 
-#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024
+#: ../../mod/admin.php:99 ../../mod/admin.php:991 ../../mod/admin.php:1027
 msgid "Themes"
 msgstr "Temas"
 
@@ -3392,11 +3555,11 @@ msgstr "Temas"
 msgid "DB updates"
 msgstr "Atualizações do BD"
 
-#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111
+#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1114
 msgid "Logs"
 msgstr "Relatórios"
 
-#: ../../mod/admin.php:120 ../../include/nav.php:146
+#: ../../mod/admin.php:120 ../../include/nav.php:149
 msgid "Admin"
 msgstr "Admin"
 
@@ -3408,19 +3571,19 @@ msgstr "Recursos do plugin"
 msgid "User registrations waiting for confirmation"
 msgstr "Cadastros de novos usuários aguardando confirmação"
 
-#: ../../mod/admin.php:183 ../../mod/admin.php:669
+#: ../../mod/admin.php:183 ../../mod/admin.php:672
 msgid "Normal Account"
 msgstr "Conta normal"
 
-#: ../../mod/admin.php:184 ../../mod/admin.php:670
+#: ../../mod/admin.php:184 ../../mod/admin.php:673
 msgid "Soapbox Account"
 msgstr "Conta de vitrine"
 
-#: ../../mod/admin.php:185 ../../mod/admin.php:671
+#: ../../mod/admin.php:185 ../../mod/admin.php:674
 msgid "Community/Celebrity Account"
 msgstr "Conta de comunidade/celebridade"
 
-#: ../../mod/admin.php:186 ../../mod/admin.php:672
+#: ../../mod/admin.php:186 ../../mod/admin.php:675
 msgid "Automatic Friend Account"
 msgstr "Conta de amigo automático"
 
@@ -3436,9 +3599,9 @@ msgstr "Fórum privado"
 msgid "Message queues"
 msgstr ""
 
-#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687
-#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987
-#: ../../mod/admin.php:1023 ../../mod/admin.php:1110
+#: ../../mod/admin.php:212 ../../mod/admin.php:443 ../../mod/admin.php:690
+#: ../../mod/admin.php:785 ../../mod/admin.php:827 ../../mod/admin.php:990
+#: ../../mod/admin.php:1026 ../../mod/admin.php:1113
 msgid "Administration"
 msgstr "Administração"
 
@@ -3462,565 +3625,578 @@ msgstr "Versão"
 msgid "Active plugins"
 msgstr "Plugins ativos"
 
-#: ../../mod/admin.php:373
+#: ../../mod/admin.php:375
 msgid "Site settings updated."
 msgstr "As configurações do site foram atualizadas."
 
-#: ../../mod/admin.php:428
+#: ../../mod/admin.php:430
 msgid "Closed"
 msgstr "Fechado"
 
-#: ../../mod/admin.php:429
+#: ../../mod/admin.php:431
 msgid "Requires approval"
 msgstr "Requer aprovação"
 
-#: ../../mod/admin.php:430
+#: ../../mod/admin.php:432
 msgid "Open"
 msgstr "Aberto"
 
-#: ../../mod/admin.php:434
+#: ../../mod/admin.php:436
 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/admin.php:435
+#: ../../mod/admin.php:437
 msgid "Force all links to use SSL"
 msgstr "Forçar todos os links a utilizar SSL"
 
-#: ../../mod/admin.php:436
+#: ../../mod/admin.php:438
 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/admin.php:445
+#: ../../mod/admin.php:447
 msgid "File upload"
 msgstr "Envio de arquivo"
 
-#: ../../mod/admin.php:446
+#: ../../mod/admin.php:448
 msgid "Policies"
 msgstr "Políticas"
 
-#: ../../mod/admin.php:447
+#: ../../mod/admin.php:449
 msgid "Advanced"
 msgstr "Avançado"
 
-#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567
+#: ../../mod/admin.php:453 ../../addon/statusnet/statusnet.php:676
+#: ../../addon.old/statusnet/statusnet.php:567
 msgid "Site name"
 msgstr "Nome do site"
 
-#: ../../mod/admin.php:452
+#: ../../mod/admin.php:454
 msgid "Banner/Logo"
 msgstr "Banner/Logo"
 
-#: ../../mod/admin.php:453
+#: ../../mod/admin.php:455
 msgid "System language"
 msgstr "Idioma do sistema"
 
-#: ../../mod/admin.php:454
+#: ../../mod/admin.php:456
 msgid "System theme"
 msgstr "Tema do sistema"
 
-#: ../../mod/admin.php:454
+#: ../../mod/admin.php:456
 msgid ""
 "Default system theme - may be over-ridden by user profiles - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
-msgstr ""
+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/admin.php:455
+#: ../../mod/admin.php:457
 msgid "Mobile system theme"
 msgstr "Tema do sistema para dispositivos móveis"
 
-#: ../../mod/admin.php:455
+#: ../../mod/admin.php:457
 msgid "Theme for mobile devices"
 msgstr "Tema para dispositivos móveis"
 
-#: ../../mod/admin.php:456
+#: ../../mod/admin.php:458
 msgid "SSL link policy"
 msgstr "Política de link SSL"
 
-#: ../../mod/admin.php:456
+#: ../../mod/admin.php:458
 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/admin.php:457
+#: ../../mod/admin.php:459
 msgid "Maximum image size"
 msgstr "Tamanho máximo da imagem"
 
-#: ../../mod/admin.php:457
+#: ../../mod/admin.php:459
 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/admin.php:458
+#: ../../mod/admin.php:460
 msgid "Maximum image length"
 msgstr "Tamanho máximo da imagem"
 
-#: ../../mod/admin.php:458
+#: ../../mod/admin.php:460
 msgid ""
 "Maximum length in pixels of the longest side of uploaded images. Default is "
 "-1, which means no limits."
-msgstr ""
+msgstr "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites."
 
-#: ../../mod/admin.php:459
+#: ../../mod/admin.php:461
 msgid "JPEG image quality"
 msgstr "Qualidade da imagem JPEG"
 
-#: ../../mod/admin.php:459
+#: ../../mod/admin.php:461
 msgid ""
 "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
 "100, which is full quality."
-msgstr ""
+msgstr "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade."
 
-#: ../../mod/admin.php:461
+#: ../../mod/admin.php:463
 msgid "Register policy"
 msgstr "Política de registro"
 
-#: ../../mod/admin.php:462
+#: ../../mod/admin.php:464
+msgid "Maximum Daily Registrations"
+msgstr ""
+
+#: ../../mod/admin.php:464
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr ""
+
+#: ../../mod/admin.php:465
 msgid "Register text"
 msgstr "Texto de registro"
 
-#: ../../mod/admin.php:462
+#: ../../mod/admin.php:465
 msgid "Will be displayed prominently on the registration page."
 msgstr "Será exibido com destaque na página de registro."
 
-#: ../../mod/admin.php:463
+#: ../../mod/admin.php:466
 msgid "Accounts abandoned after x days"
 msgstr "Contas abandonadas após x dias"
 
-#: ../../mod/admin.php:463
+#: ../../mod/admin.php:466
 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/admin.php:464
+#: ../../mod/admin.php:467
 msgid "Allowed friend domains"
 msgstr "Domínios de amigos permitidos"
 
-#: ../../mod/admin.php:464
+#: ../../mod/admin.php:467
 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/admin.php:465
+#: ../../mod/admin.php:468
 msgid "Allowed email domains"
 msgstr "Domínios de e-mail permitidos"
 
-#: ../../mod/admin.php:465
+#: ../../mod/admin.php:468
 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/admin.php:466
+#: ../../mod/admin.php:469
 msgid "Block public"
 msgstr "Bloquear acesso público"
 
-#: ../../mod/admin.php:466
+#: ../../mod/admin.php:469
 msgid ""
 "Check to block public access to all otherwise public personal pages on this "
 "site unless you are currently logged in."
-msgstr ""
+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/admin.php:467
+#: ../../mod/admin.php:470
 msgid "Force publish"
 msgstr "Forçar a listagem"
 
-#: ../../mod/admin.php:467
+#: ../../mod/admin.php:470
 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/admin.php:468
+#: ../../mod/admin.php:471
 msgid "Global directory update URL"
 msgstr "URL de atualização do diretório global"
 
-#: ../../mod/admin.php:468
+#: ../../mod/admin.php:471
 msgid ""
 "URL to update the global directory. If this is not set, the global directory"
 " is completely unavailable to the application."
-msgstr ""
+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/admin.php:469
+#: ../../mod/admin.php:472
 msgid "Allow threaded items"
 msgstr ""
 
-#: ../../mod/admin.php:469
+#: ../../mod/admin.php:472
 msgid "Allow infinite level threading for items on this site."
 msgstr ""
 
-#: ../../mod/admin.php:470
+#: ../../mod/admin.php:473
 msgid "Private posts by default for new users"
 msgstr "Publicações privadas por padrão para novos usuários"
 
-#: ../../mod/admin.php:470
+#: ../../mod/admin.php:473
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
-msgstr ""
+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/admin.php:472
+#: ../../mod/admin.php:475
 msgid "Block multiple registrations"
 msgstr "Bloquear registros repetidos"
 
-#: ../../mod/admin.php:472
+#: ../../mod/admin.php:475
 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/admin.php:473
+#: ../../mod/admin.php:476
 msgid "OpenID support"
 msgstr "Suporte ao OpenID"
 
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:476
 msgid "OpenID support for registration and logins."
 msgstr "Suporte ao OpenID para registros e autenticações."
 
-#: ../../mod/admin.php:474
+#: ../../mod/admin.php:477
 msgid "Fullname check"
 msgstr "Verificar nome completo"
 
-#: ../../mod/admin.php:474
+#: ../../mod/admin.php:477
 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"
 
-#: ../../mod/admin.php:475
+#: ../../mod/admin.php:478
 msgid "UTF-8 Regular expressions"
 msgstr "Expressões regulares UTF-8"
 
-#: ../../mod/admin.php:475
+#: ../../mod/admin.php:478
 msgid "Use PHP UTF8 regular expressions"
 msgstr "Use expressões regulares do PHP em UTF8"
 
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:479
 msgid "Show Community Page"
 msgstr "Exibir a página da comunidade"
 
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:479
 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:477
+#: ../../mod/admin.php:480
 msgid "Enable OStatus support"
 msgstr "Habilitar suporte ao OStatus"
 
-#: ../../mod/admin.php:477
+#: ../../mod/admin.php:480
 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 ""
+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/admin.php:478
+#: ../../mod/admin.php:481
 msgid "Enable Diaspora support"
 msgstr "Habilitar suporte ao Diaspora"
 
-#: ../../mod/admin.php:478
+#: ../../mod/admin.php:481
 msgid "Provide built-in Diaspora network compatibility."
 msgstr "Fornece compatibilidade nativa com a rede Diaspora."
 
-#: ../../mod/admin.php:479
+#: ../../mod/admin.php:482
 msgid "Only allow Friendica contacts"
 msgstr "Permitir somente contatos Friendica"
 
-#: ../../mod/admin.php:479
+#: ../../mod/admin.php:482
 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/admin.php:480
+#: ../../mod/admin.php:483
 msgid "Verify SSL"
 msgstr "Verificar SSL"
 
-#: ../../mod/admin.php:480
+#: ../../mod/admin.php:483
 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 ""
+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/admin.php:481
+#: ../../mod/admin.php:484
 msgid "Proxy user"
 msgstr "Usuário do proxy"
 
-#: ../../mod/admin.php:482
+#: ../../mod/admin.php:485
 msgid "Proxy URL"
 msgstr "URL do proxy"
 
-#: ../../mod/admin.php:483
+#: ../../mod/admin.php:486
 msgid "Network timeout"
 msgstr "Limite de tempo da rede"
 
-#: ../../mod/admin.php:483
+#: ../../mod/admin.php:486
 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/admin.php:484
+#: ../../mod/admin.php:487
 msgid "Delivery interval"
 msgstr "Intervalo de envio"
 
-#: ../../mod/admin.php:484
+#: ../../mod/admin.php:487
 msgid ""
 "Delay background delivery processes by this many seconds to reduce system "
 "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
 "for large dedicated servers."
 msgstr ""
 
-#: ../../mod/admin.php:485
+#: ../../mod/admin.php:488
 msgid "Poll interval"
 msgstr ""
 
-#: ../../mod/admin.php:485
+#: ../../mod/admin.php:488
 msgid ""
 "Delay background polling processes by this many seconds to reduce system "
 "load. If 0, use delivery interval."
 msgstr ""
 
-#: ../../mod/admin.php:486
+#: ../../mod/admin.php:489
 msgid "Maximum Load Average"
 msgstr ""
 
-#: ../../mod/admin.php:486
+#: ../../mod/admin.php:489
 msgid ""
 "Maximum system load before delivery and poll processes are deferred - "
 "default 50."
 msgstr ""
 
-#: ../../mod/admin.php:503
+#: ../../mod/admin.php:506
 msgid "Update has been marked successful"
 msgstr "A atualização foi marcada como bem sucedida"
 
-#: ../../mod/admin.php:513
+#: ../../mod/admin.php:516
 #, 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/admin.php:516
+#: ../../mod/admin.php:519
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr "A atualização %s foi aplicada com sucesso."
 
-#: ../../mod/admin.php:520
+#: ../../mod/admin.php:523
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: ../../mod/admin.php:523
+#: ../../mod/admin.php:526
 #, 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/admin.php:538
+#: ../../mod/admin.php:541
 msgid "No failed updates."
 msgstr "Nenhuma atualização com falha."
 
-#: ../../mod/admin.php:542
+#: ../../mod/admin.php:545
 msgid "Failed Updates"
 msgstr "Atualizações com falha"
 
-#: ../../mod/admin.php:543
+#: ../../mod/admin.php:546
 msgid ""
 "This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: ../../mod/admin.php:544
+#: ../../mod/admin.php:547
 msgid "Mark success (if update was manually applied)"
 msgstr "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)"
 
-#: ../../mod/admin.php:545
+#: ../../mod/admin.php:548
 msgid "Attempt to execute this update step automatically"
 msgstr "Tentar executar esse passo da atualização automaticamente"
 
-#: ../../mod/admin.php:570
+#: ../../mod/admin.php:573
 #, 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/admin.php:577
+#: ../../mod/admin.php:580
 #, 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/admin.php:616
+#: ../../mod/admin.php:619
 #, php-format
 msgid "User '%s' deleted"
 msgstr "O usuário '%s' foi excluído"
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:627
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "O usuário '%s' foi desbloqueado"
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:627
 #, php-format
 msgid "User '%s' blocked"
 msgstr "O usuário '%s' foi bloqueado"
 
-#: ../../mod/admin.php:690
+#: ../../mod/admin.php:693
 msgid "select all"
 msgstr "selecionar todos"
 
-#: ../../mod/admin.php:691
+#: ../../mod/admin.php:694
 msgid "User registrations waiting for confirm"
 msgstr "Registros de usuário aguardando confirmação"
 
-#: ../../mod/admin.php:692
+#: ../../mod/admin.php:695
 msgid "Request date"
 msgstr "Solicitar data"
 
-#: ../../mod/admin.php:692 ../../mod/admin.php:702
+#: ../../mod/admin.php:695 ../../mod/admin.php:705
 #: ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86
 msgid "Email"
 msgstr "E-mail"
 
-#: ../../mod/admin.php:693
+#: ../../mod/admin.php:696
 msgid "No registrations."
 msgstr "Nenhum registro."
 
-#: ../../mod/admin.php:695
+#: ../../mod/admin.php:698
 msgid "Deny"
 msgstr "Negar"
 
-#: ../../mod/admin.php:699
+#: ../../mod/admin.php:702
 msgid "Site admin"
 msgstr "Administração do site"
 
-#: ../../mod/admin.php:702
+#: ../../mod/admin.php:705
 msgid "Register date"
 msgstr "Data de registro"
 
-#: ../../mod/admin.php:702
+#: ../../mod/admin.php:705
 msgid "Last login"
 msgstr "Última entrada"
 
-#: ../../mod/admin.php:702
+#: ../../mod/admin.php:705
 msgid "Last item"
 msgstr "Último item"
 
-#: ../../mod/admin.php:702
+#: ../../mod/admin.php:705
 msgid "Account"
 msgstr "Conta"
 
-#: ../../mod/admin.php:704
+#: ../../mod/admin.php:707
 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á permanentemente excluído!\\n\\nDeseja continuar?"
 
-#: ../../mod/admin.php:705
+#: ../../mod/admin.php:708
 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/admin.php:746
+#: ../../mod/admin.php:749
 #, php-format
 msgid "Plugin %s disabled."
 msgstr "O plugin %s foi desabilitado."
 
-#: ../../mod/admin.php:750
+#: ../../mod/admin.php:753
 #, php-format
 msgid "Plugin %s enabled."
 msgstr "O plugin %s foi habilitado."
 
-#: ../../mod/admin.php:760 ../../mod/admin.php:958
+#: ../../mod/admin.php:763 ../../mod/admin.php:961
 msgid "Disable"
 msgstr "Desabilitar"
 
-#: ../../mod/admin.php:762 ../../mod/admin.php:960
+#: ../../mod/admin.php:765 ../../mod/admin.php:963
 msgid "Enable"
 msgstr "Habilitar"
 
-#: ../../mod/admin.php:784 ../../mod/admin.php:989
+#: ../../mod/admin.php:787 ../../mod/admin.php:992
 msgid "Toggle"
 msgstr "Alternar"
 
-#: ../../mod/admin.php:792 ../../mod/admin.php:999
+#: ../../mod/admin.php:795 ../../mod/admin.php:1002
 msgid "Author: "
 msgstr "Autor: "
 
-#: ../../mod/admin.php:793 ../../mod/admin.php:1000
+#: ../../mod/admin.php:796 ../../mod/admin.php:1003
 msgid "Maintainer: "
 msgstr "Mantenedor: "
 
-#: ../../mod/admin.php:922
+#: ../../mod/admin.php:925
 msgid "No themes found."
 msgstr "Nenhum tema encontrado"
 
-#: ../../mod/admin.php:981
+#: ../../mod/admin.php:984
 msgid "Screenshot"
 msgstr "Captura de tela"
 
-#: ../../mod/admin.php:1029
+#: ../../mod/admin.php:1032
 msgid "[Experimental]"
 msgstr "[Esperimental]"
 
-#: ../../mod/admin.php:1030
+#: ../../mod/admin.php:1033
 msgid "[Unsupported]"
 msgstr "[Não suportado]"
 
-#: ../../mod/admin.php:1057
+#: ../../mod/admin.php:1060
 msgid "Log settings updated."
 msgstr "As configurações de relatórios foram atualizadas."
 
-#: ../../mod/admin.php:1113
+#: ../../mod/admin.php:1116
 msgid "Clear"
 msgstr "Limpar"
 
-#: ../../mod/admin.php:1119
+#: ../../mod/admin.php:1122
 msgid "Debugging"
 msgstr "Depuração"
 
-#: ../../mod/admin.php:1120
+#: ../../mod/admin.php:1123
 msgid "Log file"
 msgstr "Arquivo do relatório"
 
-#: ../../mod/admin.php:1120
+#: ../../mod/admin.php:1123
 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/admin.php:1121
+#: ../../mod/admin.php:1124
 msgid "Log level"
 msgstr "Nível do relatório"
 
-#: ../../mod/admin.php:1171
+#: ../../mod/admin.php:1174
 msgid "Close"
 msgstr "Fechar"
 
-#: ../../mod/admin.php:1177
+#: ../../mod/admin.php:1180
 msgid "FTP Host"
 msgstr "Endereço do FTP"
 
-#: ../../mod/admin.php:1178
+#: ../../mod/admin.php:1181
 msgid "FTP Path"
 msgstr "Caminho do FTP"
 
-#: ../../mod/admin.php:1179
+#: ../../mod/admin.php:1182
 msgid "FTP User"
 msgstr "Usuário do FTP"
 
-#: ../../mod/admin.php:1180
+#: ../../mod/admin.php:1183
 msgid "FTP Password"
 msgstr "Senha do FTP"
 
-#: ../../mod/profile.php:22 ../../boot.php:1084
+#: ../../mod/profile.php:21 ../../boot.php:1126
 msgid "Requested profile is not available."
 msgstr "Perfil solicitado não está disponível."
 
-#: ../../mod/profile.php:152 ../../mod/display.php:77
+#: ../../mod/profile.php:155 ../../mod/display.php:87
 msgid "Access to this profile has been restricted."
 msgstr "O acesso a este perfil está restrito."
 
-#: ../../mod/profile.php:177
+#: ../../mod/profile.php:180
 msgid "Tips for New Members"
 msgstr "Dicas para novos membros"
 
@@ -4082,8 +4258,8 @@ 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."
 
-#: ../../mod/openid.php:93 ../../include/auth.php:98
-#: ../../include/auth.php:161
+#: ../../mod/openid.php:93 ../../include/auth.php:110
+#: ../../include/auth.php:173
 msgid "Login failed."
 msgstr "Não foi possível autenticar."
 
@@ -4108,7 +4284,7 @@ msgstr ""
 msgid "link"
 msgstr "ligação"
 
-#: ../../mod/display.php:138
+#: ../../mod/display.php:162
 msgid "Item has been removed."
 msgstr "O item foi removido."
 
@@ -4120,13 +4296,13 @@ msgstr "Aplicativos"
 msgid "No installed applications."
 msgstr "Nenhum aplicativo instalado"
 
-#: ../../mod/search.php:98 ../../include/text.php:678
-#: ../../include/text.php:679 ../../include/nav.php:91
+#: ../../mod/search.php:99 ../../include/text.php:685
+#: ../../include/text.php:686 ../../include/nav.php:91
 msgid "Search"
 msgstr "Pesquisar"
 
-#: ../../mod/profiles.php:21 ../../mod/profiles.php:434
-#: ../../mod/profiles.php:548 ../../mod/dfrn_confirm.php:62
+#: ../../mod/profiles.php:21 ../../mod/profiles.php:441
+#: ../../mod/profiles.php:555 ../../mod/dfrn_confirm.php:62
 msgid "Profile not found."
 msgstr "O perfil não foi encontrado."
 
@@ -4134,306 +4310,308 @@ msgstr "O perfil não foi encontrado."
 msgid "Profile Name is required."
 msgstr "É necessário informar o nome do perfil."
 
-#: ../../mod/profiles.php:171
+#: ../../mod/profiles.php:178
 msgid "Marital Status"
 msgstr "Estado civil"
 
-#: ../../mod/profiles.php:175
+#: ../../mod/profiles.php:182
 msgid "Romantic Partner"
 msgstr "Parceiro romântico"
 
-#: ../../mod/profiles.php:179
+#: ../../mod/profiles.php:186
 msgid "Likes"
 msgstr ""
 
-#: ../../mod/profiles.php:183
+#: ../../mod/profiles.php:190
 msgid "Dislikes"
 msgstr ""
 
-#: ../../mod/profiles.php:187
+#: ../../mod/profiles.php:194
 msgid "Work/Employment"
 msgstr "Trabalho/emprego"
 
-#: ../../mod/profiles.php:190
+#: ../../mod/profiles.php:197
 msgid "Religion"
 msgstr "Religião"
 
-#: ../../mod/profiles.php:194
+#: ../../mod/profiles.php:201
 msgid "Political Views"
 msgstr "Posicionamento político"
 
-#: ../../mod/profiles.php:198
+#: ../../mod/profiles.php:205
 msgid "Gender"
 msgstr "Gênero"
 
-#: ../../mod/profiles.php:202
+#: ../../mod/profiles.php:209
 msgid "Sexual Preference"
 msgstr "Preferência sexual"
 
-#: ../../mod/profiles.php:206
+#: ../../mod/profiles.php:213
 msgid "Homepage"
-msgstr ""
+msgstr "Página Principal"
 
-#: ../../mod/profiles.php:210
+#: ../../mod/profiles.php:217
 msgid "Interests"
 msgstr "Interesses"
 
-#: ../../mod/profiles.php:214
+#: ../../mod/profiles.php:221
 msgid "Address"
 msgstr "Endereço"
 
-#: ../../mod/profiles.php:221 ../../addon/dav/common/wdcal_edit.inc.php:183
+#: ../../mod/profiles.php:228 ../../addon/dav/common/wdcal_edit.inc.php:183
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
 msgid "Location"
 msgstr "Localização"
 
-#: ../../mod/profiles.php:304
+#: ../../mod/profiles.php:311
 msgid "Profile updated."
 msgstr "O perfil foi atualizado."
 
-#: ../../mod/profiles.php:371
+#: ../../mod/profiles.php:378
 msgid " and "
 msgstr " e "
 
-#: ../../mod/profiles.php:379
+#: ../../mod/profiles.php:386
 msgid "public profile"
 msgstr "perfil público"
 
-#: ../../mod/profiles.php:382
+#: ../../mod/profiles.php:389
 #, php-format
 msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr ""
 
-#: ../../mod/profiles.php:383
+#: ../../mod/profiles.php:390
 #, php-format
 msgid " - Visit %1$s's %2$s"
 msgstr ""
 
-#: ../../mod/profiles.php:386
+#: ../../mod/profiles.php:393
 #, php-format
 msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr ""
+msgstr "%1$s foi atualizado %2$s, mudando %3$s."
 
-#: ../../mod/profiles.php:453
+#: ../../mod/profiles.php:460
 msgid "Profile deleted."
 msgstr "O perfil foi excluído."
 
-#: ../../mod/profiles.php:471 ../../mod/profiles.php:505
+#: ../../mod/profiles.php:478 ../../mod/profiles.php:512
 msgid "Profile-"
 msgstr "Perfil-"
 
-#: ../../mod/profiles.php:490 ../../mod/profiles.php:532
+#: ../../mod/profiles.php:497 ../../mod/profiles.php:539
 msgid "New profile created."
 msgstr "O novo perfil foi criado."
 
-#: ../../mod/profiles.php:511
+#: ../../mod/profiles.php:518
 msgid "Profile unavailable to clone."
 msgstr "O perfil não está disponível para clonagem."
 
-#: ../../mod/profiles.php:573
+#: ../../mod/profiles.php:583
 msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?"
 
-#: ../../mod/profiles.php:593
+#: ../../mod/profiles.php:603
 msgid "Edit Profile Details"
 msgstr "Editar os detalhes do perfil"
 
-#: ../../mod/profiles.php:595
+#: ../../mod/profiles.php:605
 msgid "View this profile"
 msgstr "Ver este perfil"
 
-#: ../../mod/profiles.php:596
+#: ../../mod/profiles.php:606
 msgid "Create a new profile using these settings"
 msgstr "Criar um novo perfil usando estas configurações"
 
-#: ../../mod/profiles.php:597
+#: ../../mod/profiles.php:607
 msgid "Clone this profile"
 msgstr "Clonar este perfil"
 
-#: ../../mod/profiles.php:598
+#: ../../mod/profiles.php:608
 msgid "Delete this profile"
 msgstr "Excluir este perfil"
 
-#: ../../mod/profiles.php:599
+#: ../../mod/profiles.php:609
 msgid "Profile Name:"
 msgstr "Nome do perfil:"
 
-#: ../../mod/profiles.php:600
+#: ../../mod/profiles.php:610
 msgid "Your Full Name:"
 msgstr "Seu nome completo:"
 
-#: ../../mod/profiles.php:601
+#: ../../mod/profiles.php:611
 msgid "Title/Description:"
 msgstr "Título/Descrição:"
 
-#: ../../mod/profiles.php:602
+#: ../../mod/profiles.php:612
 msgid "Your Gender:"
 msgstr "Seu gênero:"
 
-#: ../../mod/profiles.php:603
+#: ../../mod/profiles.php:613
 #, php-format
 msgid "Birthday (%s):"
 msgstr "Aniversário (%s):"
 
-#: ../../mod/profiles.php:604
+#: ../../mod/profiles.php:614
 msgid "Street Address:"
 msgstr "Endereço:"
 
-#: ../../mod/profiles.php:605
+#: ../../mod/profiles.php:615
 msgid "Locality/City:"
 msgstr "Localidade/Cidade:"
 
-#: ../../mod/profiles.php:606
+#: ../../mod/profiles.php:616
 msgid "Postal/Zip Code:"
 msgstr "CEP:"
 
-#: ../../mod/profiles.php:607
+#: ../../mod/profiles.php:617
 msgid "Country:"
 msgstr "País:"
 
-#: ../../mod/profiles.php:608
+#: ../../mod/profiles.php:618
 msgid "Region/State:"
 msgstr "Região/Estado:"
 
-#: ../../mod/profiles.php:609
+#: ../../mod/profiles.php:619
 msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr "Estado civil <span class=\"heart\">&hearts;</span>:"
 
-#: ../../mod/profiles.php:610
+#: ../../mod/profiles.php:620
 msgid "Who: (if applicable)"
 msgstr "Quem: (se pertinente)"
 
-#: ../../mod/profiles.php:611
+#: ../../mod/profiles.php:621
 msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"
 
-#: ../../mod/profiles.php:612
+#: ../../mod/profiles.php:622
 msgid "Since [date]:"
 msgstr "Desde [data]:"
 
-#: ../../mod/profiles.php:613 ../../include/profile_advanced.php:46
+#: ../../mod/profiles.php:623 ../../include/profile_advanced.php:46
 msgid "Sexual Preference:"
 msgstr "Preferência sexual:"
 
-#: ../../mod/profiles.php:614
+#: ../../mod/profiles.php:624
 msgid "Homepage URL:"
 msgstr "Endereço do site web:"
 
-#: ../../mod/profiles.php:615 ../../include/profile_advanced.php:50
+#: ../../mod/profiles.php:625 ../../include/profile_advanced.php:50
 msgid "Hometown:"
 msgstr ""
 
-#: ../../mod/profiles.php:616 ../../include/profile_advanced.php:54
+#: ../../mod/profiles.php:626 ../../include/profile_advanced.php:54
 msgid "Political Views:"
 msgstr "Posição política:"
 
-#: ../../mod/profiles.php:617
+#: ../../mod/profiles.php:627
 msgid "Religious Views:"
 msgstr "Orientação religiosa:"
 
-#: ../../mod/profiles.php:618
+#: ../../mod/profiles.php:628
 msgid "Public Keywords:"
 msgstr "Palavras-chave públicas:"
 
-#: ../../mod/profiles.php:619
+#: ../../mod/profiles.php:629
 msgid "Private Keywords:"
 msgstr "Palavras-chave privadas:"
 
-#: ../../mod/profiles.php:620 ../../include/profile_advanced.php:62
+#: ../../mod/profiles.php:630 ../../include/profile_advanced.php:62
 msgid "Likes:"
 msgstr ""
 
-#: ../../mod/profiles.php:621 ../../include/profile_advanced.php:64
+#: ../../mod/profiles.php:631 ../../include/profile_advanced.php:64
 msgid "Dislikes:"
 msgstr ""
 
-#: ../../mod/profiles.php:622
+#: ../../mod/profiles.php:632
 msgid "Example: fishing photography software"
 msgstr "Exemplo: pesca fotografia software"
 
-#: ../../mod/profiles.php:623
+#: ../../mod/profiles.php:633
 msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)"
 
-#: ../../mod/profiles.php:624
+#: ../../mod/profiles.php:634
 msgid "(Used for searching profiles, never shown to others)"
 msgstr "(Usado na pesquisa de perfis, nunca é exibido para os outros)"
 
-#: ../../mod/profiles.php:625
+#: ../../mod/profiles.php:635
 msgid "Tell us about yourself..."
 msgstr "Fale um pouco sobre você..."
 
-#: ../../mod/profiles.php:626
+#: ../../mod/profiles.php:636
 msgid "Hobbies/Interests"
 msgstr "Passatempos/Interesses"
 
-#: ../../mod/profiles.php:627
+#: ../../mod/profiles.php:637
 msgid "Contact information and Social Networks"
 msgstr "Informações de contato e redes sociais"
 
-#: ../../mod/profiles.php:628
+#: ../../mod/profiles.php:638
 msgid "Musical interests"
 msgstr "Preferências musicais"
 
-#: ../../mod/profiles.php:629
+#: ../../mod/profiles.php:639
 msgid "Books, literature"
 msgstr "Livros, literatura"
 
-#: ../../mod/profiles.php:630
+#: ../../mod/profiles.php:640
 msgid "Television"
 msgstr "Televisão"
 
-#: ../../mod/profiles.php:631
+#: ../../mod/profiles.php:641
 msgid "Film/dance/culture/entertainment"
 msgstr "Filme/dança/cultura/entretenimento"
 
-#: ../../mod/profiles.php:632
+#: ../../mod/profiles.php:642
 msgid "Love/romance"
 msgstr "Amor/romance"
 
-#: ../../mod/profiles.php:633
+#: ../../mod/profiles.php:643
 msgid "Work/employment"
 msgstr "Trabalho/emprego"
 
-#: ../../mod/profiles.php:634
+#: ../../mod/profiles.php:644
 msgid "School/education"
 msgstr "Escola/educação"
 
-#: ../../mod/profiles.php:639
+#: ../../mod/profiles.php:649
 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/profiles.php:649 ../../mod/directory.php:111
+#: ../../mod/profiles.php:659 ../../mod/directory.php:111
+#: ../../addon/forumdirectory/forumdirectory.php:133
 msgid "Age: "
 msgstr "Idade: "
 
-#: ../../mod/profiles.php:688
+#: ../../mod/profiles.php:698
 msgid "Edit/Manage Profiles"
 msgstr "Editar/Gerenciar perfis"
 
-#: ../../mod/profiles.php:689 ../../boot.php:1202
+#: ../../mod/profiles.php:699 ../../boot.php:1244
 msgid "Change profile photo"
 msgstr "Mudar a foto do perfil"
 
-#: ../../mod/profiles.php:690 ../../boot.php:1203
+#: ../../mod/profiles.php:700 ../../boot.php:1245
 msgid "Create New Profile"
 msgstr "Criar um novo perfil"
 
-#: ../../mod/profiles.php:701 ../../boot.php:1213
+#: ../../mod/profiles.php:711 ../../boot.php:1255
 msgid "Profile Image"
 msgstr "Imagem do perfil"
 
-#: ../../mod/profiles.php:703 ../../boot.php:1216
+#: ../../mod/profiles.php:713 ../../boot.php:1258
 msgid "visible to everybody"
 msgstr "visível para todos"
 
-#: ../../mod/profiles.php:704 ../../boot.php:1217
+#: ../../mod/profiles.php:714 ../../boot.php:1259
 msgid "Edit visibility"
 msgstr "Editar a visibilidade"
 
-#: ../../mod/filer.php:29 ../../include/conversation.php:850
-#: ../../include/conversation.php:867
+#: ../../mod/filer.php:29 ../../include/conversation.php:909
+#: ../../include/conversation.php:927
 msgid "Save to Folder:"
 msgstr "Salvar na pasta:"
 
@@ -4525,7 +4703,7 @@ msgstr ""
 msgid "diaspora2bb: "
 msgstr "diaspora2bb: "
 
-#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626
+#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:520
 #: ../../include/contact_widgets.php:34
 msgid "Friend Suggestions"
 msgstr "Sugestões de amigos"
@@ -4540,42 +4718,50 @@ msgstr "Não existe nenhuma sugestão disponível. Se este for um site novo, por
 msgid "Ignore/Hide"
 msgstr "Ignorar/Ocultar"
 
-#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:624
+#: ../../mod/directory.php:49 ../../addon/forumdirectory/forumdirectory.php:71
+#: ../../view/theme/diabook/theme.php:518
 msgid "Global Directory"
 msgstr "Diretório global"
 
-#: ../../mod/directory.php:57
+#: ../../mod/directory.php:57 ../../addon/forumdirectory/forumdirectory.php:79
 msgid "Find on this site"
 msgstr "Pesquisar neste site"
 
-#: ../../mod/directory.php:60
+#: ../../mod/directory.php:60 ../../addon/forumdirectory/forumdirectory.php:82
 msgid "Site Directory"
 msgstr "Diretório do site"
 
 #: ../../mod/directory.php:114
+#: ../../addon/forumdirectory/forumdirectory.php:136
 msgid "Gender: "
 msgstr "Gênero: "
 
-#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17
-#: ../../boot.php:1238
+#: ../../mod/directory.php:136
+#: ../../addon/forumdirectory/forumdirectory.php:158
+#: ../../include/profile_advanced.php:17 ../../boot.php:1280
 msgid "Gender:"
 msgstr "Gênero:"
 
-#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37
-#: ../../boot.php:1241
+#: ../../mod/directory.php:138
+#: ../../addon/forumdirectory/forumdirectory.php:160
+#: ../../include/profile_advanced.php:37 ../../boot.php:1283
 msgid "Status:"
 msgstr "Estado:"
 
-#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48
-#: ../../boot.php:1243
+#: ../../mod/directory.php:140
+#: ../../addon/forumdirectory/forumdirectory.php:162
+#: ../../include/profile_advanced.php:48 ../../boot.php:1285
 msgid "Homepage:"
 msgstr "Página web:"
 
-#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
+#: ../../mod/directory.php:142
+#: ../../addon/forumdirectory/forumdirectory.php:164
+#: ../../include/profile_advanced.php:58
 msgid "About:"
 msgstr "Sobre:"
 
 #: ../../mod/directory.php:180
+#: ../../addon/forumdirectory/forumdirectory.php:202
 msgid "No entries (some entries may be hidden)."
 msgstr "Nenhuma entrada (algumas entradas podem estar ocultas)."
 
@@ -4610,14 +4796,14 @@ 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 ""
+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:102
 #, php-format
 msgid ""
 "To accept this invitation, please visit and register at %s or any other "
 "public Friendica website."
-msgstr ""
+msgstr "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público."
 
 #: ../../mod/invite.php:103
 #, php-format
@@ -4626,13 +4812,13 @@ msgid ""
 "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 ""
+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:106
 msgid ""
 "Our apologies. This system is not currently configured to connect with other"
 " public sites or invite members."
-msgstr ""
+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:111
 msgid "Send invitations"
@@ -4646,7 +4832,7 @@ msgstr "Digite os endereços de e-mail, um por linha:"
 msgid ""
 "You are cordially invited to join me and other close friends on Friendica - "
 "and help us to create a better social web."
-msgstr ""
+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:116
 msgid "You will need to supply this invitation code: $invite_code"
@@ -4751,98 +4937,122 @@ msgid "%1$s has joined %2$s"
 msgstr "%1$s se associou a %2$s"
 
 #: ../../addon/fromgplus/fromgplus.php:29
+#: ../../addon.old/fromgplus/fromgplus.php:29
 msgid "Google+ Import Settings"
 msgstr "Configurações de importação do Google+"
 
 #: ../../addon/fromgplus/fromgplus.php:32
+#: ../../addon.old/fromgplus/fromgplus.php:32
 msgid "Enable Google+ Import"
 msgstr "Habilitar a importação do Google+"
 
 #: ../../addon/fromgplus/fromgplus.php:35
+#: ../../addon.old/fromgplus/fromgplus.php:35
 msgid "Google Account ID"
 msgstr "ID da conta do Google"
 
 #: ../../addon/fromgplus/fromgplus.php:55
+#: ../../addon.old/fromgplus/fromgplus.php:55
 msgid "Google+ Import Settings saved."
 msgstr "As configurações de importação do Google+ foram salvas."
 
 #: ../../addon/facebook/facebook.php:523
+#: ../../addon.old/facebook/facebook.php:523
 msgid "Facebook disabled"
 msgstr "O Facebook está desabilitado"
 
 #: ../../addon/facebook/facebook.php:528
+#: ../../addon.old/facebook/facebook.php:528
 msgid "Updating contacts"
 msgstr "Atualizando os contatos"
 
 #: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192
+#: ../../addon.old/facebook/facebook.php:551
+#: ../../addon.old/fbpost/fbpost.php:192
 msgid "Facebook API key is missing."
 msgstr "A chave de API do Facebook não foi encontrada."
 
 #: ../../addon/facebook/facebook.php:558
+#: ../../addon.old/facebook/facebook.php:558
 msgid "Facebook Connect"
 msgstr "Conexão com o Facebook"
 
 #: ../../addon/facebook/facebook.php:564
+#: ../../addon.old/facebook/facebook.php:564
 msgid "Install Facebook connector for this account."
 msgstr "Instalar o conector do Facebook nesta conta."
 
 #: ../../addon/facebook/facebook.php:571
+#: ../../addon.old/facebook/facebook.php:571
 msgid "Remove Facebook connector"
 msgstr "Remover o conector do Facebook"
 
 #: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217
+#: ../../addon.old/facebook/facebook.php:576
+#: ../../addon.old/fbpost/fbpost.php:217
 msgid ""
 "Re-authenticate [This is necessary whenever your Facebook password is "
 "changed.]"
 msgstr "Reautenticar [Isso é necessário sempre que sua senha do Facebook é modificada.]"
 
 #: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224
+#: ../../addon.old/facebook/facebook.php:583
+#: ../../addon.old/fbpost/fbpost.php:224
 msgid "Post to Facebook by default"
 msgstr "Publicar no Facebook por padrão"
 
 #: ../../addon/facebook/facebook.php:589
+#: ../../addon.old/facebook/facebook.php:589
 msgid ""
 "Facebook friend linking has been disabled on this site. The following "
 "settings will have no effect."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:593
+#: ../../addon.old/facebook/facebook.php:593
 msgid ""
 "Facebook friend linking has been disabled on this site. If you disable it, "
 "you will be unable to re-enable it."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:596
+#: ../../addon.old/facebook/facebook.php:596
 msgid "Link all your Facebook friends and conversations on this website"
 msgstr "Ligar todos os seus amigos e conversas do Facebook neste site"
 
 #: ../../addon/facebook/facebook.php:598
+#: ../../addon.old/facebook/facebook.php:598
 msgid ""
 "Facebook conversations consist of your <em>profile wall</em> and your friend"
 " <em>stream</em>."
 msgstr "As conversas do Facebook consistem do seu <em>perfil/mural</em> e da <em>linha do tempo</em> dos seus amigos."
 
 #: ../../addon/facebook/facebook.php:599
+#: ../../addon.old/facebook/facebook.php:599
 msgid "On this website, your Facebook friend stream is only visible to you."
 msgstr "Neste site, a linha do tempo dos seus amigos do Facebook está visível somente para você."
 
 #: ../../addon/facebook/facebook.php:600
+#: ../../addon.old/facebook/facebook.php:600
 msgid ""
 "The following settings determine the privacy of your Facebook profile wall "
 "on this website."
 msgstr "As seguintes configurações determinam a privacidade do mural do seu perfil do Facebook neste site."
 
 #: ../../addon/facebook/facebook.php:604
+#: ../../addon.old/facebook/facebook.php:604
 msgid ""
 "On this website your Facebook profile wall conversations will only be "
 "visible to you"
 msgstr "Nesse site as conversas do mural do seu perfil do Facebook estão visíveis somente para você"
 
 #: ../../addon/facebook/facebook.php:609
+#: ../../addon.old/facebook/facebook.php:609
 msgid "Do not import your Facebook profile wall conversations"
 msgstr "Não importar as conversas do seu perfil/mural do Facebook"
 
 #: ../../addon/facebook/facebook.php:611
+#: ../../addon.old/facebook/facebook.php:611
 msgid ""
 "If you choose to link conversations and leave both of these boxes unchecked,"
 " your Facebook profile wall will be merged with your profile wall on this "
@@ -4851,187 +5061,222 @@ msgid ""
 msgstr "Se você escolher ligar as conversas e deixar ambas opções desmarcadas, seu perfil/mural do Facebook será mesclado com seu perfil/mural nesse website e suas configurações de privacidade nesse website serão usadas para determinar quem pode ver as conversas."
 
 #: ../../addon/facebook/facebook.php:616
+#: ../../addon.old/facebook/facebook.php:616
 msgid "Comma separated applications to ignore"
 msgstr "Ignorar aplicações separadas por vírgula"
 
 #: ../../addon/facebook/facebook.php:700
+#: ../../addon.old/facebook/facebook.php:700
 msgid "Problems with Facebook Real-Time Updates"
 msgstr "Problemas com as atualizações em tempo real do Facebook"
 
 #: ../../addon/facebook/facebook.php:729
+#: ../../addon.old/facebook/facebook.php:729
 msgid "Facebook Connector Settings"
 msgstr "Configurações do conector do Facebook"
 
 #: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255
+#: ../../addon.old/facebook/facebook.php:744
+#: ../../addon.old/fbpost/fbpost.php:255
 msgid "Facebook API Key"
 msgstr "Chave da API do Facebook"
 
 #: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262
+#: ../../addon.old/facebook/facebook.php:754
+#: ../../addon.old/fbpost/fbpost.php:262
 msgid ""
 "Error: it appears that you have specified the App-ID and -Secret in your "
 ".htconfig.php file. As long as they are specified there, they cannot be set "
 "using this form.<br><br>"
-msgstr ""
+msgstr "Erro: parece que você especificou o App-ID e o -Secret no arquivo .htconfig.php. Uma vez estão especificado lá, eles não podem ser definidos neste formulário.<br><br>"
 
 #: ../../addon/facebook/facebook.php:759
+#: ../../addon.old/facebook/facebook.php:759
 msgid ""
 "Error: the given API Key seems to be incorrect (the application access token"
 " could not be retrieved)."
-msgstr ""
+msgstr "Erro: a chave de API fornecida parece estar incorreta (não foi possível recuperar o token de acesso à aplicação)."
 
 #: ../../addon/facebook/facebook.php:761
+#: ../../addon.old/facebook/facebook.php:761
 msgid "The given API Key seems to work correctly."
 msgstr "A chave de API fornecida aparentemente está funcionando corretamente."
 
 #: ../../addon/facebook/facebook.php:763
+#: ../../addon.old/facebook/facebook.php:763
 msgid ""
 "The correctness of the API Key could not be detected. Something strange's "
 "going on."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264
+#: ../../addon.old/facebook/facebook.php:766
+#: ../../addon.old/fbpost/fbpost.php:264
 msgid "App-ID / API-Key"
 msgstr "App-ID / API-Key"
 
 #: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265
+#: ../../addon.old/facebook/facebook.php:767
+#: ../../addon.old/fbpost/fbpost.php:265
 msgid "Application secret"
 msgstr "Segredo da aplicação"
 
 #: ../../addon/facebook/facebook.php:768
+#: ../../addon.old/facebook/facebook.php:768
 #, php-format
 msgid "Polling Interval in minutes (minimum %1$s minutes)"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:769
+#: ../../addon.old/facebook/facebook.php:769
 msgid ""
 "Synchronize comments (no comments on Facebook are missed, at the cost of "
 "increased system load)"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:773
+#: ../../addon.old/facebook/facebook.php:773
 msgid "Real-Time Updates"
 msgstr "Atualizações em tempo real"
 
 #: ../../addon/facebook/facebook.php:777
+#: ../../addon.old/facebook/facebook.php:777
 msgid "Real-Time Updates are activated."
 msgstr "As atualizações em tempo real estão ativadas."
 
 #: ../../addon/facebook/facebook.php:778
+#: ../../addon.old/facebook/facebook.php:778
 msgid "Deactivate Real-Time Updates"
 msgstr "Desativar as atualizações em tempo real."
 
 #: ../../addon/facebook/facebook.php:780
+#: ../../addon.old/facebook/facebook.php:780
 msgid "Real-Time Updates not activated."
 msgstr "As atualizações em tempo real não estão ativadas."
 
 #: ../../addon/facebook/facebook.php:780
+#: ../../addon.old/facebook/facebook.php:780
 msgid "Activate Real-Time Updates"
 msgstr "Ativar atualizações em tempo real"
 
 #: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282
 #: ../../addon/dav/friendica/layout.fnk.php:361
+#: ../../addon.old/facebook/facebook.php:799
+#: ../../addon.old/fbpost/fbpost.php:282
+#: ../../addon.old/dav/friendica/layout.fnk.php:361
 msgid "The new values have been saved."
 msgstr "Os novos valores foram salvos."
 
 #: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301
+#: ../../addon.old/facebook/facebook.php:823
+#: ../../addon.old/fbpost/fbpost.php:301
 msgid "Post to Facebook"
 msgstr "Publicar no Facebook"
 
 #: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399
+#: ../../addon.old/facebook/facebook.php:921
+#: ../../addon.old/fbpost/fbpost.php:399
 msgid ""
 "Post to Facebook cancelled because of multi-network access permission "
 "conflict."
 msgstr "A publicação no Facebook foi cancelada devido a um conflito de permissão de acesso multi-rede."
 
 #: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610
+#: ../../addon.old/facebook/facebook.php:1149
+#: ../../addon.old/fbpost/fbpost.php:610
 msgid "View on Friendica"
 msgstr "Ver no Friendica"
 
 #: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643
+#: ../../addon.old/facebook/facebook.php:1182
+#: ../../addon.old/fbpost/fbpost.php:643
 msgid "Facebook post failed. Queued for retry."
 msgstr "Não foi possível publicar no Facebook. Armazenado na fila para nova tentativa."
 
 #: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683
+#: ../../addon.old/facebook/facebook.php:1222
+#: ../../addon.old/fbpost/fbpost.php:683
 msgid "Your Facebook connection became invalid. Please Re-authenticate."
 msgstr "A sua conexão com o Facebook tornou-se invalida. Por favor autentique-se novamente."
 
 #: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684
+#: ../../addon.old/facebook/facebook.php:1223
+#: ../../addon.old/fbpost/fbpost.php:684
 msgid "Facebook connection became invalid"
 msgstr "A conexão com o Facebook tornou-se inválida"
 
 #: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685
+#: ../../addon.old/facebook/facebook.php:1224
+#: ../../addon.old/fbpost/fbpost.php:685
 #, php-format
 msgid ""
 "Hi %1$s,\n"
 "\n"
 "The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
-msgstr ""
+msgstr "Olá %1$s,\n\nA conexão entre suas contas em %2$s e o Facebook se tornou inválida. Isso geralmente acontece quando se troca a senha do Facebook. Para habilitar a conexão novamente vocẽ deve %3$sreautenticar o conector do Facebook%4$s."
 
 #: ../../addon/snautofollow/snautofollow.php:32
+#: ../../addon.old/snautofollow/snautofollow.php:32
 msgid "StatusNet AutoFollow settings updated."
 msgstr ""
 
 #: ../../addon/snautofollow/snautofollow.php:56
+#: ../../addon.old/snautofollow/snautofollow.php:56
 msgid "StatusNet AutoFollow Settings"
 msgstr ""
 
 #: ../../addon/snautofollow/snautofollow.php:58
+#: ../../addon.old/snautofollow/snautofollow.php:58
 msgid "Automatically follow any StatusNet followers/mentioners"
 msgstr ""
 
-#: ../../addon/bg/bg.php:51
-msgid "Bg settings updated."
-msgstr ""
-
-#: ../../addon/bg/bg.php:82
-msgid "Bg Settings"
-msgstr ""
-
-#: ../../addon/bg/bg.php:84 ../../addon/numfriends/numfriends.php:79
-msgid "How many contacts to display on profile sidebar"
-msgstr "Quantos contatos mostrar na barra lateral do perfil"
-
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:260
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:278
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
 msgid "Lifetime of the cache (in hours)"
 msgstr "Tempo de vida do cache (em horas)"
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:265
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:283
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
 msgid "Cache Statistics"
 msgstr "Estatísticas do cache"
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:268
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:286
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
 msgid "Number of items"
 msgstr "Número de itens"
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:270
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:288
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
 msgid "Size of the cache"
 msgstr "Tamanho do cache"
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:272
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:290
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
 msgid "Delete the whole cache"
 msgstr "Excluir o cache inteiro"
 
-#: ../../addon/fbpost/fbpost.php:172
+#: ../../addon/fbpost/fbpost.php:172 ../../addon.old/fbpost/fbpost.php:172
 msgid "Facebook Post disabled"
 msgstr "A publicação no Facebook foi desabilitada"
 
-#: ../../addon/fbpost/fbpost.php:199
+#: ../../addon/fbpost/fbpost.php:199 ../../addon.old/fbpost/fbpost.php:199
 msgid "Facebook Post"
 msgstr "Publicação no Facebook"
 
-#: ../../addon/fbpost/fbpost.php:205
+#: ../../addon/fbpost/fbpost.php:205 ../../addon.old/fbpost/fbpost.php:205
 msgid "Install Facebook Post connector for this account."
 msgstr "Instalar o conector de publicação no Facebook para esta conta."
 
-#: ../../addon/fbpost/fbpost.php:212
+#: ../../addon/fbpost/fbpost.php:212 ../../addon.old/fbpost/fbpost.php:212
 msgid "Remove Facebook Post connector"
 msgstr "Remover o conector de publicação no Facebook"
 
-#: ../../addon/fbpost/fbpost.php:240
+#: ../../addon/fbpost/fbpost.php:240 ../../addon.old/fbpost/fbpost.php:240
 msgid "Facebook Post Settings"
 msgstr "Configurações de publicação no Facebook"
 
 #: ../../addon/widgets/widget_like.php:58
+#: ../../addon.old/widgets/widget_like.php:58
 #, php-format
 msgid "%d person likes this"
 msgid_plural "%d people like this"
@@ -5039,6 +5284,7 @@ msgstr[0] "%d pessoa gosta disso"
 msgstr[1] "%d pessoas gostam disso"
 
 #: ../../addon/widgets/widget_like.php:61
+#: ../../addon.old/widgets/widget_like.php:61
 #, php-format
 msgid "%d person doesn't like this"
 msgid_plural "%d people don't like this"
@@ -5046,225 +5292,263 @@ msgstr[0] "%d pessoa não gosta disso"
 msgstr[1] "%d pessoas gostam disso"
 
 #: ../../addon/widgets/widget_friendheader.php:40
+#: ../../addon.old/widgets/widget_friendheader.php:40
 msgid "Get added to this list!"
 msgstr ""
 
-#: ../../addon/widgets/widgets.php:56
+#: ../../addon/widgets/widgets.php:56 ../../addon.old/widgets/widgets.php:56
 msgid "Generate new key"
 msgstr "Gerar nova chave"
 
-#: ../../addon/widgets/widgets.php:59
+#: ../../addon/widgets/widgets.php:59 ../../addon.old/widgets/widgets.php:59
 msgid "Widgets key"
 msgstr "Chave de widgets"
 
-#: ../../addon/widgets/widgets.php:61
+#: ../../addon/widgets/widgets.php:61 ../../addon.old/widgets/widgets.php:61
 msgid "Widgets available"
 msgstr "Widgets disponíveis"
 
 #: ../../addon/widgets/widget_friends.php:40
+#: ../../addon.old/widgets/widget_friends.php:40
 msgid "Connect on Friendica!"
 msgstr "Conecte no Friendica!"
 
 #: ../../addon/morepokes/morepokes.php:19
+#: ../../addon.old/morepokes/morepokes.php:19
 msgid "bitchslap"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:19
+#: ../../addon.old/morepokes/morepokes.php:19
 msgid "bitchslapped"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:20
+#: ../../addon.old/morepokes/morepokes.php:20
 msgid "shag"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:20
+#: ../../addon.old/morepokes/morepokes.php:20
 msgid "shagged"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:21
+#: ../../addon.old/morepokes/morepokes.php:21
 msgid "do something obscenely biological to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:21
+#: ../../addon.old/morepokes/morepokes.php:21
 msgid "did something obscenely biological to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:22
+#: ../../addon.old/morepokes/morepokes.php:22
 msgid "point out the poke feature to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:22
+#: ../../addon.old/morepokes/morepokes.php:22
 msgid "pointed out the poke feature to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:23
+#: ../../addon.old/morepokes/morepokes.php:23
 msgid "declare undying love for"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:23
+#: ../../addon.old/morepokes/morepokes.php:23
 msgid "declared undying love for"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:24
+#: ../../addon.old/morepokes/morepokes.php:24
 msgid "patent"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:24
+#: ../../addon.old/morepokes/morepokes.php:24
 msgid "patented"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:25
+#: ../../addon.old/morepokes/morepokes.php:25
 msgid "stroke beard"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:25
+#: ../../addon.old/morepokes/morepokes.php:25
 msgid "stroked their beard at"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:26
+#: ../../addon.old/morepokes/morepokes.php:26
 msgid ""
 "bemoan the declining standards of modern secondary and tertiary education to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:26
+#: ../../addon.old/morepokes/morepokes.php:26
 msgid ""
 "bemoans the declining standards of modern secondary and tertiary education "
 "to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:27
+#: ../../addon.old/morepokes/morepokes.php:27
 msgid "hug"
 msgstr "abraço"
 
 #: ../../addon/morepokes/morepokes.php:27
+#: ../../addon.old/morepokes/morepokes.php:27
 msgid "hugged"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:28
+#: ../../addon.old/morepokes/morepokes.php:28
 msgid "kiss"
 msgstr "beijo"
 
 #: ../../addon/morepokes/morepokes.php:28
+#: ../../addon.old/morepokes/morepokes.php:28
 msgid "kissed"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:29
+#: ../../addon.old/morepokes/morepokes.php:29
 msgid "raise eyebrows at"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:29
+#: ../../addon.old/morepokes/morepokes.php:29
 msgid "raised their eyebrows at"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:30
+#: ../../addon.old/morepokes/morepokes.php:30
 msgid "insult"
 msgstr "insultar"
 
 #: ../../addon/morepokes/morepokes.php:30
+#: ../../addon.old/morepokes/morepokes.php:30
 msgid "insulted"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:31
+#: ../../addon.old/morepokes/morepokes.php:31
 msgid "praise"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:31
+#: ../../addon.old/morepokes/morepokes.php:31
 msgid "praised"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:32
+#: ../../addon.old/morepokes/morepokes.php:32
 msgid "be dubious of"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:32
+#: ../../addon.old/morepokes/morepokes.php:32
 msgid "was dubious of"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:33
+#: ../../addon.old/morepokes/morepokes.php:33
 msgid "eat"
 msgstr "comer"
 
 #: ../../addon/morepokes/morepokes.php:33
+#: ../../addon.old/morepokes/morepokes.php:33
 msgid "ate"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:34
+#: ../../addon.old/morepokes/morepokes.php:34
 msgid "giggle and fawn at"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:34
+#: ../../addon.old/morepokes/morepokes.php:34
 msgid "giggled and fawned at"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:35
+#: ../../addon.old/morepokes/morepokes.php:35
 msgid "doubt"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:35
+#: ../../addon.old/morepokes/morepokes.php:35
 msgid "doubted"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:36
+#: ../../addon.old/morepokes/morepokes.php:36
 msgid "glare"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:36
+#: ../../addon.old/morepokes/morepokes.php:36
 msgid "glared at"
 msgstr ""
 
-#: ../../addon/yourls/yourls.php:55
+#: ../../addon/yourls/yourls.php:55 ../../addon.old/yourls/yourls.php:55
 msgid "YourLS Settings"
 msgstr "Configurações YourLS"
 
-#: ../../addon/yourls/yourls.php:57
+#: ../../addon/yourls/yourls.php:57 ../../addon.old/yourls/yourls.php:57
 msgid "URL: http://"
 msgstr "URL: http://"
 
-#: ../../addon/yourls/yourls.php:62
+#: ../../addon/yourls/yourls.php:62 ../../addon.old/yourls/yourls.php:62
 msgid "Username:"
 msgstr "Usuário:"
 
-#: ../../addon/yourls/yourls.php:67
+#: ../../addon/yourls/yourls.php:67 ../../addon.old/yourls/yourls.php:67
 msgid "Password:"
 msgstr "Senha:"
 
-#: ../../addon/yourls/yourls.php:72
+#: ../../addon/yourls/yourls.php:72 ../../addon.old/yourls/yourls.php:72
 msgid "Use SSL "
 msgstr "Use SSL "
 
-#: ../../addon/yourls/yourls.php:92
+#: ../../addon/yourls/yourls.php:92 ../../addon.old/yourls/yourls.php:92
 msgid "yourls Settings saved."
 msgstr "yourls Settings sabed"
 
-#: ../../addon/ljpost/ljpost.php:39
+#: ../../addon/ljpost/ljpost.php:39 ../../addon.old/ljpost/ljpost.php:39
 msgid "Post to LiveJournal"
 msgstr "Publicar no LiveJournal"
 
-#: ../../addon/ljpost/ljpost.php:70
+#: ../../addon/ljpost/ljpost.php:70 ../../addon.old/ljpost/ljpost.php:70
 msgid "LiveJournal Post Settings"
 msgstr "Configurações de publicação no LiveJournal"
 
-#: ../../addon/ljpost/ljpost.php:72
+#: ../../addon/ljpost/ljpost.php:72 ../../addon.old/ljpost/ljpost.php:72
 msgid "Enable LiveJournal Post Plugin"
 msgstr "Habilitar o plugin de publicação no LiveJournal"
 
-#: ../../addon/ljpost/ljpost.php:77
+#: ../../addon/ljpost/ljpost.php:77 ../../addon.old/ljpost/ljpost.php:77
 msgid "LiveJournal username"
 msgstr "Nome de usuário do LiveJournal"
 
-#: ../../addon/ljpost/ljpost.php:82
+#: ../../addon/ljpost/ljpost.php:82 ../../addon.old/ljpost/ljpost.php:82
 msgid "LiveJournal password"
 msgstr "Senha do LiveJournal"
 
-#: ../../addon/ljpost/ljpost.php:87
+#: ../../addon/ljpost/ljpost.php:87 ../../addon.old/ljpost/ljpost.php:87
 msgid "Post to LiveJournal by default"
 msgstr "Publicar no LiveJournal por padrão"
 
-#: ../../addon/nsfw/nsfw.php:78
+#: ../../addon/nsfw/nsfw.php:78 ../../addon.old/nsfw/nsfw.php:78
 msgid "Not Safe For Work (General Purpose Content Filter) settings"
-msgstr ""
+msgstr "Configurações do filtro de conteúdo impróprio para o local de trabalho (Not Safe For Work)"
 
-#: ../../addon/nsfw/nsfw.php:80
+#: ../../addon/nsfw/nsfw.php:80 ../../addon.old/nsfw/nsfw.php:80
 msgid ""
 "This plugin looks in posts for the words/text you specify below, and "
 "collapses any content containing those keywords so it is not displayed at "
@@ -5274,98 +5558,118 @@ msgid ""
 " can thereby be used as a general purpose content filter."
 msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:81
+#: ../../addon/nsfw/nsfw.php:81 ../../addon.old/nsfw/nsfw.php:81
 msgid "Enable Content filter"
 msgstr "Habilitar o filtro de conteúdo"
 
-#: ../../addon/nsfw/nsfw.php:84
+#: ../../addon/nsfw/nsfw.php:84 ../../addon.old/nsfw/nsfw.php:84
 msgid "Comma separated list of keywords to hide"
 msgstr "Lista de palavras-chave a serem ocultadas, separadas por vírgula"
 
-#: ../../addon/nsfw/nsfw.php:89
+#: ../../addon/nsfw/nsfw.php:89 ../../addon.old/nsfw/nsfw.php:89
 msgid "Use /expression/ to provide regular expressions"
 msgstr "Use /expressão/ para fornecer a expressão regular"
 
-#: ../../addon/nsfw/nsfw.php:105
+#: ../../addon/nsfw/nsfw.php:105 ../../addon.old/nsfw/nsfw.php:105
 msgid "NSFW Settings saved."
 msgstr "Configurações NSFW armazenadas."
 
-#: ../../addon/nsfw/nsfw.php:157
+#: ../../addon/nsfw/nsfw.php:157 ../../addon.old/nsfw/nsfw.php:157
 #, php-format
 msgid "%s - Click to open/close"
 msgstr "%s "
 
 #: ../../addon/page/page.php:62 ../../addon/page/page.php:92
-#: ../../addon/forumlist/forumlist.php:60
+#: ../../addon/forumlist/forumlist.php:60 ../../addon.old/page/page.php:62
+#: ../../addon.old/page/page.php:92 ../../addon.old/forumlist/forumlist.php:60
 msgid "Forums"
 msgstr "Fóruns"
 
 #: ../../addon/page/page.php:130 ../../addon/forumlist/forumlist.php:94
+#: ../../addon.old/page/page.php:130
+#: ../../addon.old/forumlist/forumlist.php:94
 msgid "Forums:"
 msgstr "Fóruns:"
 
-#: ../../addon/page/page.php:166
+#: ../../addon/page/page.php:166 ../../addon.old/page/page.php:166
 msgid "Page settings updated."
 msgstr "As configurações da página foram atualizadas."
 
-#: ../../addon/page/page.php:195
+#: ../../addon/page/page.php:195 ../../addon.old/page/page.php:195
 msgid "Page Settings"
 msgstr "Configurações da página"
 
-#: ../../addon/page/page.php:197
+#: ../../addon/page/page.php:197 ../../addon.old/page/page.php:197
 msgid "How many forums to display on sidebar without paging"
 msgstr ""
 
-#: ../../addon/page/page.php:200
+#: ../../addon/page/page.php:200 ../../addon.old/page/page.php:200
 msgid "Randomise Page/Forum list"
 msgstr ""
 
-#: ../../addon/page/page.php:203
+#: ../../addon/page/page.php:203 ../../addon.old/page/page.php:203
 msgid "Show pages/forums on profile page"
 msgstr ""
 
-#: ../../addon/planets/planets.php:150
+#: ../../addon/planets/planets.php:150 ../../addon.old/planets/planets.php:150
 msgid "Planets Settings"
-msgstr ""
+msgstr "Configuração dos planetas"
 
-#: ../../addon/planets/planets.php:152
+#: ../../addon/planets/planets.php:152 ../../addon.old/planets/planets.php:152
 msgid "Enable Planets Plugin"
+msgstr "Habilita configuração dos planetas"
+
+#: ../../addon/forumdirectory/forumdirectory.php:22
+msgid "Forum Directory"
 msgstr ""
 
 #: ../../addon/communityhome/communityhome.php:28
 #: ../../addon/communityhome/communityhome.php:34
 #: ../../addon/communityhome/twillingham/communityhome.php:28
 #: ../../addon/communityhome/twillingham/communityhome.php:34
-#: ../../include/nav.php:64 ../../boot.php:922
+#: ../../include/nav.php:64 ../../boot.php:949
+#: ../../addon.old/communityhome/communityhome.php:28
+#: ../../addon.old/communityhome/communityhome.php:34
+#: ../../addon.old/communityhome/twillingham/communityhome.php:28
+#: ../../addon.old/communityhome/twillingham/communityhome.php:34
 msgid "Login"
 msgstr "Entrar"
 
 #: ../../addon/communityhome/communityhome.php:29
 #: ../../addon/communityhome/twillingham/communityhome.php:29
+#: ../../addon.old/communityhome/communityhome.php:29
+#: ../../addon.old/communityhome/twillingham/communityhome.php:29
 msgid "OpenID"
 msgstr "OpenID"
 
 #: ../../addon/communityhome/communityhome.php:38
 #: ../../addon/communityhome/twillingham/communityhome.php:38
+#: ../../addon.old/communityhome/communityhome.php:38
+#: ../../addon.old/communityhome/twillingham/communityhome.php:38
 msgid "Latest users"
 msgstr "Últimos usuários"
 
 #: ../../addon/communityhome/communityhome.php:81
 #: ../../addon/communityhome/twillingham/communityhome.php:81
+#: ../../addon.old/communityhome/communityhome.php:81
+#: ../../addon.old/communityhome/twillingham/communityhome.php:81
 msgid "Most active users"
 msgstr "Usuários mais ativos"
 
 #: ../../addon/communityhome/communityhome.php:98
+#: ../../addon.old/communityhome/communityhome.php:98
 msgid "Latest photos"
 msgstr "Últimas fotos"
 
 #: ../../addon/communityhome/communityhome.php:133
+#: ../../addon.old/communityhome/communityhome.php:133
 msgid "Latest likes"
 msgstr ""
 
 #: ../../addon/communityhome/communityhome.php:155
-#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1437
+#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1440
 #: ../../include/conversation.php:117 ../../include/conversation.php:245
+#: ../../addon.old/communityhome/communityhome.php:155
 msgid "event"
 msgstr "evento"
 
@@ -5375,107 +5679,141 @@ msgstr "evento"
 #: ../../addon/dav/common/wdcal_backend.inc.php:206
 #: ../../addon/dav/common/wdcal_backend.inc.php:214
 #: ../../addon/dav/common/wdcal_backend.inc.php:229
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:92
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:166
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:178
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:206
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:214
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:229
 msgid "No access"
 msgstr "Nenhum acesso"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:30
 #: ../../addon/dav/common/wdcal_edit.inc.php:738
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:30
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:738
 msgid "Could not open component for editing"
 msgstr "Não foi possível abrir o componente para edição"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:140
 #: ../../addon/dav/friendica/layout.fnk.php:143
 #: ../../addon/dav/friendica/layout.fnk.php:422
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:140
+#: ../../addon.old/dav/friendica/layout.fnk.php:143
+#: ../../addon.old/dav/friendica/layout.fnk.php:422
 msgid "Go back to the calendar"
 msgstr "Voltar para a agenda"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:144
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
 msgid "Event data"
 msgstr "Data do evento"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:146
 #: ../../addon/dav/friendica/main.php:239
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:146
+#: ../../addon.old/dav/friendica/main.php:239
 msgid "Calendar"
 msgstr "Agenda"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:163
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
 msgid "Special color"
 msgstr "Cor especial"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:169
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
 msgid "Subject"
 msgstr "Assunto"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:173
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
 msgid "Starts"
 msgstr "Início"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:178
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
 msgid "Ends"
 msgstr "Término"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:185
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
 msgid "Description"
 msgstr "Descrição"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:188
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
 msgid "Recurrence"
 msgstr "Recorrência"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:190
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
 msgid "Frequency"
 msgstr "Frequência"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:194
 #: ../../include/contact_selectors.php:59
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:194
 msgid "Daily"
 msgstr "Diariamente"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:197
 #: ../../include/contact_selectors.php:60
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:197
 msgid "Weekly"
 msgstr "Semanalmente"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:200
 #: ../../include/contact_selectors.php:61
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:200
 msgid "Monthly"
 msgstr "Mensalmente"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:203
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
 msgid "Yearly"
 msgstr "Anualmente"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:214
 #: ../../include/datetime.php:288
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
 msgid "days"
 msgstr "dias"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:215
 #: ../../include/datetime.php:287
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
 msgid "weeks"
 msgstr "semanas"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:216
 #: ../../include/datetime.php:286
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
 msgid "months"
 msgstr "meses"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:217
 #: ../../include/datetime.php:285
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
 msgid "years"
 msgstr "anos"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:218
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
 msgid "Interval"
 msgstr "Intervalo"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:218
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
 msgid "All %select% %time%"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:222
 #: ../../addon/dav/common/wdcal_edit.inc.php:260
 #: ../../addon/dav/common/wdcal_edit.inc.php:481
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:222
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:260
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:481
 msgid "Days"
 msgstr "Dias"
 
@@ -5483,317 +5821,408 @@ msgstr "Dias"
 #: ../../addon/dav/common/wdcal_edit.inc.php:254
 #: ../../addon/dav/common/wdcal_edit.inc.php:270
 #: ../../addon/dav/common/wdcal_edit.inc.php:293
-#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:293
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:305
 msgid "Sunday"
 msgstr "Domingo"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:235
 #: ../../addon/dav/common/wdcal_edit.inc.php:274
-#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
 msgid "Monday"
 msgstr "Segunda"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:238
-#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
 msgid "Tuesday"
 msgstr "Terça"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:241
-#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
 msgid "Wednesday"
 msgstr "Quarta"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:244
-#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
 msgid "Thursday"
 msgstr "Quinta"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:247
-#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
 msgid "Friday"
 msgstr "Sexta"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:250
-#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
 msgid "Saturday"
 msgstr "Sábado"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:297
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
 msgid "First day of week:"
 msgstr "Primeiro dia da semana:"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:350
 #: ../../addon/dav/common/wdcal_edit.inc.php:373
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:350
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:373
 msgid "Day of month"
 msgstr "Dia do mês"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:354
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
 msgid "#num#th of each month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:357
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:357
 msgid "#num#th-last of each month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:360
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:360
 msgid "#num#th #wkday# of each month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:363
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:363
 msgid "#num#th-last #wkday# of each month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:372
 #: ../../addon/dav/friendica/layout.fnk.php:255
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:372
+#: ../../addon.old/dav/friendica/layout.fnk.php:255
 msgid "Month"
 msgstr "Mês"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:377
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:377
 msgid "#num#th of the given month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:380
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:380
 msgid "#num#th-last of the given month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:383
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:383
 msgid "#num#th #wkday# of the given month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:386
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:386
 msgid "#num#th-last #wkday# of the given month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:413
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
 msgid "Repeat until"
 msgstr "Repetir até"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:417
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
 msgid "Infinite"
 msgstr "Infinito"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:420
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
 msgid "Until the following date"
 msgstr "Até a seguinte data"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:423
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
 msgid "Number of times"
 msgstr "Número de vezes"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:429
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
 msgid "Exceptions"
 msgstr "Exceções"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:432
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
 msgid "none"
 msgstr "nenhuma"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:449
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
 msgid "Notification"
 msgstr "Notificação"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:466
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
 msgid "Notify by"
 msgstr "Notificar por"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:469
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
 msgid "E-Mail"
 msgstr "E-Mail"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:470
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
 msgid "On Friendica / Display"
 msgstr "Na Friendica / Exibir"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:474
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
 msgid "Time"
 msgstr "Tempo"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:478
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
 msgid "Hours"
 msgstr "Horas"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:479
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
 msgid "Minutes"
 msgstr "Minutos"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:480
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
 msgid "Seconds"
 msgstr "Segundos"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:482
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
 msgid "Weeks"
 msgstr "Semanas"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:485
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
 msgid "before the"
 msgstr "antes do"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:486
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
 msgid "start of the event"
 msgstr "início do evento"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:487
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
 msgid "end of the event"
 msgstr "fim do evento"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:492
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
 msgid "Add a notification"
 msgstr "Adicionar uma notificação"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:687
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:687
 msgid "The event #name# will start at #date"
 msgstr "O evento #name# iniciará em #date"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:696
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
 msgid "#name# is about to begin."
 msgstr "#name# está prestes a começar."
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:769
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
 msgid "Saved"
 msgstr "Salvo"
 
 #: ../../addon/dav/common/wdcal_configuration.php:148
+#: ../../addon.old/dav/common/wdcal_configuration.php:148
 msgid "U.S. Time Format (mm/dd/YYYY)"
 msgstr "Formato de data estadunidense (mm/dd/YYYY)"
 
 #: ../../addon/dav/common/wdcal_configuration.php:243
+#: ../../addon.old/dav/common/wdcal_configuration.php:243
 msgid "German Time Format (dd.mm.YYYY)"
 msgstr "Formato de data alemão (dd.mm.YYYY)"
 
 #: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
+#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39
 msgid "Private Events"
 msgstr "Eventos privados"
 
 #: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
+#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46
 msgid "Private Addressbooks"
 msgstr "Livros de endereço privados"
 
 #: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
+#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
 msgid "Friendica-Native events"
 msgstr "Eventos nativos do Friendica"
 
 #: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
 #: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
 msgid "Friendica-Contacts"
 msgstr "Contatos Friendica"
 
 #: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
 msgid "Your Friendica-Contacts"
 msgstr "Seus contatos Friendica"
 
 #: ../../addon/dav/friendica/layout.fnk.php:99
 #: ../../addon/dav/friendica/layout.fnk.php:136
+#: ../../addon.old/dav/friendica/layout.fnk.php:99
+#: ../../addon.old/dav/friendica/layout.fnk.php:136
 msgid ""
 "Something went wrong when trying to import the file. Sorry. Maybe some "
 "events were imported anyway."
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:131
+#: ../../addon.old/dav/friendica/layout.fnk.php:131
 msgid "Something went wrong when trying to import the file. Sorry."
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:134
+#: ../../addon.old/dav/friendica/layout.fnk.php:134
 msgid "The ICS-File has been imported."
 msgstr "O arquivo ICS foi importado."
 
 #: ../../addon/dav/friendica/layout.fnk.php:138
+#: ../../addon.old/dav/friendica/layout.fnk.php:138
 msgid "No file was uploaded."
 msgstr "Não foi enviado nenhum arquivo."
 
 #: ../../addon/dav/friendica/layout.fnk.php:147
+#: ../../addon.old/dav/friendica/layout.fnk.php:147
 msgid "Import a ICS-file"
 msgstr "Importar um arquivo ICS"
 
 #: ../../addon/dav/friendica/layout.fnk.php:150
+#: ../../addon.old/dav/friendica/layout.fnk.php:150
 msgid "ICS-File"
 msgstr "Arquivo ICS"
 
 #: ../../addon/dav/friendica/layout.fnk.php:151
+#: ../../addon.old/dav/friendica/layout.fnk.php:151
 msgid "Overwrite all #num# existing events"
 msgstr "Sobrescrever todos os #num# eventos existentes"
 
 #: ../../addon/dav/friendica/layout.fnk.php:228
+#: ../../addon.old/dav/friendica/layout.fnk.php:228
 msgid "New event"
 msgstr "Novo evento"
 
 #: ../../addon/dav/friendica/layout.fnk.php:232
+#: ../../addon.old/dav/friendica/layout.fnk.php:232
 msgid "Today"
 msgstr "Hoje"
 
 #: ../../addon/dav/friendica/layout.fnk.php:241
+#: ../../addon.old/dav/friendica/layout.fnk.php:241
 msgid "Day"
 msgstr "Dia"
 
 #: ../../addon/dav/friendica/layout.fnk.php:248
+#: ../../addon.old/dav/friendica/layout.fnk.php:248
 msgid "Week"
 msgstr "Semana"
 
 #: ../../addon/dav/friendica/layout.fnk.php:260
+#: ../../addon.old/dav/friendica/layout.fnk.php:260
 msgid "Reload"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:271
+#: ../../addon.old/dav/friendica/layout.fnk.php:271
 msgid "Date"
 msgstr "Data"
 
 #: ../../addon/dav/friendica/layout.fnk.php:313
+#: ../../addon.old/dav/friendica/layout.fnk.php:313
 msgid "Error"
 msgstr "Erro"
 
 #: ../../addon/dav/friendica/layout.fnk.php:380
+#: ../../addon.old/dav/friendica/layout.fnk.php:380
 msgid "The calendar has been updated."
 msgstr "A agenda foi atualizada."
 
 #: ../../addon/dav/friendica/layout.fnk.php:393
+#: ../../addon.old/dav/friendica/layout.fnk.php:393
 msgid "The new calendar has been created."
 msgstr "A nova agenda foi criada."
 
 #: ../../addon/dav/friendica/layout.fnk.php:417
+#: ../../addon.old/dav/friendica/layout.fnk.php:417
 msgid "The calendar has been deleted."
 msgstr "A agenda foi excluída."
 
 #: ../../addon/dav/friendica/layout.fnk.php:424
+#: ../../addon.old/dav/friendica/layout.fnk.php:424
 msgid "Calendar Settings"
 msgstr "Configurações da agenda"
 
 #: ../../addon/dav/friendica/layout.fnk.php:430
+#: ../../addon.old/dav/friendica/layout.fnk.php:430
 msgid "Date format"
 msgstr "Formato da data"
 
 #: ../../addon/dav/friendica/layout.fnk.php:439
+#: ../../addon.old/dav/friendica/layout.fnk.php:439
 msgid "Time zone"
 msgstr "Fuso horário"
 
 #: ../../addon/dav/friendica/layout.fnk.php:445
+#: ../../addon.old/dav/friendica/layout.fnk.php:445
 msgid "Calendars"
 msgstr "Agendas"
 
 #: ../../addon/dav/friendica/layout.fnk.php:487
+#: ../../addon.old/dav/friendica/layout.fnk.php:487
 msgid "Create a new calendar"
 msgstr "Criar uma nova agenda"
 
 #: ../../addon/dav/friendica/layout.fnk.php:496
+#: ../../addon.old/dav/friendica/layout.fnk.php:496
 msgid "Limitations"
 msgstr "Limitações"
 
 #: ../../addon/dav/friendica/layout.fnk.php:500
 #: ../../addon/libravatar/libravatar.php:82
+#: ../../addon.old/dav/friendica/layout.fnk.php:500
+#: ../../addon.old/libravatar/libravatar.php:82
 msgid "Warning"
 msgstr "Aviso"
 
 #: ../../addon/dav/friendica/layout.fnk.php:504
+#: ../../addon.old/dav/friendica/layout.fnk.php:504
 msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
 msgstr "Sincronização (iPhone, Thunderbird Lightning, Android, ...)"
 
 #: ../../addon/dav/friendica/layout.fnk.php:511
+#: ../../addon.old/dav/friendica/layout.fnk.php:511
 msgid "Synchronizing this calendar with the iPhone"
 msgstr "Sincronização desta agenda com o iPhone"
 
 #: ../../addon/dav/friendica/layout.fnk.php:522
+#: ../../addon.old/dav/friendica/layout.fnk.php:522
 msgid "Synchronizing your Friendica-Contacts with the iPhone"
 msgstr "Sincronização dos seus contatos Friendica com o iPhone"
 
 #: ../../addon/dav/friendica/main.php:202
+#: ../../addon.old/dav/friendica/main.php:202
 msgid ""
 "The current version of this plugin has not been set up correctly. Please "
 "contact the system administrator of your installation of friendica to fix "
@@ -5801,52 +6230,65 @@ msgid ""
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:242
+#: ../../addon.old/dav/friendica/main.php:242
 msgid "Extended calendar with CalDAV-support"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:279
 #: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464
-#: ../../include/enotify.php:28 ../../include/notifier.php:710
+#: ../../include/enotify.php:28 ../../include/notifier.php:778
+#: ../../addon.old/dav/friendica/main.php:279
+#: ../../addon.old/dav/friendica/main.php:280
 msgid "noreply"
 msgstr "naoresponda"
 
 #: ../../addon/dav/friendica/main.php:282
+#: ../../addon.old/dav/friendica/main.php:282
 msgid "Notification: "
 msgstr "Notificação:"
 
 #: ../../addon/dav/friendica/main.php:309
+#: ../../addon.old/dav/friendica/main.php:309
 msgid "The database tables have been installed."
 msgstr "As tabelas do banco de dados foram instaladas."
 
 #: ../../addon/dav/friendica/main.php:310
+#: ../../addon.old/dav/friendica/main.php:310
 msgid "An error occurred during the installation."
 msgstr "Ocorreu um erro durante a instalação."
 
 #: ../../addon/dav/friendica/main.php:316
+#: ../../addon.old/dav/friendica/main.php:316
 msgid "The database tables have been updated."
 msgstr "As tabelas do banco de dados foram atualizadas."
 
 #: ../../addon/dav/friendica/main.php:317
+#: ../../addon.old/dav/friendica/main.php:317
 msgid "An error occurred during the update."
 msgstr "Ocorreu um erro durante a atualização."
 
 #: ../../addon/dav/friendica/main.php:333
+#: ../../addon.old/dav/friendica/main.php:333
 msgid "No system-wide settings yet."
 msgstr "Ainda não existe nenhuma configuração global do sistema."
 
 #: ../../addon/dav/friendica/main.php:336
+#: ../../addon.old/dav/friendica/main.php:336
 msgid "Database status"
 msgstr "Situação do banco de dados"
 
 #: ../../addon/dav/friendica/main.php:339
+#: ../../addon.old/dav/friendica/main.php:339
 msgid "Installed"
 msgstr "Instalado"
 
 #: ../../addon/dav/friendica/main.php:343
+#: ../../addon.old/dav/friendica/main.php:343
 msgid "Upgrade needed"
 msgstr "É necessária uma atualização"
 
 #: ../../addon/dav/friendica/main.php:343
+#: ../../addon.old/dav/friendica/main.php:343
 msgid ""
 "Please back up all calendar data (the tables beginning with dav_*) before "
 "proceeding. While all calendar events <i>should</i> be converted to the new "
@@ -5856,22 +6298,27 @@ msgid ""
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:343
+#: ../../addon.old/dav/friendica/main.php:343
 msgid "Upgrade"
 msgstr "Atualizar"
 
 #: ../../addon/dav/friendica/main.php:346
+#: ../../addon.old/dav/friendica/main.php:346
 msgid "Not installed"
 msgstr "Não instalado"
 
 #: ../../addon/dav/friendica/main.php:346
+#: ../../addon.old/dav/friendica/main.php:346
 msgid "Install"
 msgstr "Instalar"
 
 #: ../../addon/dav/friendica/main.php:350
+#: ../../addon.old/dav/friendica/main.php:350
 msgid "Unknown"
 msgstr "Desconhecido"
 
 #: ../../addon/dav/friendica/main.php:350
+#: ../../addon.old/dav/friendica/main.php:350
 msgid ""
 "Something really went wrong. I cannot recover from this state automatically,"
 " sorry. Please go to the database backend, back up the data, and delete all "
@@ -5880,38 +6327,47 @@ msgid ""
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:355
+#: ../../addon.old/dav/friendica/main.php:355
 msgid "Troubleshooting"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:356
+#: ../../addon.old/dav/friendica/main.php:356
 msgid "Manual creation of the database tables:"
 msgstr "Criação manual das tabelas do banco de dados:"
 
 #: ../../addon/dav/friendica/main.php:357
+#: ../../addon.old/dav/friendica/main.php:357
 msgid "Show SQL-statements"
 msgstr ""
 
 #: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
 msgid "Private Calendar"
 msgstr "Agenda privada"
 
 #: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
 msgid "Friendica Events: Mine"
 msgstr "Eventos Friendica: Meus"
 
 #: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
 msgid "Friendica Events: Contacts"
 msgstr "Eventos Friendica: Contatos"
 
 #: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
 msgid "Private Addresses"
 msgstr "Endereços privados"
 
 #: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
 msgid "Friendica Contacts"
 msgstr "Contatos Friendica"
 
 #: ../../addon/uhremotestorage/uhremotestorage.php:84
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
 #, php-format
 msgid ""
 "Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
@@ -5921,183 +6377,197 @@ msgid ""
 msgstr "Permite o uso do id friendica (%s) para conectar ao armazenamento tipo unhosted externo (ex: ownCloud). Veja <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"
 
 #: ../../addon/uhremotestorage/uhremotestorage.php:85
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
 msgid "Template URL (with {category})"
 msgstr "URL do Template (com {category})"
 
 #: ../../addon/uhremotestorage/uhremotestorage.php:86
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
 msgid "OAuth end-point"
 msgstr "OAuth terminal"
 
 #: ../../addon/uhremotestorage/uhremotestorage.php:87
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
 msgid "Api"
 msgstr "Api"
 
 #: ../../addon/membersince/membersince.php:18
+#: ../../addon.old/membersince/membersince.php:18
 msgid "Member since:"
 msgstr "Membro desde:"
 
-#: ../../addon/tictac/tictac.php:20
+#: ../../addon/tictac/tictac.php:20 ../../addon.old/tictac/tictac.php:20
 msgid "Three Dimensional Tic-Tac-Toe"
 msgstr "Jogo da Velha tridimensional"
 
-#: ../../addon/tictac/tictac.php:53
+#: ../../addon/tictac/tictac.php:53 ../../addon.old/tictac/tictac.php:53
 msgid "3D Tic-Tac-Toe"
 msgstr "Jogo da Velha 3D"
 
-#: ../../addon/tictac/tictac.php:58
+#: ../../addon/tictac/tictac.php:58 ../../addon.old/tictac/tictac.php:58
 msgid "New game"
 msgstr "Novo jogo"
 
-#: ../../addon/tictac/tictac.php:59
+#: ../../addon/tictac/tictac.php:59 ../../addon.old/tictac/tictac.php:59
 msgid "New game with handicap"
 msgstr "Novo jogo com limitador"
 
-#: ../../addon/tictac/tictac.php:60
+#: ../../addon/tictac/tictac.php:60 ../../addon.old/tictac/tictac.php:60
 msgid ""
 "Three dimensional tic-tac-toe is just like the traditional game except that "
 "it is played on multiple levels simultaneously. "
 msgstr "O Jogo da Velha tridimensional é similar ao jogo tradicional, com a exceção que ele é jogado simultaneamente em múltiplos níveis."
 
-#: ../../addon/tictac/tictac.php:61
+#: ../../addon/tictac/tictac.php:61 ../../addon.old/tictac/tictac.php:61
 msgid ""
 "In this case there are three levels. You win by getting three in a row on "
 "any level, as well as up, down, and diagonally across the different levels."
 msgstr "Neste caso, existem três níveis. Ganha quem conseguir alinhar três casas, não só no mesmo nível como também pra cima, pra baixo ou na diagonal entre os níveis."
 
-#: ../../addon/tictac/tictac.php:63
+#: ../../addon/tictac/tictac.php:63 ../../addon.old/tictac/tictac.php:63
 msgid ""
 "The handicap game disables the center position on the middle level because "
 "the player claiming this square often has an unfair advantage."
 msgstr "O jogo com limitador desabilita a posição central do nível do meio, uma vez que o jogador que obtém essa casa ganha uma vantagem desleal."
 
-#: ../../addon/tictac/tictac.php:182
+#: ../../addon/tictac/tictac.php:182 ../../addon.old/tictac/tictac.php:182
 msgid "You go first..."
 msgstr "Você começa..."
 
-#: ../../addon/tictac/tictac.php:187
+#: ../../addon/tictac/tictac.php:187 ../../addon.old/tictac/tictac.php:187
 msgid "I'm going first this time..."
 msgstr "Eu vou começar desta vez..."
 
-#: ../../addon/tictac/tictac.php:193
+#: ../../addon/tictac/tictac.php:193 ../../addon.old/tictac/tictac.php:193
 msgid "You won!"
 msgstr "Você ganhou!"
 
 #: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
+#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224
 msgid "\"Cat\" game!"
 msgstr "Empatamos!"
 
-#: ../../addon/tictac/tictac.php:222
+#: ../../addon/tictac/tictac.php:222 ../../addon.old/tictac/tictac.php:222
 msgid "I won!"
 msgstr "Eu ganhei!"
 
 #: ../../addon/randplace/randplace.php:169
+#: ../../addon.old/randplace/randplace.php:169
 msgid "Randplace Settings"
 msgstr "Configurações do Randplace"
 
 #: ../../addon/randplace/randplace.php:171
+#: ../../addon.old/randplace/randplace.php:171
 msgid "Enable Randplace Plugin"
 msgstr "Habilitar o plugin Randplace"
 
-#: ../../addon/dwpost/dwpost.php:39
+#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39
 msgid "Post to Dreamwidth"
 msgstr "Publicar no Dreamwidth"
 
-#: ../../addon/dwpost/dwpost.php:70
+#: ../../addon/dwpost/dwpost.php:70 ../../addon.old/dwpost/dwpost.php:70
 msgid "Dreamwidth Post Settings"
 msgstr "Configurações de publicação no Dreamwidth"
 
-#: ../../addon/dwpost/dwpost.php:72
+#: ../../addon/dwpost/dwpost.php:72 ../../addon.old/dwpost/dwpost.php:72
 msgid "Enable dreamwidth Post Plugin"
 msgstr "Habilitar o plugin de publicação no Dreamwidth"
 
-#: ../../addon/dwpost/dwpost.php:77
+#: ../../addon/dwpost/dwpost.php:77 ../../addon.old/dwpost/dwpost.php:77
 msgid "dreamwidth username"
 msgstr "Nome de usuário do Dreamwidth"
 
-#: ../../addon/dwpost/dwpost.php:82
+#: ../../addon/dwpost/dwpost.php:82 ../../addon.old/dwpost/dwpost.php:82
 msgid "dreamwidth password"
 msgstr "Senha do Dreamwidth"
 
-#: ../../addon/dwpost/dwpost.php:87
+#: ../../addon/dwpost/dwpost.php:87 ../../addon.old/dwpost/dwpost.php:87
 msgid "Post to dreamwidth by default"
 msgstr "Publicar no Dreamwidth por padrão"
 
-#: ../../addon/drpost/drpost.php:35
-msgid "Post to Drupal"
-msgstr "Postar no Drupal"
-
-#: ../../addon/drpost/drpost.php:72
-msgid "Drupal Post Settings"
-msgstr "Configurações de Postagem no Drupal"
+#: ../../addon/remote_permissions/remote_permissions.php:44
+msgid "Remote Permissions Settings"
+msgstr ""
 
-#: ../../addon/drpost/drpost.php:74
-msgid "Enable Drupal Post Plugin"
-msgstr "Habilitar Plugin de Postagem do Drupal"
+#: ../../addon/remote_permissions/remote_permissions.php:45
+msgid ""
+"Allow recipients of your private posts to see the other recipients of the "
+"posts"
+msgstr ""
 
-#: ../../addon/drpost/drpost.php:79
-msgid "Drupal username"
-msgstr "Nome de Usuário Drupal"
+#: ../../addon/remote_permissions/remote_permissions.php:57
+msgid "Remote Permissions settings updated."
+msgstr ""
 
-#: ../../addon/drpost/drpost.php:84
-msgid "Drupal password"
-msgstr "Senha Drupal"
+#: ../../addon/remote_permissions/remote_permissions.php:177
+msgid "Visible to"
+msgstr ""
 
-#: ../../addon/drpost/drpost.php:89
-msgid "Post Type - article,page,or blog"
-msgstr "Tipo de Postagem - artigo, página ou blog"
+#: ../../addon/remote_permissions/remote_permissions.php:177
+msgid "may only be a partial list"
+msgstr ""
 
-#: ../../addon/drpost/drpost.php:94
-msgid "Drupal site URL"
-msgstr "URL do site Drupal"
+#: ../../addon/remote_permissions/remote_permissions.php:196
+msgid "Global"
+msgstr ""
 
-#: ../../addon/drpost/drpost.php:99
-msgid "Drupal site uses clean URLS"
-msgstr "Site Drupal usa URLs limpas"
+#: ../../addon/remote_permissions/remote_permissions.php:196
+msgid "The posts of every user on this server show the post recipients"
+msgstr ""
 
-#: ../../addon/drpost/drpost.php:104
-msgid "Post to Drupal by default"
-msgstr "Postar para o Drupal como padrão"
+#: ../../addon/remote_permissions/remote_permissions.php:197
+msgid "Individual"
+msgstr ""
 
-#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:201
-#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:189
-msgid "Post from Friendica"
-msgstr "Postar do Friendica"
+#: ../../addon/remote_permissions/remote_permissions.php:197
+msgid "Each user chooses whether his/her posts show the post recipients"
+msgstr ""
 
 #: ../../addon/startpage/startpage.php:83
+#: ../../addon.old/startpage/startpage.php:83
 msgid "Startpage Settings"
 msgstr "Configurações da página inicial"
 
 #: ../../addon/startpage/startpage.php:85
+#: ../../addon.old/startpage/startpage.php:85
 msgid "Home page to load after login  - leave blank for profile wall"
 msgstr "Página a ser carregada após a autenticação - deixe em branco para o mural do perfil"
 
 #: ../../addon/startpage/startpage.php:88
+#: ../../addon.old/startpage/startpage.php:88
 msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
 msgstr "Exemplos: &quot;network&quot; or &quot;notifications/system&quot;"
 
 #: ../../addon/geonames/geonames.php:143
+#: ../../addon.old/geonames/geonames.php:143
 msgid "Geonames settings updated."
 msgstr "Configurações Geonames atualizadas."
 
 #: ../../addon/geonames/geonames.php:179
+#: ../../addon.old/geonames/geonames.php:179
 msgid "Geonames Settings"
 msgstr "Configurações Geonames"
 
 #: ../../addon/geonames/geonames.php:181
+#: ../../addon.old/geonames/geonames.php:181
 msgid "Enable Geonames Plugin"
 msgstr "Plugin Geonames Habilitado"
 
 #: ../../addon/public_server/public_server.php:126
 #: ../../addon/testdrive/testdrive.php:94
+#: ../../addon.old/public_server/public_server.php:126
+#: ../../addon.old/testdrive/testdrive.php:94
 #, php-format
 msgid "Your account on %s will expire in a few days."
 msgstr "Sua conta em %s expirará em poucos dias."
 
 #: ../../addon/public_server/public_server.php:127
+#: ../../addon.old/public_server/public_server.php:127
 msgid "Your Friendica account is about to expire."
 msgstr ""
 
 #: ../../addon/public_server/public_server.php:128
+#: ../../addon.old/public_server/public_server.php:128
 #, php-format
 msgid ""
 "Hi %1$s,\n"
@@ -6106,94 +6576,105 @@ msgid ""
 msgstr ""
 
 #: ../../addon/js_upload/js_upload.php:43
+#: ../../addon.old/js_upload/js_upload.php:43
 msgid "Upload a file"
 msgstr "Enviar um arquivo"
 
 #: ../../addon/js_upload/js_upload.php:44
+#: ../../addon.old/js_upload/js_upload.php:44
 msgid "Drop files here to upload"
 msgstr "Solte os arquivos a serem enviados aqui"
 
 #: ../../addon/js_upload/js_upload.php:46
+#: ../../addon.old/js_upload/js_upload.php:46
 msgid "Failed"
 msgstr "Falhou"
 
-#: ../../addon/js_upload/js_upload.php:297
+#: ../../addon/js_upload/js_upload.php:303
+#: ../../addon.old/js_upload/js_upload.php:297
 msgid "No files were uploaded."
 msgstr "Nenhum arquivo foi enviado."
 
-#: ../../addon/js_upload/js_upload.php:303
+#: ../../addon/js_upload/js_upload.php:309
+#: ../../addon.old/js_upload/js_upload.php:303
 msgid "Uploaded file is empty"
 msgstr "O arquivo enviado está em branco"
 
-#: ../../addon/js_upload/js_upload.php:326
+#: ../../addon/js_upload/js_upload.php:332
+#: ../../addon.old/js_upload/js_upload.php:326
 msgid "File has an invalid extension, it should be one of "
 msgstr "O arquivo possui uma extensão inválida, são aceitas somente "
 
-#: ../../addon/js_upload/js_upload.php:337
+#: ../../addon/js_upload/js_upload.php:343
+#: ../../addon.old/js_upload/js_upload.php:337
 msgid "Upload was cancelled, or server error encountered"
 msgstr "O envio foi cancelado ou ocorreu algum erro no servidor"
 
-#: ../../addon/oembed.old/oembed.php:30
-msgid "OEmbed settings updated"
-msgstr "As configurações OEmbed foram atualizadas"
-
-#: ../../addon/oembed.old/oembed.php:43
-msgid "Use OEmbed for YouTube videos"
-msgstr "Usar OEmbed para vídeos do YouTube"
-
-#: ../../addon/oembed.old/oembed.php:71
-msgid "URL to embed:"
-msgstr "URL a ser incorporada:"
-
 #: ../../addon/forumlist/forumlist.php:63
+#: ../../addon.old/forumlist/forumlist.php:63
 msgid "show/hide"
 msgstr ""
 
 #: ../../addon/forumlist/forumlist.php:77
+#: ../../addon.old/forumlist/forumlist.php:77
 msgid "No forum subscriptions"
 msgstr ""
 
 #: ../../addon/forumlist/forumlist.php:131
+#: ../../addon.old/forumlist/forumlist.php:131
 msgid "Forumlist settings updated."
 msgstr ""
 
 #: ../../addon/forumlist/forumlist.php:159
+#: ../../addon.old/forumlist/forumlist.php:159
 msgid "Forumlist Settings"
 msgstr ""
 
 #: ../../addon/forumlist/forumlist.php:161
+#: ../../addon.old/forumlist/forumlist.php:161
 msgid "Randomise forum list"
 msgstr ""
 
 #: ../../addon/forumlist/forumlist.php:164
+#: ../../addon.old/forumlist/forumlist.php:164
 msgid "Show forums on profile page"
 msgstr ""
 
 #: ../../addon/forumlist/forumlist.php:167
+#: ../../addon.old/forumlist/forumlist.php:167
 msgid "Show forums on network page"
 msgstr ""
 
 #: ../../addon/impressum/impressum.php:37
+#: ../../addon.old/impressum/impressum.php:37
 msgid "Impressum"
 msgstr "Impressum"
 
 #: ../../addon/impressum/impressum.php:50
 #: ../../addon/impressum/impressum.php:52
 #: ../../addon/impressum/impressum.php:84
+#: ../../addon.old/impressum/impressum.php:50
+#: ../../addon.old/impressum/impressum.php:52
+#: ../../addon.old/impressum/impressum.php:84
 msgid "Site Owner"
 msgstr "Responsável pelo site"
 
 #: ../../addon/impressum/impressum.php:50
 #: ../../addon/impressum/impressum.php:88
+#: ../../addon.old/impressum/impressum.php:50
+#: ../../addon.old/impressum/impressum.php:88
 msgid "Email Address"
 msgstr "Endereço de e-mail"
 
 #: ../../addon/impressum/impressum.php:55
 #: ../../addon/impressum/impressum.php:86
+#: ../../addon.old/impressum/impressum.php:55
+#: ../../addon.old/impressum/impressum.php:86
 msgid "Postal Address"
 msgstr "Endereço postal"
 
 #: ../../addon/impressum/impressum.php:61
+#: ../../addon.old/impressum/impressum.php:61
 msgid ""
 "The impressum addon needs to be configured!<br />Please add at least the "
 "<tt>owner</tt> variable to your config file. For other variables please "
@@ -6201,193 +6682,236 @@ msgid ""
 msgstr "O complemento Impressum necessita ser configurado!<br/>Por favor, adicione ao menos o nome do <tt>responsável</tt> ao arquivo de configuração. Para outras informações, por favor, consulte o arquivo README do complemento."
 
 #: ../../addon/impressum/impressum.php:84
+#: ../../addon.old/impressum/impressum.php:84
 msgid "The page operators name."
-msgstr ""
+msgstr "O nome da página  operadores"
 
 #: ../../addon/impressum/impressum.php:85
+#: ../../addon.old/impressum/impressum.php:85
 msgid "Site Owners Profile"
 msgstr "Perfil do responsável pelo site"
 
 #: ../../addon/impressum/impressum.php:85
+#: ../../addon.old/impressum/impressum.php:85
 msgid "Profile address of the operator."
-msgstr ""
+msgstr "Endereço do perfil do operador"
 
 #: ../../addon/impressum/impressum.php:86
+#: ../../addon.old/impressum/impressum.php:86
 msgid "How to contact the operator via snail mail. You can use BBCode here."
 msgstr ""
 
 #: ../../addon/impressum/impressum.php:87
+#: ../../addon.old/impressum/impressum.php:87
 msgid "Notes"
 msgstr "Notas"
 
 #: ../../addon/impressum/impressum.php:87
+#: ../../addon.old/impressum/impressum.php:87
 msgid ""
 "Additional notes that are displayed beneath the contact information. You can"
 " use BBCode here."
 msgstr ""
 
 #: ../../addon/impressum/impressum.php:88
+#: ../../addon.old/impressum/impressum.php:88
 msgid "How to contact the operator via email. (will be displayed obfuscated)"
-msgstr ""
+msgstr "Como entrar em contato com o operador por e-mail. (não será mostrado)"
 
 #: ../../addon/impressum/impressum.php:89
+#: ../../addon.old/impressum/impressum.php:89
 msgid "Footer note"
 msgstr "Nota de rodapé"
 
 #: ../../addon/impressum/impressum.php:89
+#: ../../addon.old/impressum/impressum.php:89
 msgid "Text for the footer. You can use BBCode here."
 msgstr ""
 
-#: ../../addon/buglink/buglink.php:15
+#: ../../addon/buglink/buglink.php:15 ../../addon.old/buglink/buglink.php:15
 msgid "Report Bug"
 msgstr "Relate um Bug"
 
 #: ../../addon/notimeline/notimeline.php:32
+#: ../../addon.old/notimeline/notimeline.php:32
 msgid "No Timeline settings updated."
 msgstr ""
 
 #: ../../addon/notimeline/notimeline.php:56
+#: ../../addon.old/notimeline/notimeline.php:56
 msgid "No Timeline Settings"
 msgstr ""
 
 #: ../../addon/notimeline/notimeline.php:58
+#: ../../addon.old/notimeline/notimeline.php:58
 msgid "Disable Archive selector on profile wall"
 msgstr ""
 
-#: ../../addon/blockem/blockem.php:51
+#: ../../addon/blockem/blockem.php:51 ../../addon.old/blockem/blockem.php:51
 msgid "\"Blockem\" Settings"
 msgstr "Configurações \"Blockem\""
 
-#: ../../addon/blockem/blockem.php:53
+#: ../../addon/blockem/blockem.php:53 ../../addon.old/blockem/blockem.php:53
 msgid "Comma separated profile URLS to block"
 msgstr "URLS de perfis separados por vírgulas a serem bloqueados"
 
-#: ../../addon/blockem/blockem.php:70
+#: ../../addon/blockem/blockem.php:70 ../../addon.old/blockem/blockem.php:70
 msgid "BLOCKEM Settings saved."
 msgstr "Configurações BLOCKEM armazenadas."
 
-#: ../../addon/blockem/blockem.php:105
+#: ../../addon/blockem/blockem.php:105 ../../addon.old/blockem/blockem.php:105
 #, php-format
 msgid "Blocked %s - Click to open/close"
 msgstr "Bloqueado %s - Clique para abrir/fechar"
 
-#: ../../addon/blockem/blockem.php:160
+#: ../../addon/blockem/blockem.php:160 ../../addon.old/blockem/blockem.php:160
 msgid "Unblock Author"
 msgstr "Desbloqueie Autor"
 
-#: ../../addon/blockem/blockem.php:162
+#: ../../addon/blockem/blockem.php:162 ../../addon.old/blockem/blockem.php:162
 msgid "Block Author"
 msgstr "Bloqueie Autor"
 
-#: ../../addon/blockem/blockem.php:194
+#: ../../addon/blockem/blockem.php:194 ../../addon.old/blockem/blockem.php:194
 msgid "blockem settings updated"
 msgstr "configurações blockem atualizadas"
 
 #: ../../addon/qcomment/qcomment.php:51
+#: ../../addon.old/qcomment/qcomment.php:51
 msgid ":-)"
 msgstr ":-)"
 
 #: ../../addon/qcomment/qcomment.php:51
+#: ../../addon.old/qcomment/qcomment.php:51
 msgid ":-("
 msgstr ":-("
 
 #: ../../addon/qcomment/qcomment.php:51
+#: ../../addon.old/qcomment/qcomment.php:51
 msgid "lol"
 msgstr "lol"
 
 #: ../../addon/qcomment/qcomment.php:54
+#: ../../addon.old/qcomment/qcomment.php:54
 msgid "Quick Comment Settings"
 msgstr "Configurações de Comentários Rápidos"
 
 #: ../../addon/qcomment/qcomment.php:56
+#: ../../addon.old/qcomment/qcomment.php:56
 msgid ""
 "Quick comments are found near comment boxes, sometimes hidden. Click them to"
 " provide simple replies."
 msgstr "Comentários rápidos são encontrados próximos às caixas de comentários, algumas vezes ocultos. Clique neles para produzir respostas simples."
 
 #: ../../addon/qcomment/qcomment.php:57
+#: ../../addon.old/qcomment/qcomment.php:57
 msgid "Enter quick comments, one per line"
 msgstr "Digite comentários rápidos, um por linha"
 
 #: ../../addon/qcomment/qcomment.php:75
+#: ../../addon.old/qcomment/qcomment.php:75
 msgid "Quick Comment settings saved."
 msgstr "As configurações de comentários rápidos foram salvas."
 
 #: ../../addon/openstreetmap/openstreetmap.php:71
+#: ../../addon.old/openstreetmap/openstreetmap.php:71
 msgid "Tile Server URL"
 msgstr ""
 
 #: ../../addon/openstreetmap/openstreetmap.php:71
+#: ../../addon.old/openstreetmap/openstreetmap.php:71
 msgid ""
 "A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
 "target=\"_blank\">public tile servers</a>"
 msgstr ""
 
 #: ../../addon/openstreetmap/openstreetmap.php:72
+#: ../../addon.old/openstreetmap/openstreetmap.php:72
 msgid "Default zoom"
 msgstr "Zoom padrão"
 
 #: ../../addon/openstreetmap/openstreetmap.php:72
+#: ../../addon.old/openstreetmap/openstreetmap.php:72
 msgid "The default zoom level. (1:world, 18:highest)"
 msgstr "O nível padrão de zoom. (1:mundo, 18:máximo) "
 
 #: ../../addon/group_text/group_text.php:46
 #: ../../addon/editplain/editplain.php:46
+#: ../../addon.old/group_text/group_text.php:46
+#: ../../addon.old/editplain/editplain.php:46
 msgid "Editplain settings updated."
 msgstr "Configurações Editplain atualizadas."
 
 #: ../../addon/group_text/group_text.php:76
+#: ../../addon.old/group_text/group_text.php:76
 msgid "Group Text"
 msgstr ""
 
 #: ../../addon/group_text/group_text.php:78
+#: ../../addon.old/group_text/group_text.php:78
 msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:14
+#: ../../addon.old/libravatar/libravatar.php:14
 msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:73
 #: ../../addon/gravatar/gravatar.php:71
+#: ../../addon.old/libravatar/libravatar.php:73
+#: ../../addon.old/gravatar/gravatar.php:71
 msgid "generic profile image"
-msgstr ""
+msgstr "Imagem genérica de perfil"
 
 #: ../../addon/libravatar/libravatar.php:74
 #: ../../addon/gravatar/gravatar.php:72
+#: ../../addon.old/libravatar/libravatar.php:74
+#: ../../addon.old/gravatar/gravatar.php:72
 msgid "random geometric pattern"
-msgstr ""
+msgstr "Padrão geométrico randômico"
 
 #: ../../addon/libravatar/libravatar.php:75
 #: ../../addon/gravatar/gravatar.php:73
+#: ../../addon.old/libravatar/libravatar.php:75
+#: ../../addon.old/gravatar/gravatar.php:73
 msgid "monster face"
-msgstr ""
+msgstr "cara de monstro"
 
 #: ../../addon/libravatar/libravatar.php:76
 #: ../../addon/gravatar/gravatar.php:74
+#: ../../addon.old/libravatar/libravatar.php:76
+#: ../../addon.old/gravatar/gravatar.php:74
 msgid "computer generated face"
-msgstr ""
+msgstr "face gerada por computador"
 
 #: ../../addon/libravatar/libravatar.php:77
 #: ../../addon/gravatar/gravatar.php:75
+#: ../../addon.old/libravatar/libravatar.php:77
+#: ../../addon.old/gravatar/gravatar.php:75
 msgid "retro arcade style face"
-msgstr ""
+msgstr "estilo de face arcade retrô"
 
 #: ../../addon/libravatar/libravatar.php:83
+#: ../../addon.old/libravatar/libravatar.php:83
 #, php-format
 msgid "Your PHP version %s is lower than the required PHP >= 5.3."
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:84
+#: ../../addon.old/libravatar/libravatar.php:84
 msgid "This addon is not functional on your server."
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:93
 #: ../../addon/gravatar/gravatar.php:89
+#: ../../addon.old/libravatar/libravatar.php:93
+#: ../../addon.old/gravatar/gravatar.php:89
 msgid "Information"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:93
+#: ../../addon.old/libravatar/libravatar.php:93
 msgid ""
 "Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
 "Libravatar addon will fall back to Gravatar if nothing was found at "
@@ -6396,83 +6920,99 @@ msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:100
 #: ../../addon/gravatar/gravatar.php:96
+#: ../../addon.old/libravatar/libravatar.php:100
+#: ../../addon.old/gravatar/gravatar.php:96
 msgid "Default avatar image"
-msgstr ""
+msgstr "Imagem padrão do Avatar "
 
 #: ../../addon/libravatar/libravatar.php:100
+#: ../../addon.old/libravatar/libravatar.php:100
 msgid "Select default avatar image if none was found. See README"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:112
+#: ../../addon.old/libravatar/libravatar.php:112
 msgid "Libravatar settings updated."
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:36
+#: ../../addon.old/libertree/libertree.php:36
 msgid "Post to libertree"
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:67
+#: ../../addon.old/libertree/libertree.php:67
 msgid "libertree Post Settings"
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:69
+#: ../../addon.old/libertree/libertree.php:69
 msgid "Enable Libertree Post Plugin"
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:74
+#: ../../addon.old/libertree/libertree.php:74
 msgid "Libertree API token"
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:79
+#: ../../addon.old/libertree/libertree.php:79
 msgid "Libertree site URL"
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:84
+#: ../../addon.old/libertree/libertree.php:84
 msgid "Post to Libertree by default"
 msgstr ""
 
 #: ../../addon/altpager/altpager.php:46
+#: ../../addon.old/altpager/altpager.php:46
 msgid "Altpager settings updated."
 msgstr ""
 
 #: ../../addon/altpager/altpager.php:79
+#: ../../addon.old/altpager/altpager.php:79
 msgid "Alternate Pagination Setting"
 msgstr ""
 
 #: ../../addon/altpager/altpager.php:81
+#: ../../addon.old/altpager/altpager.php:81
 msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
 msgstr ""
 
-#: ../../addon/mathjax/mathjax.php:37
+#: ../../addon/mathjax/mathjax.php:37 ../../addon.old/mathjax/mathjax.php:37
 msgid ""
 "The MathJax addon renders mathematical formulae written using the LaTeX "
 "syntax surrounded by the usual $$ or an eqnarray block in the postings of "
 "your wall,network tab and private mail."
 msgstr ""
 
-#: ../../addon/mathjax/mathjax.php:38
+#: ../../addon/mathjax/mathjax.php:38 ../../addon.old/mathjax/mathjax.php:38
 msgid "Use the MathJax renderer"
 msgstr ""
 
-#: ../../addon/mathjax/mathjax.php:74
+#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74
 msgid "MathJax Base URL"
 msgstr ""
 
-#: ../../addon/mathjax/mathjax.php:74
+#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74
 msgid ""
 "The URL for the javascript file that should be included to use MathJax. Can "
 "be either the MathJax CDN or another installation of MathJax."
 msgstr ""
 
 #: ../../addon/editplain/editplain.php:76
+#: ../../addon.old/editplain/editplain.php:76
 msgid "Editplain Settings"
 msgstr "Configurações Editplain"
 
 #: ../../addon/editplain/editplain.php:78
+#: ../../addon.old/editplain/editplain.php:78
 msgid "Disable richtext status editor"
 msgstr "Disabilite o modo de edição richtext"
 
 #: ../../addon/gravatar/gravatar.php:89
+#: ../../addon.old/gravatar/gravatar.php:89
 msgid ""
 "Libravatar addon is installed, too. Please disable Libravatar addon or this "
 "Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
@@ -6480,26 +7020,32 @@ msgid ""
 msgstr ""
 
 #: ../../addon/gravatar/gravatar.php:96
+#: ../../addon.old/gravatar/gravatar.php:96
 msgid "Select default avatar image if none was found at Gravatar. See README"
-msgstr ""
+msgstr "Selecione a imagem  padrão do Avatar se nenhuma for encontrada no Gravatar. Veja o Leiame"
 
 #: ../../addon/gravatar/gravatar.php:97
+#: ../../addon.old/gravatar/gravatar.php:97
 msgid "Rating of images"
-msgstr ""
+msgstr "Avaliação de imagens"
 
 #: ../../addon/gravatar/gravatar.php:97
+#: ../../addon.old/gravatar/gravatar.php:97
 msgid "Select the appropriate avatar rating for your site. See README"
 msgstr ""
 
 #: ../../addon/gravatar/gravatar.php:111
+#: ../../addon.old/gravatar/gravatar.php:111
 msgid "Gravatar settings updated."
-msgstr ""
+msgstr "Configurações do Avatar atualizadas"
 
 #: ../../addon/testdrive/testdrive.php:95
+#: ../../addon.old/testdrive/testdrive.php:95
 msgid "Your Friendica test account is about to expire."
-msgstr ""
+msgstr "Sua conta de teste no Friendica vai expirar."
 
 #: ../../addon/testdrive/testdrive.php:96
+#: ../../addon.old/testdrive/testdrive.php:96
 #, php-format
 msgid ""
 "Hi %1$s,\n"
@@ -6508,121 +7054,143 @@ msgid ""
 msgstr ""
 
 #: ../../addon/pageheader/pageheader.php:50
+#: ../../addon.old/pageheader/pageheader.php:50
 msgid "\"pageheader\" Settings"
 msgstr "Configurações do \"pageheader\""
 
 #: ../../addon/pageheader/pageheader.php:68
+#: ../../addon.old/pageheader/pageheader.php:68
 msgid "pageheader Settings saved."
 msgstr "Configurações do pageheader armazenadas."
 
-#: ../../addon/ijpost/ijpost.php:39
+#: ../../addon/ijpost/ijpost.php:39 ../../addon.old/ijpost/ijpost.php:39
 msgid "Post to Insanejournal"
 msgstr "Publicar no InsaneJournal"
 
-#: ../../addon/ijpost/ijpost.php:70
+#: ../../addon/ijpost/ijpost.php:70 ../../addon.old/ijpost/ijpost.php:70
 msgid "InsaneJournal Post Settings"
 msgstr "Configurações da publicação no InsaneJournal"
 
-#: ../../addon/ijpost/ijpost.php:72
+#: ../../addon/ijpost/ijpost.php:72 ../../addon.old/ijpost/ijpost.php:72
 msgid "Enable InsaneJournal Post Plugin"
 msgstr "Habilitar o plugin de publicação no InsaneJournal"
 
-#: ../../addon/ijpost/ijpost.php:77
+#: ../../addon/ijpost/ijpost.php:77 ../../addon.old/ijpost/ijpost.php:77
 msgid "InsaneJournal username"
 msgstr "Nome de usuário do InsaneJournal"
 
-#: ../../addon/ijpost/ijpost.php:82
+#: ../../addon/ijpost/ijpost.php:82 ../../addon.old/ijpost/ijpost.php:82
 msgid "InsaneJournal password"
 msgstr "Senha do InsaneJournal"
 
-#: ../../addon/ijpost/ijpost.php:87
+#: ../../addon/ijpost/ijpost.php:87 ../../addon.old/ijpost/ijpost.php:87
 msgid "Post to InsaneJournal by default"
 msgstr "Publicar no InsaneJournal por padrão"
 
 #: ../../addon/jappixmini/jappixmini.php:266
+#: ../../addon.old/jappixmini/jappixmini.php:266
 msgid "Jappix Mini addon settings"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:268
+#: ../../addon.old/jappixmini/jappixmini.php:268
 msgid "Activate addon"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:271
+#: ../../addon.old/jappixmini/jappixmini.php:271
 msgid ""
 "Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:274
+#: ../../addon.old/jappixmini/jappixmini.php:274
 msgid "Jabber username"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:277
+#: ../../addon.old/jappixmini/jappixmini.php:277
 msgid "Jabber server"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:281
+#: ../../addon.old/jappixmini/jappixmini.php:281
 msgid "Jabber BOSH host"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:285
+#: ../../addon.old/jappixmini/jappixmini.php:285
 msgid "Jabber password"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:290
+#: ../../addon.old/jappixmini/jappixmini.php:290
 msgid "Encrypt Jabber password with Friendica password (recommended)"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:293
+#: ../../addon.old/jappixmini/jappixmini.php:293
 msgid "Friendica password"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:296
+#: ../../addon.old/jappixmini/jappixmini.php:296
 msgid "Approve subscription requests from Friendica contacts automatically"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:299
+#: ../../addon.old/jappixmini/jappixmini.php:299
 msgid "Subscribe to Friendica contacts automatically"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:302
+#: ../../addon.old/jappixmini/jappixmini.php:302
 msgid "Purge internal list of jabber addresses of contacts"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:308
+#: ../../addon.old/jappixmini/jappixmini.php:308
 msgid "Add contact"
 msgstr ""
 
-#: ../../addon/viewsrc/viewsrc.php:37
+#: ../../addon/viewsrc/viewsrc.php:37 ../../addon.old/viewsrc/viewsrc.php:37
 msgid "View Source"
 msgstr "Ver Fonte"
 
 #: ../../addon/statusnet/statusnet.php:134
+#: ../../addon.old/statusnet/statusnet.php:134
 msgid "Post to StatusNet"
 msgstr "Publicar no StatusNet"
 
 #: ../../addon/statusnet/statusnet.php:176
+#: ../../addon.old/statusnet/statusnet.php:176
 msgid ""
 "Please contact your site administrator.<br />The provided API URL is not "
 "valid."
 msgstr "Por favor, entre em contato com o administrados do seu site.<br />A URL da API fornecida não é válida."
 
 #: ../../addon/statusnet/statusnet.php:204
+#: ../../addon.old/statusnet/statusnet.php:204
 msgid "We could not contact the StatusNet API with the Path you entered."
 msgstr "Não foi possível contactar a API do StatusNet a partir do caminho que você informou."
 
 #: ../../addon/statusnet/statusnet.php:232
+#: ../../addon.old/statusnet/statusnet.php:232
 msgid "StatusNet settings updated."
 msgstr "As configurações do StatusNet foram atualizadas."
 
 #: ../../addon/statusnet/statusnet.php:257
+#: ../../addon.old/statusnet/statusnet.php:257
 msgid "StatusNet Posting Settings"
 msgstr "Configurações de publicação no StatusNet"
 
 #: ../../addon/statusnet/statusnet.php:271
+#: ../../addon.old/statusnet/statusnet.php:271
 msgid "Globally Available StatusNet OAuthKeys"
 msgstr "OAuthKeys do StatusNet disponíveis globalmente"
 
 #: ../../addon/statusnet/statusnet.php:272
+#: ../../addon.old/statusnet/statusnet.php:272
 msgid ""
 "There are preconfigured OAuth key pairs for some StatusNet servers "
 "available. If you are useing one of them, please use these credentials. If "
@@ -6630,10 +7198,12 @@ msgid ""
 msgstr "Existem pares de chaves OAuth para alguns servidores StatusNet disponíveis. Se você estiver usando algum desses servidores, por favor utilize essas credenciais. Caso contrário, sinta-se à vontade para conectar-se a qualquer outra instância do StatusNet (veja abaixo)."
 
 #: ../../addon/statusnet/statusnet.php:280
+#: ../../addon.old/statusnet/statusnet.php:280
 msgid "Provide your own OAuth Credentials"
 msgstr "Forneça suas próprias credenciais OAuth"
 
 #: ../../addon/statusnet/statusnet.php:281
+#: ../../addon.old/statusnet/statusnet.php:281
 msgid ""
 "No consumer key pair for StatusNet found. Register your Friendica Account as"
 " an desktop client on your StatusNet account, copy the consumer key pair "
@@ -6643,18 +7213,22 @@ msgid ""
 msgstr "Nenhum par de chaves para StatusNet encontrado. Registre sua conta Friendica como um cliente de mesa (desktop) na sua conta StatusNet, copie o par de chaves aqui e forneça a raíz base da API. <br />Antes de registra seu próprio par de chaves OAuth pergunte ao administrador se já existe um par de chaves para essa instalação do Friendica na sua instalação favorita do StatusNet."
 
 #: ../../addon/statusnet/statusnet.php:283
+#: ../../addon.old/statusnet/statusnet.php:283
 msgid "OAuth Consumer Key"
 msgstr "Chave de consumidor OAuth"
 
 #: ../../addon/statusnet/statusnet.php:286
+#: ../../addon.old/statusnet/statusnet.php:286
 msgid "OAuth Consumer Secret"
 msgstr "Segredo de consumidor OAuth"
 
 #: ../../addon/statusnet/statusnet.php:289
+#: ../../addon.old/statusnet/statusnet.php:289
 msgid "Base API Path (remember the trailing /)"
 msgstr "Caminho base da API (lembre-se da / final)"
 
 #: ../../addon/statusnet/statusnet.php:310
+#: ../../addon.old/statusnet/statusnet.php:310
 msgid ""
 "To connect to your StatusNet account click the button below to get a "
 "security code from StatusNet which you have to copy into the input box below"
@@ -6663,30 +7237,38 @@ msgid ""
 msgstr "Para conectar à sua conta StatusNet, clique no botão abaixo para obter um código de segurança do StatusNet, o qual você deve copiar na caixa de texto abaixo e clicar no botão para enviar o formulário. Somente suas publicações <strong>públicas</strong> serão enviadas para o StatusNet."
 
 #: ../../addon/statusnet/statusnet.php:311
+#: ../../addon.old/statusnet/statusnet.php:311
 msgid "Log in with StatusNet"
 msgstr "Autenticar-se no StatusNet"
 
 #: ../../addon/statusnet/statusnet.php:313
+#: ../../addon.old/statusnet/statusnet.php:313
 msgid "Copy the security code from StatusNet here"
 msgstr "Copie o código de segurança do StatusNet aqui"
 
 #: ../../addon/statusnet/statusnet.php:319
+#: ../../addon.old/statusnet/statusnet.php:319
 msgid "Cancel Connection Process"
 msgstr "Cancelar o processo de conexão"
 
 #: ../../addon/statusnet/statusnet.php:321
+#: ../../addon.old/statusnet/statusnet.php:321
 msgid "Current StatusNet API is"
 msgstr "A API atual do StatusNet é"
 
 #: ../../addon/statusnet/statusnet.php:322
+#: ../../addon.old/statusnet/statusnet.php:322
 msgid "Cancel StatusNet Connection"
 msgstr "Cancelar a conexão com o StatusNet"
 
 #: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189
+#: ../../addon.old/statusnet/statusnet.php:333
+#: ../../addon.old/twitter/twitter.php:189
 msgid "Currently connected to: "
 msgstr "Atualmente conectado como: "
 
 #: ../../addon/statusnet/statusnet.php:334
+#: ../../addon.old/statusnet/statusnet.php:334
 msgid ""
 "If enabled all your <strong>public</strong> postings can be posted to the "
 "associated StatusNet account. You can choose to do so by default (here) or "
@@ -6694,6 +7276,7 @@ msgid ""
 msgstr "Se habilitado, todas as suas publicações <strong>públicas</strong> podem ser publicadas na sua conta StatusNet associada. Você pode escolher entre publicar tudo automaticamente (marcando aqui) ou selecionar o que será enviado individualmente (nas opções de publicação, durante o processo de escrita da mensagem)."
 
 #: ../../addon/statusnet/statusnet.php:336
+#: ../../addon.old/statusnet/statusnet.php:336
 msgid ""
 "<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
 "details from unknown viewers?</em>) the link potentially included in public "
@@ -6702,143 +7285,169 @@ msgid ""
 msgstr "<strong>Aviso</strong>: Devido às suas configurações de privacidade (<em>Ocultar os detalhes do seu perfil para pessoas desconhecidas?</em>) o link potencialmente incluído nas publicações públicas encaminhadas para o StatusNet levarão o visitante a uma página contendo a informação de que o acesso ao seu perfil é restrito."
 
 #: ../../addon/statusnet/statusnet.php:339
+#: ../../addon.old/statusnet/statusnet.php:339
 msgid "Allow posting to StatusNet"
 msgstr "Permitir a publicação no StatusNet"
 
 #: ../../addon/statusnet/statusnet.php:342
+#: ../../addon.old/statusnet/statusnet.php:342
 msgid "Send public postings to StatusNet by default"
 msgstr "Enviar as publicações públicas para o StatusNet por padrão"
 
 #: ../../addon/statusnet/statusnet.php:345
+#: ../../addon.old/statusnet/statusnet.php:345
 msgid "Send linked #-tags and @-names to StatusNet"
 msgstr ""
 
 #: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206
+#: ../../addon.old/statusnet/statusnet.php:350
+#: ../../addon.old/twitter/twitter.php:206
 msgid "Clear OAuth configuration"
 msgstr "Limpar a configuração OAuth"
 
-#: ../../addon/statusnet/statusnet.php:568
+#: ../../addon/statusnet/statusnet.php:677
+#: ../../addon.old/statusnet/statusnet.php:568
 msgid "API URL"
 msgstr "URL da API"
 
 #: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
+#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
 msgid "Infinite Improbability Drive"
 msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:36
+#: ../../addon/tumblr/tumblr.php:36 ../../addon.old/tumblr/tumblr.php:36
 msgid "Post to Tumblr"
 msgstr "Postar no Tumblr"
 
-#: ../../addon/tumblr/tumblr.php:67
+#: ../../addon/tumblr/tumblr.php:67 ../../addon.old/tumblr/tumblr.php:67
 msgid "Tumblr Post Settings"
 msgstr "Configurações de postagem do Tumblr"
 
-#: ../../addon/tumblr/tumblr.php:69
+#: ../../addon/tumblr/tumblr.php:69 ../../addon.old/tumblr/tumblr.php:69
 msgid "Enable Tumblr Post Plugin"
 msgstr "Habilitar Plugin de Postagem do Tumblr"
 
-#: ../../addon/tumblr/tumblr.php:74
+#: ../../addon/tumblr/tumblr.php:74 ../../addon.old/tumblr/tumblr.php:74
 msgid "Tumblr login"
 msgstr "Login Tumblr"
 
-#: ../../addon/tumblr/tumblr.php:79
+#: ../../addon/tumblr/tumblr.php:79 ../../addon.old/tumblr/tumblr.php:79
 msgid "Tumblr password"
 msgstr "Senha Tumblr"
 
-#: ../../addon/tumblr/tumblr.php:84
+#: ../../addon/tumblr/tumblr.php:84 ../../addon.old/tumblr/tumblr.php:84
 msgid "Post to Tumblr by default"
 msgstr "Postar para o Tumblr como default"
 
 #: ../../addon/numfriends/numfriends.php:46
+#: ../../addon.old/numfriends/numfriends.php:46
 msgid "Numfriends settings updated."
 msgstr "Configurações Numfriends atualizadas."
 
 #: ../../addon/numfriends/numfriends.php:77
+#: ../../addon.old/numfriends/numfriends.php:77
 msgid "Numfriends Settings"
 msgstr "Configurações Numfriends"
 
-#: ../../addon/gnot/gnot.php:48
+#: ../../addon/numfriends/numfriends.php:79 ../../addon.old/bg/bg.php:84
+#: ../../addon.old/numfriends/numfriends.php:79
+msgid "How many contacts to display on profile sidebar"
+msgstr "Quantos contatos mostrar na barra lateral do perfil"
+
+#: ../../addon/gnot/gnot.php:48 ../../addon.old/gnot/gnot.php:48
 msgid "Gnot settings updated."
 msgstr "As configurações do Gnot foram atualizadas."
 
-#: ../../addon/gnot/gnot.php:79
+#: ../../addon/gnot/gnot.php:79 ../../addon.old/gnot/gnot.php:79
 msgid "Gnot Settings"
 msgstr "Configurações do Gnot"
 
-#: ../../addon/gnot/gnot.php:81
+#: ../../addon/gnot/gnot.php:81 ../../addon.old/gnot/gnot.php:81
 msgid ""
 "Allows threading of email comment notifications on Gmail and anonymising the"
 " subject line."
 msgstr "Permite o encadeamento das notificações por e-mail de comentário no GMail, tornando a a linha de assunto anônima."
 
-#: ../../addon/gnot/gnot.php:82
+#: ../../addon/gnot/gnot.php:82 ../../addon.old/gnot/gnot.php:82
 msgid "Enable this plugin/addon?"
 msgstr "Habilitar este plugin/complemento?"
 
-#: ../../addon/gnot/gnot.php:97
+#: ../../addon/gnot/gnot.php:97 ../../addon.old/gnot/gnot.php:97
 #, php-format
 msgid "[Friendica:Notify] Comment to conversation #%d"
 msgstr "[Friendica:Notify] Comentário na conversa #%d"
 
-#: ../../addon/wppost/wppost.php:42
+#: ../../addon/wppost/wppost.php:42 ../../addon.old/wppost/wppost.php:42
 msgid "Post to Wordpress"
 msgstr "Postar no WordPress"
 
-#: ../../addon/wppost/wppost.php:76
+#: ../../addon/wppost/wppost.php:76 ../../addon.old/wppost/wppost.php:76
 msgid "WordPress Post Settings"
 msgstr "Configurações de postagem do WordPress"
 
-#: ../../addon/wppost/wppost.php:78
+#: ../../addon/wppost/wppost.php:78 ../../addon.old/wppost/wppost.php:78
 msgid "Enable WordPress Post Plugin"
 msgstr "Habilitar plugin de postagem do WordPress"
 
-#: ../../addon/wppost/wppost.php:83
+#: ../../addon/wppost/wppost.php:83 ../../addon.old/wppost/wppost.php:83
 msgid "WordPress username"
 msgstr "Usuário WordPress"
 
-#: ../../addon/wppost/wppost.php:88
+#: ../../addon/wppost/wppost.php:88 ../../addon.old/wppost/wppost.php:88
 msgid "WordPress password"
 msgstr "Senha WordPress"
 
-#: ../../addon/wppost/wppost.php:93
+#: ../../addon/wppost/wppost.php:93 ../../addon.old/wppost/wppost.php:93
 msgid "WordPress API URL"
 msgstr "URL da API do WordPress"
 
-#: ../../addon/wppost/wppost.php:98
+#: ../../addon/wppost/wppost.php:98 ../../addon.old/wppost/wppost.php:98
 msgid "Post to WordPress by default"
 msgstr "Postar para o WordPress como padrão"
 
-#: ../../addon/wppost/wppost.php:103
+#: ../../addon/wppost/wppost.php:103 ../../addon.old/wppost/wppost.php:103
 msgid "Provide a backlink to the Friendica post"
 msgstr ""
 
-#: ../../addon/wppost/wppost.php:207
+#: ../../addon/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172
+#: ../../addon/posterous/posterous.php:189
+#: ../../addon.old/drpost/drpost.php:184 ../../addon.old/wppost/wppost.php:201
+#: ../../addon.old/blogger/blogger.php:172
+#: ../../addon.old/posterous/posterous.php:189
+msgid "Post from Friendica"
+msgstr "Postar do Friendica"
+
+#: ../../addon/wppost/wppost.php:207 ../../addon.old/wppost/wppost.php:207
 msgid "Read the original post and comment stream on Friendica"
 msgstr ""
 
 #: ../../addon/showmore/showmore.php:38
+#: ../../addon.old/showmore/showmore.php:38
 msgid "\"Show more\" Settings"
 msgstr "Configurações de \"Exibir mais\""
 
 #: ../../addon/showmore/showmore.php:41
+#: ../../addon.old/showmore/showmore.php:41
 msgid "Enable Show More"
 msgstr "Habilitar \"Exibir mais\""
 
 #: ../../addon/showmore/showmore.php:44
+#: ../../addon.old/showmore/showmore.php:44
 msgid "Cutting posts after how much characters"
 msgstr "Cortar as mensagens após quantos caracteres"
 
 #: ../../addon/showmore/showmore.php:65
+#: ../../addon.old/showmore/showmore.php:65
 msgid "Show More Settings saved."
 msgstr "As configurações de \"Exibir mais\" foram salvas."
 
-#: ../../addon/piwik/piwik.php:79
+#: ../../addon/piwik/piwik.php:79 ../../addon.old/piwik/piwik.php:79
 msgid ""
 "This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
 "analytics tool."
 msgstr "Este site é acompanhado usando a ferramenta de análises <a href='http://www.piwik.org'>Piwik</a> "
 
-#: ../../addon/piwik/piwik.php:82
+#: ../../addon/piwik/piwik.php:82 ../../addon.old/piwik/piwik.php:82
 #, php-format
 msgid ""
 "If you do not want that your visits are logged this way you <a href='%s'>can"
@@ -6846,47 +7455,47 @@ msgid ""
 "(opt-out)."
 msgstr "Se você não deseja essa forma de registro das suas visitas <a href='%s'>pode configurar um cookie para evitar que o Piwik registre suas próximas visitas ao site</a> (opt-out)."
 
-#: ../../addon/piwik/piwik.php:90
+#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
 msgid "Piwik Base URL"
 msgstr "URL base do Piwik"
 
-#: ../../addon/piwik/piwik.php:90
+#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
 msgid ""
 "Absolute path to your Piwik installation. (without protocol (http/s), with "
 "trailing slash)"
 msgstr "Caminho absoluto para sua instalação Piwik. (sem protocolo (http/s), com barra à direita)"
 
-#: ../../addon/piwik/piwik.php:91
+#: ../../addon/piwik/piwik.php:91 ../../addon.old/piwik/piwik.php:91
 msgid "Site ID"
 msgstr "ID do site"
 
-#: ../../addon/piwik/piwik.php:92
+#: ../../addon/piwik/piwik.php:92 ../../addon.old/piwik/piwik.php:92
 msgid "Show opt-out cookie link?"
 msgstr "Exibir o link para o cookie de opt-out?"
 
-#: ../../addon/piwik/piwik.php:93
+#: ../../addon/piwik/piwik.php:93 ../../addon.old/piwik/piwik.php:93
 msgid "Asynchronous tracking"
 msgstr "Rastreamento assíncrono"
 
-#: ../../addon/twitter/twitter.php:73
+#: ../../addon/twitter/twitter.php:73 ../../addon.old/twitter/twitter.php:73
 msgid "Post to Twitter"
 msgstr "Publicar no Twitter"
 
-#: ../../addon/twitter/twitter.php:122
+#: ../../addon/twitter/twitter.php:122 ../../addon.old/twitter/twitter.php:122
 msgid "Twitter settings updated."
 msgstr "As atualizações do Twitter foram atualizadas."
 
-#: ../../addon/twitter/twitter.php:146
+#: ../../addon/twitter/twitter.php:146 ../../addon.old/twitter/twitter.php:146
 msgid "Twitter Posting Settings"
 msgstr "Configurações de publicação no Twitter"
 
-#: ../../addon/twitter/twitter.php:153
+#: ../../addon/twitter/twitter.php:153 ../../addon.old/twitter/twitter.php:153
 msgid ""
 "No consumer key pair for Twitter found. Please contact your site "
 "administrator."
 msgstr "Não foi encontrado nenhum par de chaves de consumidor para o Twitter. Por favor, entre em contato com o administrador do site."
 
-#: ../../addon/twitter/twitter.php:172
+#: ../../addon/twitter/twitter.php:172 ../../addon.old/twitter/twitter.php:172
 msgid ""
 "At this Friendica instance the Twitter plugin was enabled but you have not "
 "yet connected your account to your Twitter account. To do so click the "
@@ -6895,22 +7504,22 @@ msgid ""
 " be posted to Twitter."
 msgstr "Nessa instância do Friendica o plugin Twitter foi habilitado mas você ainda não conectou sua conta à conta do Twitter. Para assim o fazer clique no botão abaixo para pegar o PIN do Twitter que você deverar copiar na caixa de entrada abaixo e enviar o formulário. Somente suas postagens <strong>públicas</strong> serão repostadas no Twitter."
 
-#: ../../addon/twitter/twitter.php:173
+#: ../../addon/twitter/twitter.php:173 ../../addon.old/twitter/twitter.php:173
 msgid "Log in with Twitter"
 msgstr "Autenticar-se no Twitter"
 
-#: ../../addon/twitter/twitter.php:175
+#: ../../addon/twitter/twitter.php:175 ../../addon.old/twitter/twitter.php:175
 msgid "Copy the PIN from Twitter here"
 msgstr "Copie o PIN do Twitter aqui"
 
-#: ../../addon/twitter/twitter.php:190
+#: ../../addon/twitter/twitter.php:190 ../../addon.old/twitter/twitter.php:190
 msgid ""
 "If enabled all your <strong>public</strong> postings can be posted to the "
 "associated Twitter account. You can choose to do so by default (here) or for"
 " every posting separately in the posting options when writing the entry."
 msgstr "Se habilitado, todas as suas publicações <strong>públicas</strong> podem ser publicadas na sua conta Twitter associada. Você pode escolher entre publicar tudo automaticamente (marcando aqui) ou selecionar o que será enviado individualmente (nas opções de publicação, durante o processo de escrita da mensagem)."
 
-#: ../../addon/twitter/twitter.php:192
+#: ../../addon/twitter/twitter.php:192 ../../addon.old/twitter/twitter.php:192
 msgid ""
 "<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
 "details from unknown viewers?</em>) the link potentially included in public "
@@ -6918,129 +7527,137 @@ msgid ""
 "the visitor that the access to your profile has been restricted."
 msgstr "<strong>Aviso</strong>: Devido às suas configurações de privacidade (<em>Ocultar os detalhes do seu perfil para pessoas desconhecidas?</em>) o link potencialmente incluído nas publicações públicas encaminhadas para o Twitter levarão o visitante a uma página contendo a informação de que o acesso ao seu perfil é restrito."
 
-#: ../../addon/twitter/twitter.php:195
+#: ../../addon/twitter/twitter.php:195 ../../addon.old/twitter/twitter.php:195
 msgid "Allow posting to Twitter"
 msgstr "Permitir a publicação no Twitter"
 
-#: ../../addon/twitter/twitter.php:198
+#: ../../addon/twitter/twitter.php:198 ../../addon.old/twitter/twitter.php:198
 msgid "Send public postings to Twitter by default"
 msgstr "Enviar as publicações públicas automaticamente para o Twitter"
 
-#: ../../addon/twitter/twitter.php:201
+#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:201
 msgid "Send linked #-tags and @-names to Twitter"
 msgstr ""
 
-#: ../../addon/twitter/twitter.php:396
+#: ../../addon/twitter/twitter.php:508 ../../addon.old/twitter/twitter.php:396
 msgid "Consumer key"
 msgstr "Chave de consumidor"
 
-#: ../../addon/twitter/twitter.php:397
+#: ../../addon/twitter/twitter.php:509 ../../addon.old/twitter/twitter.php:397
 msgid "Consumer secret"
 msgstr "Segredo de consumidor"
 
-#: ../../addon/irc/irc.php:44
+#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44
 msgid "IRC Settings"
-msgstr ""
+msgstr "Configurações de IRC"
 
-#: ../../addon/irc/irc.php:46
+#: ../../addon/irc/irc.php:46 ../../addon.old/irc/irc.php:46
 msgid "Channel(s) to auto connect (comma separated)"
-msgstr ""
+msgstr "Canal(is) para auto conectar (separados por vírgulas)"
 
-#: ../../addon/irc/irc.php:51
+#: ../../addon/irc/irc.php:51 ../../addon.old/irc/irc.php:51
 msgid "Popular Channels (comma separated)"
-msgstr ""
+msgstr "Canais Populares (separados por vírgula)"
 
-#: ../../addon/irc/irc.php:69
+#: ../../addon/irc/irc.php:69 ../../addon.old/irc/irc.php:69
 msgid "IRC settings saved."
-msgstr ""
+msgstr "Configurações de IRC salvas"
 
-#: ../../addon/irc/irc.php:74
+#: ../../addon/irc/irc.php:74 ../../addon.old/irc/irc.php:74
 msgid "IRC Chatroom"
-msgstr ""
+msgstr "sala de IRC"
 
-#: ../../addon/irc/irc.php:96
+#: ../../addon/irc/irc.php:96 ../../addon.old/irc/irc.php:96
 msgid "Popular Channels"
 msgstr "Canais populares "
 
-#: ../../addon/fromapp/fromapp.php:38
+#: ../../addon/fromapp/fromapp.php:38 ../../addon.old/fromapp/fromapp.php:38
 msgid "Fromapp settings updated."
 msgstr ""
 
-#: ../../addon/fromapp/fromapp.php:64
+#: ../../addon/fromapp/fromapp.php:64 ../../addon.old/fromapp/fromapp.php:64
 msgid "FromApp Settings"
 msgstr ""
 
-#: ../../addon/fromapp/fromapp.php:66
+#: ../../addon/fromapp/fromapp.php:66 ../../addon.old/fromapp/fromapp.php:66
 msgid ""
 "The application name you would like to show your posts originating from."
 msgstr ""
 
-#: ../../addon/fromapp/fromapp.php:70
+#: ../../addon/fromapp/fromapp.php:70 ../../addon.old/fromapp/fromapp.php:70
 msgid "Use this application name even if another application was used."
 msgstr ""
 
-#: ../../addon/blogger/blogger.php:42
+#: ../../addon/blogger/blogger.php:42 ../../addon.old/blogger/blogger.php:42
 msgid "Post to blogger"
-msgstr ""
+msgstr "publica no blogger"
 
-#: ../../addon/blogger/blogger.php:74
+#: ../../addon/blogger/blogger.php:74 ../../addon.old/blogger/blogger.php:74
 msgid "Blogger Post Settings"
-msgstr ""
+msgstr "Configuração de publicação no blogger"
 
-#: ../../addon/blogger/blogger.php:76
+#: ../../addon/blogger/blogger.php:76 ../../addon.old/blogger/blogger.php:76
 msgid "Enable Blogger Post Plugin"
-msgstr ""
+msgstr "Habilita plugin para publicar no Blogger"
 
-#: ../../addon/blogger/blogger.php:81
+#: ../../addon/blogger/blogger.php:81 ../../addon.old/blogger/blogger.php:81
 msgid "Blogger username"
-msgstr ""
+msgstr "nome de usuário no Blogger"
 
-#: ../../addon/blogger/blogger.php:86
+#: ../../addon/blogger/blogger.php:86 ../../addon.old/blogger/blogger.php:86
 msgid "Blogger password"
-msgstr ""
+msgstr "senha no Blogger"
 
-#: ../../addon/blogger/blogger.php:91
+#: ../../addon/blogger/blogger.php:91 ../../addon.old/blogger/blogger.php:91
 msgid "Blogger API URL"
-msgstr ""
+msgstr "URL da API do Blogger"
 
-#: ../../addon/blogger/blogger.php:96
+#: ../../addon/blogger/blogger.php:96 ../../addon.old/blogger/blogger.php:96
 msgid "Post to Blogger by default"
-msgstr ""
+msgstr "Publica no Blogger por padrão"
 
 #: ../../addon/posterous/posterous.php:37
+#: ../../addon.old/posterous/posterous.php:37
 msgid "Post to Posterous"
 msgstr "Postar no Posterous"
 
 #: ../../addon/posterous/posterous.php:70
+#: ../../addon.old/posterous/posterous.php:70
 msgid "Posterous Post Settings"
 msgstr "Configurações de Postagem do Posterous"
 
 #: ../../addon/posterous/posterous.php:72
+#: ../../addon.old/posterous/posterous.php:72
 msgid "Enable Posterous Post Plugin"
 msgstr "Habilitar Plugin de Postagem do Posterous"
 
 #: ../../addon/posterous/posterous.php:77
+#: ../../addon.old/posterous/posterous.php:77
 msgid "Posterous login"
 msgstr "Login do Posterous"
 
 #: ../../addon/posterous/posterous.php:82
+#: ../../addon.old/posterous/posterous.php:82
 msgid "Posterous password"
 msgstr "Senha do Posterous"
 
 #: ../../addon/posterous/posterous.php:87
+#: ../../addon.old/posterous/posterous.php:87
 msgid "Posterous site ID"
 msgstr ""
 
 #: ../../addon/posterous/posterous.php:92
+#: ../../addon.old/posterous/posterous.php:92
 msgid "Posterous API token"
 msgstr ""
 
 #: ../../addon/posterous/posterous.php:97
+#: ../../addon.old/posterous/posterous.php:97
 msgid "Post to Posterous by default"
 msgstr "Postar para o Posterous como padrão"
 
 #: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/diabook/config.php:192
+#: ../../view/theme/diabook/config.php:154
 #: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
 msgid "Theme settings"
 msgstr "Configurações do tema"
@@ -7050,10 +7667,10 @@ msgid "Set resize level for images in posts and comments (width and height)"
 msgstr ""
 
 #: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/diabook/config.php:193
+#: ../../view/theme/diabook/config.php:155
 #: ../../view/theme/dispy/config.php:73
 msgid "Set font-size for posts and comments"
-msgstr ""
+msgstr "Escolha o tamanho da fonte para publicações e comentários"
 
 #: ../../view/theme/cleanzero/config.php:85
 msgid "Set theme width"
@@ -7064,174 +7681,158 @@ msgstr ""
 msgid "Color scheme"
 msgstr "Esquema de cores"
 
-#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:49
-#: ../../include/nav.php:115
+#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:49
+#: ../../include/nav.php:116
 msgid "Your posts and conversations"
 msgstr "Suas publicações e conversas"
 
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:50
+#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:50
 msgid "Your profile page"
 msgstr "Sua página de perfil"
 
-#: ../../view/theme/diabook/theme.php:129
+#: ../../view/theme/diabook/theme.php:89
 msgid "Your contacts"
 msgstr "Seus contatos"
 
-#: ../../view/theme/diabook/theme.php:130 ../../include/nav.php:51
+#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:51
 msgid "Your photos"
 msgstr "Suas fotos"
 
-#: ../../view/theme/diabook/theme.php:131 ../../include/nav.php:52
+#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:52
 msgid "Your events"
 msgstr "Seus eventos"
 
-#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
+#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
 msgid "Personal notes"
 msgstr "Suas anotações pessoais"
 
-#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
+#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
 msgid "Your personal photos"
 msgstr "Suas fotos pessoais"
 
-#: ../../view/theme/diabook/theme.php:134
-#: ../../view/theme/diabook/theme.php:643
-#: ../../view/theme/diabook/theme.php:747
-#: ../../view/theme/diabook/config.php:201
+#: ../../view/theme/diabook/theme.php:94
+#: ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:163
 msgid "Community Pages"
 msgstr "Páginas da Comunidade"
 
-#: ../../view/theme/diabook/theme.php:490
-#: ../../view/theme/diabook/theme.php:749
-#: ../../view/theme/diabook/config.php:203
+#: ../../view/theme/diabook/theme.php:384
+#: ../../view/theme/diabook/theme.php:634
+#: ../../view/theme/diabook/config.php:165
 msgid "Community Profiles"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:511
-#: ../../view/theme/diabook/theme.php:754
-#: ../../view/theme/diabook/config.php:208
+#: ../../view/theme/diabook/theme.php:405
+#: ../../view/theme/diabook/theme.php:639
+#: ../../view/theme/diabook/config.php:170
 msgid "Last users"
 msgstr "Últimos usuários"
 
-#: ../../view/theme/diabook/theme.php:540
-#: ../../view/theme/diabook/theme.php:756
-#: ../../view/theme/diabook/config.php:210
+#: ../../view/theme/diabook/theme.php:434
+#: ../../view/theme/diabook/theme.php:641
+#: ../../view/theme/diabook/config.php:172
 msgid "Last likes"
 msgstr "Últimos \"likes\""
 
-#: ../../view/theme/diabook/theme.php:585
-#: ../../view/theme/diabook/theme.php:755
-#: ../../view/theme/diabook/config.php:209
+#: ../../view/theme/diabook/theme.php:479
+#: ../../view/theme/diabook/theme.php:640
+#: ../../view/theme/diabook/config.php:171
 msgid "Last photos"
 msgstr "Últimas fotos"
 
-#: ../../view/theme/diabook/theme.php:622
-#: ../../view/theme/diabook/theme.php:752
-#: ../../view/theme/diabook/config.php:206
+#: ../../view/theme/diabook/theme.php:516
+#: ../../view/theme/diabook/theme.php:637
+#: ../../view/theme/diabook/config.php:168
 msgid "Find Friends"
 msgstr "Encontrar amigos"
 
-#: ../../view/theme/diabook/theme.php:623
+#: ../../view/theme/diabook/theme.php:517
 msgid "Local Directory"
-msgstr ""
+msgstr "Diretório Local"
 
-#: ../../view/theme/diabook/theme.php:625 ../../include/contact_widgets.php:35
+#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35
 msgid "Similar Interests"
 msgstr "Interesses Parecidos"
 
-#: ../../view/theme/diabook/theme.php:627 ../../include/contact_widgets.php:37
+#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37
 msgid "Invite Friends"
 msgstr "Convidar amigos"
 
-#: ../../view/theme/diabook/theme.php:678
-#: ../../view/theme/diabook/theme.php:748
-#: ../../view/theme/diabook/config.php:202
+#: ../../view/theme/diabook/theme.php:572
+#: ../../view/theme/diabook/theme.php:633
+#: ../../view/theme/diabook/config.php:164
 msgid "Earth Layers"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:683
+#: ../../view/theme/diabook/theme.php:577
 msgid "Set zoomfactor for Earth Layers"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:684
-#: ../../view/theme/diabook/config.php:199
+#: ../../view/theme/diabook/theme.php:578
+#: ../../view/theme/diabook/config.php:161
 msgid "Set longitude (X) for Earth Layers"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:685
-#: ../../view/theme/diabook/config.php:200
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/config.php:162
 msgid "Set latitude (Y) for Earth Layers"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:698
-#: ../../view/theme/diabook/theme.php:750
-#: ../../view/theme/diabook/config.php:204
+#: ../../view/theme/diabook/theme.php:592
+#: ../../view/theme/diabook/theme.php:635
+#: ../../view/theme/diabook/config.php:166
 msgid "Help or @NewHere ?"
-msgstr ""
+msgstr "Ajuda ou @NewHere ?"
 
-#: ../../view/theme/diabook/theme.php:705
-#: ../../view/theme/diabook/theme.php:751
-#: ../../view/theme/diabook/config.php:205
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:636
+#: ../../view/theme/diabook/config.php:167
 msgid "Connect Services"
 msgstr "Conectar serviços"
 
-#: ../../view/theme/diabook/theme.php:712
-#: ../../view/theme/diabook/theme.php:753
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:638
 msgid "Last Tweets"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:715
-#: ../../view/theme/diabook/config.php:197
+#: ../../view/theme/diabook/theme.php:609
+#: ../../view/theme/diabook/config.php:159
 msgid "Set twitter search term"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:735
-#: ../../view/theme/diabook/theme.php:736
-#: ../../view/theme/diabook/theme.php:737
-#: ../../view/theme/diabook/theme.php:738
-#: ../../view/theme/diabook/theme.php:739
-#: ../../view/theme/diabook/theme.php:740
-#: ../../view/theme/diabook/theme.php:741
-#: ../../view/theme/diabook/theme.php:742
-#: ../../view/theme/diabook/theme.php:743
-#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:288
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:288
 msgid "don't show"
 msgstr "não exibir"
 
-#: ../../view/theme/diabook/theme.php:735
-#: ../../view/theme/diabook/theme.php:736
-#: ../../view/theme/diabook/theme.php:737
-#: ../../view/theme/diabook/theme.php:738
-#: ../../view/theme/diabook/theme.php:739
-#: ../../view/theme/diabook/theme.php:740
-#: ../../view/theme/diabook/theme.php:741
-#: ../../view/theme/diabook/theme.php:742
-#: ../../view/theme/diabook/theme.php:743
-#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:287
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:287
 msgid "show"
 msgstr "exibir"
 
-#: ../../view/theme/diabook/theme.php:745
+#: ../../view/theme/diabook/theme.php:630
 msgid "Show/hide boxes at right-hand column:"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:194
+#: ../../view/theme/diabook/config.php:156
 #: ../../view/theme/dispy/config.php:74
 msgid "Set line-height for posts and comments"
-msgstr ""
+msgstr "Escolha comprimento da linha para publicações e comentários"
 
-#: ../../view/theme/diabook/config.php:195
+#: ../../view/theme/diabook/config.php:157
 msgid "Set resolution for middle column"
-msgstr ""
+msgstr "Escolha a resolução para a coluna do meio"
 
-#: ../../view/theme/diabook/config.php:196
+#: ../../view/theme/diabook/config.php:158
 msgid "Set color scheme"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:198
+#: ../../view/theme/diabook/config.php:160
 msgid "Set zoomfactor for Earth Layer"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:207
+#: ../../view/theme/diabook/config.php:169
 msgid "Last tweets"
 msgstr ""
 
@@ -7384,6 +7985,10 @@ msgstr "XMPP/IM"
 msgid "MySpace"
 msgstr "MySpace"
 
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr ""
+
 #: ../../include/profile_selectors.php:6
 msgid "Male"
 msgstr "Masculino"
@@ -7625,7 +8230,7 @@ msgstr "Inicia:"
 msgid "Finishes:"
 msgstr "Termina:"
 
-#: ../../include/delivery.php:457 ../../include/notifier.php:703
+#: ../../include/delivery.php:457 ../../include/notifier.php:771
 msgid "(no subject)"
 msgstr "(sem assunto)"
 
@@ -7657,218 +8262,218 @@ msgstr ""
 msgid "older"
 msgstr ""
 
-#: ../../include/text.php:597
+#: ../../include/text.php:604
 msgid "No contacts"
 msgstr "Nenhum contato"
 
-#: ../../include/text.php:606
+#: ../../include/text.php:613
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d contato"
 msgstr[1] "%d contatos"
 
-#: ../../include/text.php:719
+#: ../../include/text.php:726
 msgid "poke"
 msgstr ""
 
-#: ../../include/text.php:719 ../../include/conversation.php:210
+#: ../../include/text.php:726 ../../include/conversation.php:210
 msgid "poked"
 msgstr ""
 
-#: ../../include/text.php:720
+#: ../../include/text.php:727
 msgid "ping"
 msgstr ""
 
-#: ../../include/text.php:720
+#: ../../include/text.php:727
 msgid "pinged"
 msgstr ""
 
-#: ../../include/text.php:721
+#: ../../include/text.php:728
 msgid "prod"
 msgstr ""
 
-#: ../../include/text.php:721
+#: ../../include/text.php:728
 msgid "prodded"
 msgstr ""
 
-#: ../../include/text.php:722
+#: ../../include/text.php:729
 msgid "slap"
 msgstr ""
 
-#: ../../include/text.php:722
+#: ../../include/text.php:729
 msgid "slapped"
 msgstr ""
 
-#: ../../include/text.php:723
+#: ../../include/text.php:730
 msgid "finger"
 msgstr ""
 
-#: ../../include/text.php:723
+#: ../../include/text.php:730
 msgid "fingered"
 msgstr ""
 
-#: ../../include/text.php:724
+#: ../../include/text.php:731
 msgid "rebuff"
 msgstr ""
 
-#: ../../include/text.php:724
+#: ../../include/text.php:731
 msgid "rebuffed"
 msgstr ""
 
-#: ../../include/text.php:736
+#: ../../include/text.php:743
 msgid "happy"
 msgstr ""
 
-#: ../../include/text.php:737
+#: ../../include/text.php:744
 msgid "sad"
 msgstr ""
 
-#: ../../include/text.php:738
+#: ../../include/text.php:745
 msgid "mellow"
 msgstr ""
 
-#: ../../include/text.php:739
+#: ../../include/text.php:746
 msgid "tired"
 msgstr ""
 
-#: ../../include/text.php:740
+#: ../../include/text.php:747
 msgid "perky"
 msgstr ""
 
-#: ../../include/text.php:741
+#: ../../include/text.php:748
 msgid "angry"
 msgstr ""
 
-#: ../../include/text.php:742
+#: ../../include/text.php:749
 msgid "stupified"
 msgstr ""
 
-#: ../../include/text.php:743
+#: ../../include/text.php:750
 msgid "puzzled"
 msgstr ""
 
-#: ../../include/text.php:744
+#: ../../include/text.php:751
 msgid "interested"
 msgstr ""
 
-#: ../../include/text.php:745
+#: ../../include/text.php:752
 msgid "bitter"
 msgstr ""
 
-#: ../../include/text.php:746
+#: ../../include/text.php:753
 msgid "cheerful"
 msgstr ""
 
-#: ../../include/text.php:747
+#: ../../include/text.php:754
 msgid "alive"
 msgstr ""
 
-#: ../../include/text.php:748
+#: ../../include/text.php:755
 msgid "annoyed"
 msgstr ""
 
-#: ../../include/text.php:749
+#: ../../include/text.php:756
 msgid "anxious"
 msgstr ""
 
-#: ../../include/text.php:750
+#: ../../include/text.php:757
 msgid "cranky"
 msgstr ""
 
-#: ../../include/text.php:751
+#: ../../include/text.php:758
 msgid "disturbed"
 msgstr ""
 
-#: ../../include/text.php:752
+#: ../../include/text.php:759
 msgid "frustrated"
 msgstr ""
 
-#: ../../include/text.php:753
+#: ../../include/text.php:760
 msgid "motivated"
 msgstr ""
 
-#: ../../include/text.php:754
+#: ../../include/text.php:761
 msgid "relaxed"
 msgstr ""
 
-#: ../../include/text.php:755
+#: ../../include/text.php:762
 msgid "surprised"
 msgstr ""
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "January"
 msgstr "Janeiro"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "February"
 msgstr "Fevereiro"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "March"
 msgstr "Março"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "April"
 msgstr "Abril"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "May"
 msgstr "Maio"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "June"
 msgstr "Junho"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "July"
 msgstr "Julho"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "August"
 msgstr "Agosto"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "September"
 msgstr "Setembro"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "October"
 msgstr "Outubro"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "November"
 msgstr "Novembro"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "December"
 msgstr "Dezembro"
 
-#: ../../include/text.php:1007
+#: ../../include/text.php:1010
 msgid "bytes"
 msgstr "bytes"
 
-#: ../../include/text.php:1034 ../../include/text.php:1046
+#: ../../include/text.php:1037 ../../include/text.php:1049
 msgid "Click to open/close"
 msgstr "Clique para abrir/fechar"
 
-#: ../../include/text.php:1219 ../../include/user.php:236
+#: ../../include/text.php:1222 ../../include/user.php:236
 msgid "default"
 msgstr "padrão"
 
-#: ../../include/text.php:1231
+#: ../../include/text.php:1234
 msgid "Select an alternate language"
 msgstr "Selecione um idioma alternativo"
 
-#: ../../include/text.php:1441
+#: ../../include/text.php:1444
 msgid "activity"
 msgstr "atividade"
 
-#: ../../include/text.php:1444
+#: ../../include/text.php:1447
 msgid "post"
 msgstr "publicar"
 
-#: ../../include/text.php:1599
+#: ../../include/text.php:1602
 msgid "Item filed"
 msgstr "O item foi arquivado"
 
@@ -7876,11 +8481,11 @@ msgstr "O item foi arquivado"
 msgid "Sharing notification from Diaspora network"
 msgstr "Notificação de compartilhamento da rede Diaspora"
 
-#: ../../include/diaspora.php:2222
+#: ../../include/diaspora.php:2236
 msgid "Attachments:"
 msgstr "Anexos:"
 
-#: ../../include/network.php:849
+#: ../../include/network.php:847
 msgid "view full size"
 msgstr "ver tela cheia"
 
@@ -7892,6 +8497,46 @@ msgstr "Conteúdo incorporado"
 msgid "Embedding disabled"
 msgstr "A incorporação está desabilitada"
 
+#: ../../include/uimport.php:61
+msgid "Error decoding account file"
+msgstr ""
+
+#: ../../include/uimport.php:67
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr ""
+
+#: ../../include/uimport.php:72
+msgid "Error! I can't import this file: DB schema version is not compatible."
+msgstr ""
+
+#: ../../include/uimport.php:81
+msgid "Error! Cannot check nickname"
+msgstr ""
+
+#: ../../include/uimport.php:85
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr ""
+
+#: ../../include/uimport.php:104
+msgid "User creation error"
+msgstr ""
+
+#: ../../include/uimport.php:122
+msgid "User profile creation error"
+msgstr ""
+
+#: ../../include/uimport.php:167
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/uimport.php:245
+msgid "Done. You can now login with your username and password"
+msgstr ""
+
 #: ../../include/group.php:25
 msgid ""
 "A deleted group with this name was revived. Existing item permissions "
@@ -7921,9 +8566,9 @@ msgstr "Criar um novo grupo"
 
 #: ../../include/group.php:273
 msgid "Contacts not in any group"
-msgstr ""
+msgstr "Contatos não estão dentro de nenhum grupo"
 
-#: ../../include/nav.php:46 ../../boot.php:921
+#: ../../include/nav.php:46 ../../boot.php:948
 msgid "Logout"
 msgstr "Sair"
 
@@ -7931,7 +8576,7 @@ msgstr "Sair"
 msgid "End this session"
 msgstr "Terminar esta sessão"
 
-#: ../../include/nav.php:49 ../../boot.php:1676
+#: ../../include/nav.php:49 ../../boot.php:1724
 msgid "Status"
 msgstr "Status"
 
@@ -7979,55 +8624,63 @@ msgstr "Diretório de pessoas"
 msgid "Conversations from your friends"
 msgstr "Conversas dos seus amigos"
 
-#: ../../include/nav.php:121
+#: ../../include/nav.php:114
+msgid "Network Reset"
+msgstr ""
+
+#: ../../include/nav.php:114
+msgid "Load Network page with no filters"
+msgstr ""
+
+#: ../../include/nav.php:122
 msgid "Friend Requests"
 msgstr "Requisições de Amizade"
 
-#: ../../include/nav.php:123
+#: ../../include/nav.php:124
 msgid "See all notifications"
 msgstr "Ver todas notificações"
 
-#: ../../include/nav.php:124
+#: ../../include/nav.php:125
 msgid "Mark all system notifications seen"
 msgstr "Marcar todas as notificações de sistema como vistas"
 
-#: ../../include/nav.php:128
+#: ../../include/nav.php:129
 msgid "Private mail"
 msgstr "Mensagem privada"
 
-#: ../../include/nav.php:129
+#: ../../include/nav.php:130
 msgid "Inbox"
 msgstr "Recebidas"
 
-#: ../../include/nav.php:130
+#: ../../include/nav.php:131
 msgid "Outbox"
 msgstr "Enviadas"
 
-#: ../../include/nav.php:134
+#: ../../include/nav.php:135
 msgid "Manage"
 msgstr "Gerenciar"
 
-#: ../../include/nav.php:134
+#: ../../include/nav.php:135
 msgid "Manage other pages"
 msgstr "Gerenciar outras páginas"
 
-#: ../../include/nav.php:138 ../../boot.php:1196
+#: ../../include/nav.php:140 ../../boot.php:1238
 msgid "Profiles"
 msgstr "Perfis"
 
-#: ../../include/nav.php:138 ../../boot.php:1196
-msgid "Manage/edit profiles"
-msgstr "Gerenciar/editar perfis"
+#: ../../include/nav.php:140
+msgid "Manage/Edit Profiles"
+msgstr ""
 
-#: ../../include/nav.php:139
+#: ../../include/nav.php:142
 msgid "Manage/edit friends and contacts"
 msgstr "Gerenciar/editar amigos e contatos"
 
-#: ../../include/nav.php:146
+#: ../../include/nav.php:149
 msgid "Site setup and configuration"
 msgstr "Configurações do site"
 
-#: ../../include/nav.php:170
+#: ../../include/nav.php:173
 msgid "Nothing new here"
 msgstr "Nada de novo aqui"
 
@@ -8068,39 +8721,39 @@ msgstr "Examplos: Robert Morgenstein, Fishing"
 
 #: ../../include/contact_widgets.php:36
 msgid "Random Profile"
-msgstr ""
+msgstr "Perfil Randômico"
 
-#: ../../include/contact_widgets.php:68
+#: ../../include/contact_widgets.php:70
 msgid "Networks"
 msgstr "Redes"
 
-#: ../../include/contact_widgets.php:71
+#: ../../include/contact_widgets.php:73
 msgid "All Networks"
 msgstr "Todas as redes"
 
-#: ../../include/contact_widgets.php:98
+#: ../../include/contact_widgets.php:103 ../../include/features.php:59
 msgid "Saved Folders"
 msgstr "Pastas salvas"
 
-#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
 msgid "Everything"
 msgstr "Tudo"
 
-#: ../../include/contact_widgets.php:126
+#: ../../include/contact_widgets.php:135
 msgid "Categories"
 msgstr "Categorias"
 
-#: ../../include/auth.php:35
+#: ../../include/auth.php:36
 msgid "Logged out."
 msgstr "Saiu."
 
-#: ../../include/auth.php:114
+#: ../../include/auth.php:126
 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/auth.php:114
+#: ../../include/auth.php:126
 msgid "The error message was:"
 msgstr "A mensagem de erro foi:"
 
@@ -8161,38 +8814,186 @@ msgstr "segundos"
 msgid "%1$d %2$s ago"
 msgstr "%1$d %2$s atrás"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1688
+#: ../../include/datetime.php:472 ../../include/items.php:1695
 #, php-format
 msgid "%s's birthday"
 msgstr ""
 
-#: ../../include/datetime.php:473 ../../include/items.php:1689
+#: ../../include/datetime.php:473 ../../include/items.php:1696
 #, php-format
 msgid "Happy Birthday %s"
 msgstr ""
 
-#: ../../include/onepoll.php:409
+#: ../../include/onepoll.php:414
 msgid "From: "
 msgstr "De: "
 
-#: ../../include/bbcode.php:185 ../../include/bbcode.php:406
+#: ../../include/bbcode.php:202 ../../include/bbcode.php:423
 msgid "Image/photo"
 msgstr "Imagem/foto"
 
-#: ../../include/bbcode.php:371 ../../include/bbcode.php:391
+#: ../../include/bbcode.php:388 ../../include/bbcode.php:408
 msgid "$1 wrote:"
 msgstr "$1 escreveu:"
 
-#: ../../include/bbcode.php:410 ../../include/bbcode.php:411
+#: ../../include/bbcode.php:427 ../../include/bbcode.php:428
 msgid "Encrypted content"
 msgstr ""
 
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr ""
+
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr ""
+
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr ""
+
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr ""
+
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr ""
+
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr ""
+
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr ""
+
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr ""
+
+#: ../../include/features.php:37
+msgid "Network Sidebar Widgets"
+msgstr ""
+
+#: ../../include/features.php:38
+msgid "Search by Date"
+msgstr ""
+
+#: ../../include/features.php:38
+msgid "Ability to select posts by date ranges"
+msgstr ""
+
+#: ../../include/features.php:39
+msgid "Group Filter"
+msgstr ""
+
+#: ../../include/features.php:39
+msgid "Enable widget to display Network posts only from selected group"
+msgstr ""
+
+#: ../../include/features.php:40
+msgid "Network Filter"
+msgstr ""
+
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected network"
+msgstr ""
+
+#: ../../include/features.php:41
+msgid "Save search terms for re-use"
+msgstr ""
+
+#: ../../include/features.php:46
+msgid "Network Tabs"
+msgstr ""
+
+#: ../../include/features.php:47
+msgid "Network Personal Tab"
+msgstr ""
+
+#: ../../include/features.php:47
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr ""
+
+#: ../../include/features.php:48
+msgid "Network New Tab"
+msgstr ""
+
+#: ../../include/features.php:48
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr ""
+
+#: ../../include/features.php:49
+msgid "Network Shared Links Tab"
+msgstr ""
+
+#: ../../include/features.php:49
+msgid "Enable tab to display only Network posts with links in them"
+msgstr ""
+
+#: ../../include/features.php:54
+msgid "Post/Comment Tools"
+msgstr ""
+
+#: ../../include/features.php:55
+msgid "Multiple Deletion"
+msgstr ""
+
+#: ../../include/features.php:55
+msgid "Select and delete multiple posts/comments at once"
+msgstr ""
+
+#: ../../include/features.php:56
+msgid "Edit Sent Posts"
+msgstr ""
+
+#: ../../include/features.php:56
+msgid "Edit and correct posts and comments after sending"
+msgstr ""
+
+#: ../../include/features.php:57
+msgid "Tagging"
+msgstr ""
+
+#: ../../include/features.php:57
+msgid "Ability to tag existing posts"
+msgstr ""
+
+#: ../../include/features.php:58
+msgid "Post Categories"
+msgstr ""
+
+#: ../../include/features.php:58
+msgid "Add categories to your posts"
+msgstr ""
+
+#: ../../include/features.php:59
+msgid "Ability to file posts under folders"
+msgstr ""
+
+#: ../../include/features.php:60
+msgid "Dislike Posts"
+msgstr ""
+
+#: ../../include/features.php:60
+msgid "Ability to dislike posts/comments"
+msgstr ""
+
+#: ../../include/features.php:61
+msgid "Star Posts"
+msgstr ""
+
+#: ../../include/features.php:61
+msgid "Ability to mark special posts with a star indicator"
+msgstr ""
+
 #: ../../include/dba.php:41
 #, 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/message.php:15 ../../include/message.php:171
+#: ../../include/message.php:15 ../../include/message.php:172
 msgid "[no subject]"
 msgstr "[sem assunto]"
 
@@ -8441,15 +9242,15 @@ msgstr "Não foi possível recuperar a informação do contato."
 msgid "following"
 msgstr "acompanhando"
 
-#: ../../include/items.php:3299
+#: ../../include/items.php:3363
 msgid "A new person is sharing with you at "
 msgstr "Uma nova pessoa está compartilhando com você em "
 
-#: ../../include/items.php:3299
+#: ../../include/items.php:3363
 msgid "You have a new follower at "
 msgstr "Você tem um novo acompanhante em "
 
-#: ../../include/items.php:3980
+#: ../../include/items.php:4047
 msgid "Archives"
 msgstr ""
 
@@ -8533,44 +9334,44 @@ msgstr "Por favor, envie uma foto para o perfil."
 msgid "Welcome back "
 msgstr "Bem-vindo(a) de volta "
 
-#: ../../include/security.php:354
+#: ../../include/security.php:357
 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/Contact.php:111
+#: ../../include/Contact.php:115
 msgid "stopped following"
 msgstr "parou de acompanhar"
 
-#: ../../include/Contact.php:220 ../../include/conversation.php:743
+#: ../../include/Contact.php:225 ../../include/conversation.php:795
 msgid "Poke"
 msgstr ""
 
-#: ../../include/Contact.php:221 ../../include/conversation.php:737
+#: ../../include/Contact.php:226 ../../include/conversation.php:789
 msgid "View Status"
-msgstr ""
+msgstr "Ver Status"
 
-#: ../../include/Contact.php:222 ../../include/conversation.php:738
+#: ../../include/Contact.php:227 ../../include/conversation.php:790
 msgid "View Profile"
-msgstr ""
+msgstr "Ver Perfil"
 
-#: ../../include/Contact.php:223 ../../include/conversation.php:739
+#: ../../include/Contact.php:228 ../../include/conversation.php:791
 msgid "View Photos"
-msgstr ""
+msgstr "Ver Fotos"
 
-#: ../../include/Contact.php:224 ../../include/Contact.php:237
-#: ../../include/conversation.php:740
+#: ../../include/Contact.php:229 ../../include/Contact.php:242
+#: ../../include/conversation.php:792
 msgid "Network Posts"
-msgstr ""
+msgstr "Publicações da Rede"
 
-#: ../../include/Contact.php:225 ../../include/Contact.php:237
-#: ../../include/conversation.php:741
+#: ../../include/Contact.php:230 ../../include/Contact.php:242
+#: ../../include/conversation.php:793
 msgid "Edit Contact"
-msgstr ""
+msgstr "Editar Contato"
 
-#: ../../include/Contact.php:226 ../../include/Contact.php:237
-#: ../../include/conversation.php:742
+#: ../../include/Contact.php:231 ../../include/Contact.php:242
+#: ../../include/conversation.php:794
 msgid "Send PM"
 msgstr "Enviar MP"
 
@@ -8588,86 +9389,90 @@ msgstr "postagem/item"
 msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr "%1$s marcou %3$s de %2$s como favorito"
 
-#: ../../include/conversation.php:548 ../../object/Item.php:218
+#: ../../include/conversation.php:599 ../../object/Item.php:225
 msgid "Categories:"
 msgstr ""
 
-#: ../../include/conversation.php:549 ../../object/Item.php:219
+#: ../../include/conversation.php:600 ../../object/Item.php:226
 msgid "Filed under:"
 msgstr ""
 
-#: ../../include/conversation.php:633
+#: ../../include/conversation.php:685
 msgid "remove"
 msgstr "remover"
 
-#: ../../include/conversation.php:637
+#: ../../include/conversation.php:689
 msgid "Delete Selected Items"
 msgstr "Excluir os itens selecionados"
 
-#: ../../include/conversation.php:736
+#: ../../include/conversation.php:788
 msgid "Follow Thread"
 msgstr ""
 
-#: ../../include/conversation.php:805
+#: ../../include/conversation.php:857
 #, php-format
 msgid "%s likes this."
 msgstr "%s gostou disso."
 
-#: ../../include/conversation.php:805
+#: ../../include/conversation.php:857
 #, php-format
 msgid "%s doesn't like this."
 msgstr "%s não gostou disso."
 
-#: ../../include/conversation.php:809
+#: ../../include/conversation.php:861
 #, php-format
 msgid "<span  %1$s>%2$d people</span> like this."
 msgstr "<span  %1$s>%2$d pessoas</span> gostaram disso."
 
-#: ../../include/conversation.php:811
+#: ../../include/conversation.php:863
 #, 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/conversation.php:817
+#: ../../include/conversation.php:869
 msgid "and"
 msgstr "e"
 
-#: ../../include/conversation.php:820
+#: ../../include/conversation.php:875
 #, php-format
 msgid ", and %d other people"
 msgstr ", e mais %d outras pessoas"
 
-#: ../../include/conversation.php:821
+#: ../../include/conversation.php:877
 #, php-format
 msgid "%s like this."
 msgstr "%s gostaram disso."
 
-#: ../../include/conversation.php:821
+#: ../../include/conversation.php:877
 #, php-format
 msgid "%s don't like this."
 msgstr "%s não gostaram disso."
 
-#: ../../include/conversation.php:845 ../../include/conversation.php:862
+#: ../../include/conversation.php:904 ../../include/conversation.php:922
 msgid "Visible to <strong>everybody</strong>"
 msgstr "Visível para <strong>todos</strong>"
 
-#: ../../include/conversation.php:847 ../../include/conversation.php:864
+#: ../../include/conversation.php:906 ../../include/conversation.php:924
 msgid "Please enter a video link/URL:"
 msgstr "Favor fornecer um link/URL de vídeo"
 
-#: ../../include/conversation.php:848 ../../include/conversation.php:865
+#: ../../include/conversation.php:907 ../../include/conversation.php:925
 msgid "Please enter an audio link/URL:"
 msgstr "Favor fornecer um link/URL de áudio"
 
-#: ../../include/conversation.php:849 ../../include/conversation.php:866
+#: ../../include/conversation.php:908 ../../include/conversation.php:926
 msgid "Tag term:"
 msgstr "Termo da tag:"
 
-#: ../../include/conversation.php:851 ../../include/conversation.php:868
+#: ../../include/conversation.php:910 ../../include/conversation.php:928
 msgid "Where are you right now?"
 msgstr "Onde você está agora?"
 
-#: ../../include/conversation.php:930
+#: ../../include/conversation.php:911
+msgid "Delete item(s)?"
+msgstr ""
+
+#: ../../include/conversation.php:990
 msgid "permissions"
 msgstr "permissões"
 
@@ -8683,104 +9488,172 @@ msgstr ""
 msgid "This action is not available under your subscription plan."
 msgstr ""
 
-#: ../../boot.php:583
+#: ../../boot.php:607
 msgid "Delete this item?"
 msgstr "Excluir este item?"
 
-#: ../../boot.php:586
+#: ../../boot.php:610
 msgid "show fewer"
 msgstr "exibir menos"
 
-#: ../../boot.php:793
+#: ../../boot.php:819
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr ""
 
-#: ../../boot.php:795
+#: ../../boot.php:821
 #, php-format
 msgid "Update Error at %s"
 msgstr ""
 
-#: ../../boot.php:896
+#: ../../boot.php:922
 msgid "Create a New Account"
 msgstr "Criar uma nova conta"
 
-#: ../../boot.php:924
+#: ../../boot.php:951
 msgid "Nickname or Email address: "
 msgstr "Identificação ou endereço de e-mail: "
 
-#: ../../boot.php:925
+#: ../../boot.php:952
 msgid "Password: "
 msgstr "Senha: "
 
-#: ../../boot.php:928
+#: ../../boot.php:953
+msgid "Remember me"
+msgstr ""
+
+#: ../../boot.php:956
 msgid "Or login using OpenID: "
 msgstr "Ou login usando OpendID:"
 
-#: ../../boot.php:934
+#: ../../boot.php:962
 msgid "Forgot your password?"
 msgstr "Esqueceu a sua senha?"
 
-#: ../../boot.php:1045
+#: ../../boot.php:1087
 msgid "Requested account is not available."
 msgstr ""
 
-#: ../../boot.php:1122
+#: ../../boot.php:1164
 msgid "Edit profile"
 msgstr "Editar perfil"
 
-#: ../../boot.php:1188
+#: ../../boot.php:1230
 msgid "Message"
 msgstr "Mensagem"
 
-#: ../../boot.php:1310 ../../boot.php:1396
+#: ../../boot.php:1238
+msgid "Manage/edit profiles"
+msgstr "Gerenciar/editar perfis"
+
+#: ../../boot.php:1352 ../../boot.php:1438
 msgid "g A l F d"
 msgstr "G l d F"
 
-#: ../../boot.php:1311 ../../boot.php:1397
+#: ../../boot.php:1353 ../../boot.php:1439
 msgid "F d"
 msgstr "F d"
 
-#: ../../boot.php:1356 ../../boot.php:1437
+#: ../../boot.php:1398 ../../boot.php:1479
 msgid "[today]"
 msgstr "[hoje]"
 
-#: ../../boot.php:1368
+#: ../../boot.php:1410
 msgid "Birthday Reminders"
 msgstr "Lembretes de aniversário"
 
-#: ../../boot.php:1369
+#: ../../boot.php:1411
 msgid "Birthdays this week:"
 msgstr "Aniversários nesta semana:"
 
-#: ../../boot.php:1430
+#: ../../boot.php:1472
 msgid "[No description]"
 msgstr "[Sem descrição]"
 
-#: ../../boot.php:1448
+#: ../../boot.php:1490
 msgid "Event Reminders"
 msgstr "Lembretes de eventos"
 
-#: ../../boot.php:1449
+#: ../../boot.php:1491
 msgid "Events this week:"
 msgstr "Eventos esta semana:"
 
-#: ../../boot.php:1679
+#: ../../boot.php:1727
 msgid "Status Messages and Posts"
 msgstr ""
 
-#: ../../boot.php:1686
+#: ../../boot.php:1734
 msgid "Profile Details"
 msgstr ""
 
-#: ../../boot.php:1703
+#: ../../boot.php:1751
 msgid "Events and Calendar"
 msgstr ""
 
-#: ../../boot.php:1710
+#: ../../boot.php:1758
 msgid "Only You Can See This"
 msgstr ""
 
-#: ../../index.php:378
+#: ../../object/Item.php:237
+msgid "via"
+msgstr ""
+
+#: ../../index.php:398
 msgid "toggle mobile"
 msgstr ""
+
+#: ../../addon.old/bg/bg.php:51
+msgid "Bg settings updated."
+msgstr ""
+
+#: ../../addon.old/bg/bg.php:82
+msgid "Bg Settings"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:35
+msgid "Post to Drupal"
+msgstr "Postar no Drupal"
+
+#: ../../addon.old/drpost/drpost.php:72
+msgid "Drupal Post Settings"
+msgstr "Configurações de Postagem no Drupal"
+
+#: ../../addon.old/drpost/drpost.php:74
+msgid "Enable Drupal Post Plugin"
+msgstr "Habilitar Plugin de Postagem do Drupal"
+
+#: ../../addon.old/drpost/drpost.php:79
+msgid "Drupal username"
+msgstr "Nome de Usuário Drupal"
+
+#: ../../addon.old/drpost/drpost.php:84
+msgid "Drupal password"
+msgstr "Senha Drupal"
+
+#: ../../addon.old/drpost/drpost.php:89
+msgid "Post Type - article,page,or blog"
+msgstr "Tipo de Postagem - artigo, página ou blog"
+
+#: ../../addon.old/drpost/drpost.php:94
+msgid "Drupal site URL"
+msgstr "URL do site Drupal"
+
+#: ../../addon.old/drpost/drpost.php:99
+msgid "Drupal site uses clean URLS"
+msgstr "Site Drupal usa URLs limpas"
+
+#: ../../addon.old/drpost/drpost.php:104
+msgid "Post to Drupal by default"
+msgstr "Postar para o Drupal como padrão"
+
+#: ../../addon.old/oembed.old/oembed.php:30
+msgid "OEmbed settings updated"
+msgstr "As configurações OEmbed foram atualizadas"
+
+#: ../../addon.old/oembed.old/oembed.php:43
+msgid "Use OEmbed for YouTube videos"
+msgstr "Usar OEmbed para vídeos do YouTube"
+
+#: ../../addon.old/oembed.old/oembed.php:71
+msgid "URL to embed:"
+msgstr "URL a ser incorporada:"
index 9d2b0e87ca175ea9f70b6532ab3a76eadd2c6092..fb71c004a107485315fc6ca7be00b34356f081f8 100644 (file)
@@ -58,7 +58,7 @@ $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["%s welcomes %s"] = "%s dá as boas vindas a %s";
+$a->strings["%1\$s welcomes %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.";
@@ -74,9 +74,8 @@ $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["Delete Photo"] = "Excluir a foto";
-$a->strings["was tagged in a"] = "foi etiquetada em uma";
-$a->strings["photo"] = "foto";
-$a->strings["by"] = "por";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
+$a->strings["a photo"] = "";
 $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.";
@@ -85,7 +84,6 @@ $a->strings["Public access denied."] = "Acesso público negado.";
 $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["You have used %1$.2f Mbytes of photo storage."] = "Você está usando %1$.2f Mbytes do 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: ";
@@ -199,6 +197,18 @@ $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["Account settings"] = "Configurações da conta";
+$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["Connected apps"] = "Aplicações conectadas";
+$a->strings["Export personal data"] = "Exportar dados pessoais";
+$a->strings["Remove account"] = "Remover a conta";
+$a->strings["Settings"] = "Configurações";
+$a->strings["Export account"] = "";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "";
+$a->strings["Export all"] = "";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "";
 $a->strings["Friendica Social Communications Server - Setup"] = "Servidor de Comunicações Sociais 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.";
@@ -249,13 +259,13 @@ $a->strings["You can alternatively skip this procedure and perform a manual inst
 $a->strings[".htconfig.php is writable"] = ".htconfig.php tem permissão de escrita";
 $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 Friendica em seu servidor web.";
+$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["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 fornece este serviço para compartilhar eventos com outras redes e amigos em fusos horários diferentes.";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "";
 $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";
@@ -442,18 +452,12 @@ $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["Account settings"] = "Configurações da conta";
-$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["Connected apps"] = "Aplicações conectadas";
-$a->strings["Export personal data"] = "Exportar dados pessoais";
-$a->strings["Remove account"] = "Remover a conta";
-$a->strings["Settings"] = "Configurações";
+$a->strings["Additional features"] = "";
 $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"] = "";
 $a->strings["Passwords do not match. Password unchanged."] = "As senhas não correspondem. A senha não foi modificada.";
 $a->strings["Empty passwords are not allowed. Password unchanged."] = "Não é permitido uma senha em branco. A senha não foi modificada.";
 $a->strings["Password changed."] = "A senha foi modificada.";
@@ -477,6 +481,9 @@ $a->strings["No name"] = "Sem nome";
 $a->strings["Remove authorization"] = "Remover autorização";
 $a->strings["No Plugin settings configured"] = "Não foi definida nenhuma configuração de plugin";
 $a->strings["Plugin Settings"] = "Configurações do plugin";
+$a->strings["Off"] = "";
+$a->strings["On"] = "";
+$a->strings["Additional Features"] = "";
 $a->strings["Built-in support for %s connectivity is %s"] = "O suporte interno para conectividade de %s está %s";
 $a->strings["enabled"] = "habilitado";
 $a->strings["disabled"] = "desabilitado";
@@ -586,10 +593,10 @@ $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["Starred"] = "Destacada";
-$a->strings["Favourite Posts"] = "Publicações favoritas";
 $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.",
@@ -600,6 +607,12 @@ $a->strings["Private messages to this person are at risk of public disclosure."]
 $a->strings["Invalid contact."] = "Contato inválido.";
 $a->strings["Personal Notes"] = "Notas pessoais";
 $a->strings["Save"] = "Salvar";
+$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["Import"] = "";
+$a->strings["Move account"] = "";
+$a->strings["You can import an account from another Friendica server. <br>\r\n                            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.<br>\r\n                            <b>This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"] = "";
+$a->strings["Account file"] = "";
+$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "";
 $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.";
@@ -645,7 +658,7 @@ $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->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.";
@@ -675,7 +688,6 @@ $a->strings["Failed to send email message. Here is the message that failed."] =
 $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): ";
@@ -689,6 +701,7 @@ $a->strings["Choose a profile nickname. This must begin with a text character. Y
 $a->strings["Choose a nickname: "] = "Escolha uma identificação: ";
 $a->strings["Register"] = "Registrar";
 $a->strings["People Search"] = "Pesquisar pessoas";
+$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";
@@ -785,7 +798,7 @@ $a->strings["Site name"] = "Nome do site";
 $a->strings["Banner/Logo"] = "Banner/Logo";
 $a->strings["System language"] = "Idioma do sistema";
 $a->strings["System theme"] = "Tema do sistema";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Tema padrão do sistema. Pode ser substituído nos perfis de usuário -  <a href='#' id='cnftheme'>alterar configurações do tema</a>";
 $a->strings["Mobile system theme"] = "Tema do sistema para dispositivos móveis";
 $a->strings["Theme for mobile devices"] = "Tema para dispositivos móveis";
 $a->strings["SSL link policy"] = "Política de link SSL";
@@ -793,10 +806,12 @@ $a->strings["Determines whether generated links should be forced to use SSL"] =
 $a->strings["Maximum image size"] = "Tamanho máximo da imagem";
 $a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamanho máximo, em bytes, das imagens enviadas. O padrão é 0, o que significa sem limites";
 $a->strings["Maximum image length"] = "Tamanho máximo da imagem";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites.";
 $a->strings["JPEG image quality"] = "Qualidade da imagem JPEG";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade.";
 $a->strings["Register policy"] = "Política de registro";
+$a->strings["Maximum Daily Registrations"] = "";
+$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "";
 $a->strings["Register text"] = "Texto de registro";
 $a->strings["Will be displayed prominently on the registration page."] = "Será exibido com destaque na página de registro.";
 $a->strings["Accounts abandoned after x days"] = "Contas abandonadas após x dias";
@@ -806,15 +821,15 @@ $a->strings["Comma separated list of domains which are allowed to establish frie
 $a->strings["Allowed email domains"] = "Domínios de e-mail permitidos";
 $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 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";
 $a->strings["Block public"] = "Bloquear acesso público";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "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.";
 $a->strings["Force publish"] = "Forçar a listagem";
 $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Marque para forçar todos os perfis desse site a serem listados no diretório do site.";
 $a->strings["Global directory update URL"] = "URL de atualização do diretório global";
-$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
+$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL para atualizar o diretório global. Se isso não for definido, o diretório global não estará disponível neste site.";
 $a->strings["Allow threaded items"] = "";
 $a->strings["Allow infinite level threading for items on this site."] = "";
 $a->strings["Private posts by default for new users"] = "Publicações privadas por padrão para novos usuários";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "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.";
 $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";
@@ -826,13 +841,13 @@ $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."] = "";
+$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["Enable Diaspora support"] = "Habilitar suporte ao Diaspora";
 $a->strings["Provide built-in Diaspora network compatibility."] = "Fornece compatibilidade nativa com a rede Diaspora.";
 $a->strings["Only allow Friendica contacts"] = "Permitir somente contatos Friendica";
 $a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Todos os contatos devem usar protocolos Friendica. Todos os outros protocolos de comunicação embarcados estão desabilitados";
 $a->strings["Verify SSL"] = "Verificar SSL";
-$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "";
+$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "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.";
 $a->strings["Proxy user"] = "Usuário do proxy";
 $a->strings["Proxy URL"] = "URL do proxy";
 $a->strings["Network timeout"] = "Limite de tempo da rede";
@@ -936,7 +951,7 @@ $a->strings["Religion"] = "Religião";
 $a->strings["Political Views"] = "Posicionamento político";
 $a->strings["Gender"] = "Gênero";
 $a->strings["Sexual Preference"] = "Preferência sexual";
-$a->strings["Homepage"] = "";
+$a->strings["Homepage"] = "Página Principal";
 $a->strings["Interests"] = "Interesses";
 $a->strings["Address"] = "Endereço";
 $a->strings["Location"] = "Localização";
@@ -945,7 +960,7 @@ $a->strings[" and "] = " e ";
 $a->strings["public profile"] = "perfil público";
 $a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
 $a->strings[" - Visit %1\$s's %2\$s"] = "";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s foi atualizado %2\$s, mudando %3\$s.";
 $a->strings["Profile deleted."] = "O perfil foi excluído.";
 $a->strings["Profile-"] = "Perfil-";
 $a->strings["New profile created."] = "O novo perfil foi criado.";
@@ -1042,13 +1057,13 @@ $a->strings["%d message sent."] = array(
        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."] = "";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "";
+$a->strings["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."] = "";
+$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.";
@@ -1096,8 +1111,8 @@ $a->strings["Comma separated applications to ignore"] = "Ignorar aplicações se
 $a->strings["Problems with Facebook Real-Time Updates"] = "Problemas com as atualizações em tempo real do Facebook";
 $a->strings["Facebook Connector Settings"] = "Configurações do conector do Facebook";
 $a->strings["Facebook API Key"] = "Chave da API do Facebook";
-$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "";
-$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "";
+$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "Erro: parece que você especificou o App-ID e o -Secret no arquivo .htconfig.php. Uma vez estão especificado lá, eles não podem ser definidos neste formulário.<br><br>";
+$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Erro: a chave de API fornecida parece estar incorreta (não foi possível recuperar o token de acesso à aplicação).";
 $a->strings["The given API Key seems to work correctly."] = "A chave de API fornecida aparentemente está funcionando corretamente.";
 $a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "";
 $a->strings["App-ID / API-Key"] = "App-ID / API-Key";
@@ -1116,13 +1131,10 @@ $a->strings["View on Friendica"] = "Ver no Friendica";
 $a->strings["Facebook post failed. Queued for retry."] = "Não foi possível publicar no Facebook. Armazenado na fila para nova tentativa.";
 $a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "A sua conexão com o Facebook tornou-se invalida. Por favor autentique-se novamente.";
 $a->strings["Facebook connection became invalid"] = "A conexão com o Facebook tornou-se inválida";
-$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "";
+$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "Olá %1\$s,\n\nA conexão entre suas contas em %2\$s e o Facebook se tornou inválida. Isso geralmente acontece quando se troca a senha do Facebook. Para habilitar a conexão novamente vocẽ deve %3\$sreautenticar o conector do Facebook%4\$s.";
 $a->strings["StatusNet AutoFollow settings updated."] = "";
 $a->strings["StatusNet AutoFollow Settings"] = "";
 $a->strings["Automatically follow any StatusNet followers/mentioners"] = "";
-$a->strings["Bg settings updated."] = "";
-$a->strings["Bg Settings"] = "";
-$a->strings["How many contacts to display on profile sidebar"] = "Quantos contatos mostrar na barra lateral do perfil";
 $a->strings["Lifetime of the cache (in hours)"] = "Tempo de vida do cache (em horas)";
 $a->strings["Cache Statistics"] = "Estatísticas do cache";
 $a->strings["Number of items"] = "Número de itens";
@@ -1194,7 +1206,7 @@ $a->strings["Enable LiveJournal Post Plugin"] = "Habilitar o plugin de publicaç
 $a->strings["LiveJournal username"] = "Nome de usuário do LiveJournal";
 $a->strings["LiveJournal password"] = "Senha do LiveJournal";
 $a->strings["Post to LiveJournal by default"] = "Publicar no LiveJournal por padrão";
-$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "";
+$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Configurações do filtro de conteúdo impróprio para o local de trabalho (Not Safe For Work)";
 $a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW.  This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "";
 $a->strings["Enable Content filter"] = "Habilitar o filtro de conteúdo";
 $a->strings["Comma separated list of keywords to hide"] = "Lista de palavras-chave a serem ocultadas, separadas por vírgula";
@@ -1208,8 +1220,9 @@ $a->strings["Page Settings"] = "Configurações da página";
 $a->strings["How many forums to display on sidebar without paging"] = "";
 $a->strings["Randomise Page/Forum list"] = "";
 $a->strings["Show pages/forums on profile page"] = "";
-$a->strings["Planets Settings"] = "";
-$a->strings["Enable Planets Plugin"] = "";
+$a->strings["Planets Settings"] = "Configuração dos planetas";
+$a->strings["Enable Planets Plugin"] = "Habilita configuração dos planetas";
+$a->strings["Forum Directory"] = "";
 $a->strings["Login"] = "Entrar";
 $a->strings["OpenID"] = "OpenID";
 $a->strings["Latest users"] = "Últimos usuários";
@@ -1365,16 +1378,15 @@ $a->strings["Enable dreamwidth Post Plugin"] = "Habilitar o plugin de publicaç
 $a->strings["dreamwidth username"] = "Nome de usuário do Dreamwidth";
 $a->strings["dreamwidth password"] = "Senha do Dreamwidth";
 $a->strings["Post to dreamwidth by default"] = "Publicar no Dreamwidth por padrão";
-$a->strings["Post to Drupal"] = "Postar no Drupal";
-$a->strings["Drupal Post Settings"] = "Configurações de Postagem no Drupal";
-$a->strings["Enable Drupal Post Plugin"] = "Habilitar Plugin de Postagem do Drupal";
-$a->strings["Drupal username"] = "Nome de Usuário Drupal";
-$a->strings["Drupal password"] = "Senha Drupal";
-$a->strings["Post Type - article,page,or blog"] = "Tipo de Postagem - artigo, página ou blog";
-$a->strings["Drupal site URL"] = "URL do site Drupal";
-$a->strings["Drupal site uses clean URLS"] = "Site Drupal usa URLs limpas";
-$a->strings["Post to Drupal by default"] = "Postar para o Drupal como padrão";
-$a->strings["Post from Friendica"] = "Postar do Friendica";
+$a->strings["Remote Permissions Settings"] = "";
+$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "";
+$a->strings["Remote Permissions settings updated."] = "";
+$a->strings["Visible to"] = "";
+$a->strings["may only be a partial list"] = "";
+$a->strings["Global"] = "";
+$a->strings["The posts of every user on this server show the post recipients"] = "";
+$a->strings["Individual"] = "";
+$a->strings["Each user chooses whether his/her posts show the post recipients"] = "";
 $a->strings["Startpage Settings"] = "Configurações da página inicial";
 $a->strings["Home page to load after login  - leave blank for profile wall"] = "Página a ser carregada após a autenticação - deixe em branco para o mural do perfil";
 $a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "Exemplos: &quot;network&quot; or &quot;notifications/system&quot;";
@@ -1391,9 +1403,6 @@ $a->strings["No files were uploaded."] = "Nenhum arquivo foi enviado.";
 $a->strings["Uploaded file is empty"] = "O arquivo enviado está em branco";
 $a->strings["File has an invalid extension, it should be one of "] = "O arquivo possui uma extensão inválida, são aceitas somente ";
 $a->strings["Upload was cancelled, or server error encountered"] = "O envio foi cancelado ou ocorreu algum erro no servidor";
-$a->strings["OEmbed settings updated"] = "As configurações OEmbed foram atualizadas";
-$a->strings["Use OEmbed for YouTube videos"] = "Usar OEmbed para vídeos do YouTube";
-$a->strings["URL to embed:"] = "URL a ser incorporada:";
 $a->strings["show/hide"] = "";
 $a->strings["No forum subscriptions"] = "";
 $a->strings["Forumlist settings updated."] = "";
@@ -1406,13 +1415,13 @@ $a->strings["Site Owner"] = "Responsável pelo site";
 $a->strings["Email Address"] = "Endereço de e-mail";
 $a->strings["Postal Address"] = "Endereço postal";
 $a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "O complemento Impressum necessita ser configurado!<br/>Por favor, adicione ao menos o nome do <tt>responsável</tt> ao arquivo de configuração. Para outras informações, por favor, consulte o arquivo README do complemento.";
-$a->strings["The page operators name."] = "";
+$a->strings["The page operators name."] = "O nome da página  operadores";
 $a->strings["Site Owners Profile"] = "Perfil do responsável pelo site";
-$a->strings["Profile address of the operator."] = "";
+$a->strings["Profile address of the operator."] = "Endereço do perfil do operador";
 $a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "";
 $a->strings["Notes"] = "Notas";
 $a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "";
-$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "";
+$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Como entrar em contato com o operador por e-mail. (não será mostrado)";
 $a->strings["Footer note"] = "Nota de rodapé";
 $a->strings["Text for the footer. You can use BBCode here."] = "";
 $a->strings["Report Bug"] = "Relate um Bug";
@@ -1441,16 +1450,16 @@ $a->strings["Editplain settings updated."] = "Configurações Editplain atualiza
 $a->strings["Group Text"] = "";
 $a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "";
 $a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "";
-$a->strings["generic profile image"] = "";
-$a->strings["random geometric pattern"] = "";
-$a->strings["monster face"] = "";
-$a->strings["computer generated face"] = "";
-$a->strings["retro arcade style face"] = "";
+$a->strings["generic profile image"] = "Imagem genérica de perfil";
+$a->strings["random geometric pattern"] = "Padrão geométrico randômico";
+$a->strings["monster face"] = "cara de monstro";
+$a->strings["computer generated face"] = "face gerada por computador";
+$a->strings["retro arcade style face"] = "estilo de face arcade retrô";
 $a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "";
 $a->strings["This addon is not functional on your server."] = "";
 $a->strings["Information"] = "";
 $a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
-$a->strings["Default avatar image"] = "";
+$a->strings["Default avatar image"] = "Imagem padrão do Avatar ";
 $a->strings["Select default avatar image if none was found. See README"] = "";
 $a->strings["Libravatar settings updated."] = "";
 $a->strings["Post to libertree"] = "";
@@ -1469,11 +1478,11 @@ $a->strings["The URL for the javascript file that should be included to use Math
 $a->strings["Editplain Settings"] = "Configurações Editplain";
 $a->strings["Disable richtext status editor"] = "Disabilite o modo de edição richtext";
 $a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
-$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "";
-$a->strings["Rating of images"] = "";
+$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "Selecione a imagem  padrão do Avatar se nenhuma for encontrada no Gravatar. Veja o Leiame";
+$a->strings["Rating of images"] = "Avaliação de imagens";
 $a->strings["Select the appropriate avatar rating for your site. See README"] = "";
-$a->strings["Gravatar settings updated."] = "";
-$a->strings["Your Friendica test account is about to expire."] = "";
+$a->strings["Gravatar settings updated."] = "Configurações do Avatar atualizadas";
+$a->strings["Your Friendica test account is about to expire."] = "Sua conta de teste no Friendica vai expirar.";
 $a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "";
 $a->strings["\"pageheader\" Settings"] = "Configurações do \"pageheader\"";
 $a->strings["pageheader Settings saved."] = "Configurações do pageheader armazenadas.";
@@ -1532,6 +1541,7 @@ $a->strings["Tumblr password"] = "Senha Tumblr";
 $a->strings["Post to Tumblr by default"] = "Postar para o Tumblr como default";
 $a->strings["Numfriends settings updated."] = "Configurações Numfriends atualizadas.";
 $a->strings["Numfriends Settings"] = "Configurações Numfriends";
+$a->strings["How many contacts to display on profile sidebar"] = "Quantos contatos mostrar na barra lateral do perfil";
 $a->strings["Gnot settings updated."] = "As configurações do Gnot foram atualizadas.";
 $a->strings["Gnot Settings"] = "Configurações do Gnot";
 $a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Permite o encadeamento das notificações por e-mail de comentário no GMail, tornando a a linha de assunto anônima.";
@@ -1545,6 +1555,7 @@ $a->strings["WordPress password"] = "Senha WordPress";
 $a->strings["WordPress API URL"] = "URL da API do WordPress";
 $a->strings["Post to WordPress by default"] = "Postar para o WordPress como padrão";
 $a->strings["Provide a backlink to the Friendica post"] = "";
+$a->strings["Post from Friendica"] = "Postar do Friendica";
 $a->strings["Read the original post and comment stream on Friendica"] = "";
 $a->strings["\"Show more\" Settings"] = "Configurações de \"Exibir mais\"";
 $a->strings["Enable Show More"] = "Habilitar \"Exibir mais\"";
@@ -1571,23 +1582,23 @@ $a->strings["Send public postings to Twitter by default"] = "Enviar as publicaç
 $a->strings["Send linked #-tags and @-names to Twitter"] = "";
 $a->strings["Consumer key"] = "Chave de consumidor";
 $a->strings["Consumer secret"] = "Segredo de consumidor";
-$a->strings["IRC Settings"] = "";
-$a->strings["Channel(s) to auto connect (comma separated)"] = "";
-$a->strings["Popular Channels (comma separated)"] = "";
-$a->strings["IRC settings saved."] = "";
-$a->strings["IRC Chatroom"] = "";
+$a->strings["IRC Settings"] = "Configurações de IRC";
+$a->strings["Channel(s) to auto connect (comma separated)"] = "Canal(is) para auto conectar (separados por vírgulas)";
+$a->strings["Popular Channels (comma separated)"] = "Canais Populares (separados por vírgula)";
+$a->strings["IRC settings saved."] = "Configurações de IRC salvas";
+$a->strings["IRC Chatroom"] = "sala de IRC";
 $a->strings["Popular Channels"] = "Canais populares ";
 $a->strings["Fromapp settings updated."] = "";
 $a->strings["FromApp Settings"] = "";
 $a->strings["The application name you would like to show your posts originating from."] = "";
 $a->strings["Use this application name even if another application was used."] = "";
-$a->strings["Post to blogger"] = "";
-$a->strings["Blogger Post Settings"] = "";
-$a->strings["Enable Blogger Post Plugin"] = "";
-$a->strings["Blogger username"] = "";
-$a->strings["Blogger password"] = "";
-$a->strings["Blogger API URL"] = "";
-$a->strings["Post to Blogger by default"] = "";
+$a->strings["Post to blogger"] = "publica no blogger";
+$a->strings["Blogger Post Settings"] = "Configuração de publicação no blogger";
+$a->strings["Enable Blogger Post Plugin"] = "Habilita plugin para publicar no Blogger";
+$a->strings["Blogger username"] = "nome de usuário no Blogger";
+$a->strings["Blogger password"] = "senha no Blogger";
+$a->strings["Blogger API URL"] = "URL da API do Blogger";
+$a->strings["Post to Blogger by default"] = "Publica no Blogger por padrão";
 $a->strings["Post to Posterous"] = "Postar no Posterous";
 $a->strings["Posterous Post Settings"] = "Configurações de Postagem do Posterous";
 $a->strings["Enable Posterous Post Plugin"] = "Habilitar Plugin de Postagem do Posterous";
@@ -1598,7 +1609,7 @@ $a->strings["Posterous API token"] = "";
 $a->strings["Post to Posterous by default"] = "Postar para o Posterous como padrão";
 $a->strings["Theme settings"] = "Configurações do tema";
 $a->strings["Set resize level for images in posts and comments (width and height)"] = "";
-$a->strings["Set font-size for posts and comments"] = "";
+$a->strings["Set font-size for posts and comments"] = "Escolha o tamanho da fonte para publicações e comentários";
 $a->strings["Set theme width"] = "";
 $a->strings["Color scheme"] = "Esquema de cores";
 $a->strings["Your posts and conversations"] = "Suas publicações e conversas";
@@ -1614,22 +1625,22 @@ $a->strings["Last users"] = "Últimos usuários";
 $a->strings["Last likes"] = "Últimos \"likes\"";
 $a->strings["Last photos"] = "Últimas fotos";
 $a->strings["Find Friends"] = "Encontrar amigos";
-$a->strings["Local Directory"] = "";
+$a->strings["Local Directory"] = "Diretório Local";
 $a->strings["Similar Interests"] = "Interesses Parecidos";
 $a->strings["Invite Friends"] = "Convidar amigos";
 $a->strings["Earth Layers"] = "";
 $a->strings["Set zoomfactor for Earth Layers"] = "";
 $a->strings["Set longitude (X) for Earth Layers"] = "";
 $a->strings["Set latitude (Y) for Earth Layers"] = "";
-$a->strings["Help or @NewHere ?"] = "";
+$a->strings["Help or @NewHere ?"] = "Ajuda ou @NewHere ?";
 $a->strings["Connect Services"] = "Conectar serviços";
 $a->strings["Last Tweets"] = "";
 $a->strings["Set twitter search term"] = "";
 $a->strings["don't show"] = "não exibir";
 $a->strings["show"] = "exibir";
 $a->strings["Show/hide boxes at right-hand column:"] = "";
-$a->strings["Set line-height for posts and comments"] = "";
-$a->strings["Set resolution for middle column"] = "";
+$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"] = "";
 $a->strings["Set zoomfactor for Earth Layer"] = "";
 $a->strings["Last tweets"] = "";
@@ -1670,6 +1681,7 @@ $a->strings["Zot!"] = "Zot!";
 $a->strings["LinkedIn"] = "LinkedIn";
 $a->strings["XMPP/IM"] = "XMPP/IM";
 $a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "";
 $a->strings["Male"] = "Masculino";
 $a->strings["Female"] = "Feminino";
 $a->strings["Currently Male"] = "Atualmente masculino";
@@ -1799,13 +1811,25 @@ $a->strings["Attachments:"] = "Anexos:";
 $a->strings["view full size"] = "ver tela cheia";
 $a->strings["Embedded content"] = "Conteúdo incorporado";
 $a->strings["Embedding disabled"] = "A incorporação está desabilitada";
+$a->strings["Error decoding account file"] = "";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
+$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "";
+$a->strings["Error! Cannot check nickname"] = "";
+$a->strings["User '%s' already exists on this server!"] = "";
+$a->strings["User creation error"] = "";
+$a->strings["User profile creation error"] = "";
+$a->strings["%d contact not imported"] = array(
+       0 => "",
+       1 => "",
+);
+$a->strings["Done. You can now login with your username and password"] = "";
 $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 removido com esse nome foi reativado. Permissões de items já existentes <strong>poderão</strong> se aplicar a esse grupo e a qualquer membro no futuro. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente.";
 $a->strings["Default privacy group for new contacts"] = "";
 $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"] = "";
+$a->strings["Contacts not in any group"] = "Contatos não estão dentro de nenhum grupo";
 $a->strings["Logout"] = "Sair";
 $a->strings["End this session"] = "Terminar esta sessão";
 $a->strings["Status"] = "Status";
@@ -1820,6 +1844,8 @@ $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"] = "";
+$a->strings["Load Network page with no filters"] = "";
 $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";
@@ -1829,7 +1855,7 @@ $a->strings["Outbox"] = "Enviadas";
 $a->strings["Manage"] = "Gerenciar";
 $a->strings["Manage other pages"] = "Gerenciar outras páginas";
 $a->strings["Profiles"] = "Perfis";
-$a->strings["Manage/edit profiles"] = "Gerenciar/editar perfis";
+$a->strings["Manage/Edit Profiles"] = "";
 $a->strings["Manage/edit friends and contacts"] = "Gerenciar/editar amigos e contatos";
 $a->strings["Site setup and configuration"] = "Configurações do site";
 $a->strings["Nothing new here"] = "Nada de novo aqui";
@@ -1844,7 +1870,7 @@ $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"] = "";
+$a->strings["Random Profile"] = "Perfil Randômico";
 $a->strings["Networks"] = "Redes";
 $a->strings["All Networks"] = "Todas as redes";
 $a->strings["Saved Folders"] = "Pastas salvas";
@@ -1873,6 +1899,43 @@ $a->strings["From: "] = "De: ";
 $a->strings["Image/photo"] = "Imagem/foto";
 $a->strings["$1 wrote:"] = "$1 escreveu:";
 $a->strings["Encrypted content"] = "";
+$a->strings["General Features"] = "";
+$a->strings["Multiple Profiles"] = "";
+$a->strings["Ability to create multiple profiles"] = "";
+$a->strings["Post Composition Features"] = "";
+$a->strings["Richtext Editor"] = "";
+$a->strings["Enable richtext editor"] = "";
+$a->strings["Post Preview"] = "";
+$a->strings["Allow previewing posts and comments before publishing them"] = "";
+$a->strings["Network Sidebar Widgets"] = "";
+$a->strings["Search by Date"] = "";
+$a->strings["Ability to select posts by date ranges"] = "";
+$a->strings["Group Filter"] = "";
+$a->strings["Enable widget to display Network posts only from selected group"] = "";
+$a->strings["Network Filter"] = "";
+$a->strings["Enable widget to display Network posts only from selected network"] = "";
+$a->strings["Save search terms for re-use"] = "";
+$a->strings["Network Tabs"] = "";
+$a->strings["Network Personal Tab"] = "";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
+$a->strings["Network New Tab"] = "";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "";
+$a->strings["Network Shared Links Tab"] = "";
+$a->strings["Enable tab to display only Network posts with links in them"] = "";
+$a->strings["Post/Comment Tools"] = "";
+$a->strings["Multiple Deletion"] = "";
+$a->strings["Select and delete multiple posts/comments at once"] = "";
+$a->strings["Edit Sent Posts"] = "";
+$a->strings["Edit and correct posts and comments after sending"] = "";
+$a->strings["Tagging"] = "";
+$a->strings["Ability to tag existing posts"] = "";
+$a->strings["Post Categories"] = "";
+$a->strings["Add categories to your posts"] = "";
+$a->strings["Ability to file posts under folders"] = "";
+$a->strings["Dislike Posts"] = "";
+$a->strings["Ability to dislike posts/comments"] = "";
+$a->strings["Star Posts"] = "";
+$a->strings["Ability to mark special posts with a star indicator"] = "";
 $a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'";
 $a->strings["[no subject]"] = "[sem assunto]";
 $a->strings["Visible to everybody"] = "Visível para todos";
@@ -1951,11 +2014,11 @@ $a->strings["Welcome back "] = "Bem-vindo(a) de volta ";
 $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
 $a->strings["stopped following"] = "parou de acompanhar";
 $a->strings["Poke"] = "";
-$a->strings["View Status"] = "";
-$a->strings["View Profile"] = "";
-$a->strings["View Photos"] = "";
-$a->strings["Network Posts"] = "";
-$a->strings["Edit Contact"] = "";
+$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["%1\$s poked %2\$s"] = "";
 $a->strings["post/item"] = "postagem/item";
@@ -1978,6 +2041,7 @@ $a->strings["Please enter a video link/URL:"] = "Favor fornecer um link/URL de v
 $a->strings["Please enter an audio link/URL:"] = "Favor fornecer um link/URL de áudio";
 $a->strings["Tag term:"] = "Termo da tag:";
 $a->strings["Where are you right now?"] = "Onde você está agora?";
+$a->strings["Delete item(s)?"] = "";
 $a->strings["permissions"] = "permissões";
 $a->strings["Click here to upgrade."] = "";
 $a->strings["This action exceeds the limits set by your subscription plan."] = "";
@@ -1989,11 +2053,13 @@ $a->strings["Update Error at %s"] = "";
 $a->strings["Create a New Account"] = "Criar uma nova conta";
 $a->strings["Nickname or Email address: "] = "Identificação ou endereço de e-mail: ";
 $a->strings["Password: "] = "Senha: ";
+$a->strings["Remember me"] = "";
 $a->strings["Or login using OpenID: "] = "Ou login usando OpendID:";
 $a->strings["Forgot your password?"] = "Esqueceu a sua senha?";
 $a->strings["Requested account is not available."] = "";
 $a->strings["Edit profile"] = "Editar perfil";
 $a->strings["Message"] = "Mensagem";
+$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]";
@@ -2006,4 +2072,19 @@ $a->strings["Status Messages and Posts"] = "";
 $a->strings["Profile Details"] = "";
 $a->strings["Events and Calendar"] = "";
 $a->strings["Only You Can See This"] = "";
+$a->strings["via"] = "";
 $a->strings["toggle mobile"] = "";
+$a->strings["Bg settings updated."] = "";
+$a->strings["Bg Settings"] = "";
+$a->strings["Post to Drupal"] = "Postar no Drupal";
+$a->strings["Drupal Post Settings"] = "Configurações de Postagem no Drupal";
+$a->strings["Enable Drupal Post Plugin"] = "Habilitar Plugin de Postagem do Drupal";
+$a->strings["Drupal username"] = "Nome de Usuário Drupal";
+$a->strings["Drupal password"] = "Senha Drupal";
+$a->strings["Post Type - article,page,or blog"] = "Tipo de Postagem - artigo, página ou blog";
+$a->strings["Drupal site URL"] = "URL do site Drupal";
+$a->strings["Drupal site uses clean URLS"] = "Site Drupal usa URLs limpas";
+$a->strings["Post to Drupal by default"] = "Postar para o Drupal como padrão";
+$a->strings["OEmbed settings updated"] = "As configurações OEmbed foram atualizadas";
+$a->strings["Use OEmbed for YouTube videos"] = "Usar OEmbed para vídeos do YouTube";
+$a->strings["URL to embed:"] = "URL a ser incorporada:";
diff --git a/view/pt-br/update_fail_eml.tpl b/view/pt-br/update_fail_eml.tpl
new file mode 100644 (file)
index 0000000..580ca7d
--- /dev/null
@@ -0,0 +1,11 @@
+Oi, \r
+Eu sou $sitename   \r
+Os desenvolvedores do friendica lançaram uma atualização $update recentemente, \r
+mas quando tentei instalá-la algo de errado aconeteceu.  \r
+Isso precisa ser corrigido logo e não posso fazê-lo sozinho. Por favor contacte um \r
+desenvolvedor do friendica se você não puder fazer a correção. Meu banco de dados pode estar inválido. \r
+\r
+A mensagem de erro é : '$error'.   \r
+\r
+Lamento. \r
+Seu servidor friendica em $siteurl
\ No newline at end of file
index 354c436fcc2f6c9378b1be766deebb1d5629abe3..7114e5c92cd95449f7880c4cf93e84e8f23822bd 100644 (file)
@@ -6,13 +6,14 @@
 #   <info@pixelbits.de>, 2012.
 #   <mobilpress@gmail.com>, 2011.
 # Pavel Morozov <mobilpress@gmail.com>, 2011.
+#   <pztrn@pztrn.ru>, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2012-09-27 10:00-0700\n"
-"PO-Revision-Date: 2012-09-28 08:27+0000\n"
-"Last-Translator: alexej <info@pixelbits.de>\n"
+"POT-Creation-Date: 2012-12-03 10:00-0800\n"
+"PO-Revision-Date: 2012-12-03 16:13+0000\n"
+"Last-Translator: pztrn <pztrn@pztrn.ru>\n"
 "Language-Team: Russian (http://www.transifex.com/projects/p/friendica/language/ru/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -26,6 +27,7 @@ msgstr "Успешно добавлено."
 
 #: ../../mod/update_notes.php:41 ../../mod/update_community.php:18
 #: ../../mod/update_network.php:22 ../../mod/update_profile.php:41
+#: ../../mod/update_display.php:22
 msgid "[Embedded content - reload page to view]"
 msgstr "[Встроенное содержание - перезагрузите страницу для просмотра]"
 
@@ -39,30 +41,33 @@ msgstr "Обновление контакта неудачное."
 
 #: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
 #: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/photos.php:128 ../../mod/photos.php:972
+#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:995
 #: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
-#: ../../mod/notifications.php:66 ../../mod/contacts.php:146
-#: ../../mod/settings.php:86 ../../mod/settings.php:525
-#: ../../mod/settings.php:530 ../../mod/manage.php:87 ../../mod/network.php:6
-#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9
+#: ../../mod/notifications.php:66 ../../mod/contacts.php:147
+#: ../../mod/settings.php:91 ../../mod/settings.php:541
+#: ../../mod/settings.php:546 ../../mod/manage.php:90 ../../mod/network.php:6
+#: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9
 #: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
 #: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
 #: ../../mod/group.php:19 ../../mod/viewcontacts.php:22
-#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:126
-#: ../../mod/item.php:142 ../../mod/mood.php:114
+#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:139
+#: ../../mod/item.php:155 ../../mod/mood.php:114
 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../mod/message.php:38 ../../mod/message.php:168
+#: ../../mod/message.php:38 ../../mod/message.php:172
 #: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
-#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9
-#: ../../mod/display.php:141 ../../mod/profiles.php:7
-#: ../../mod/profiles.php:413 ../../mod/delegate.php:6
+#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9
+#: ../../mod/display.php:165 ../../mod/profiles.php:7
+#: ../../mod/profiles.php:431 ../../mod/delegate.php:6
 #: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
 #: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
 #: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
 #: ../../addon/fbpost/fbpost.php:165
-#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3913
-#: ../../index.php:317
+#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3977
+#: ../../index.php:333 ../../addon.old/facebook/facebook.php:510
+#: ../../addon.old/facebook/facebook.php:516
+#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
+#: ../../addon.old/dav/friendica/layout.fnk.php:354
 msgid "Permission denied."
 msgstr "Нет разрешения."
 
@@ -91,8 +96,8 @@ msgstr "Пожалуйста, нажмите клавишу вашего бра
 msgid "Return to contact editor"
 msgstr ""
 
-#: ../../mod/crepair.php:148 ../../mod/settings.php:545
-#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702
+#: ../../mod/crepair.php:148 ../../mod/settings.php:561
+#: ../../mod/settings.php:587 ../../mod/admin.php:695 ../../mod/admin.php:705
 msgid "Name"
 msgstr "Имя"
 
@@ -129,29 +134,31 @@ msgid "New photo from this URL"
 msgstr "Новое фото из этой URL"
 
 #: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
-#: ../../mod/events.php:455 ../../mod/photos.php:1005
-#: ../../mod/photos.php:1081 ../../mod/photos.php:1338
-#: ../../mod/photos.php:1378 ../../mod/photos.php:1419
-#: ../../mod/photos.php:1451 ../../mod/install.php:246
+#: ../../mod/events.php:455 ../../mod/photos.php:1028
+#: ../../mod/photos.php:1100 ../../mod/photos.php:1363
+#: ../../mod/photos.php:1403 ../../mod/photos.php:1447
+#: ../../mod/photos.php:1519 ../../mod/install.php:246
 #: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
-#: ../../mod/content.php:693 ../../mod/contacts.php:348
-#: ../../mod/settings.php:543 ../../mod/settings.php:697
-#: ../../mod/settings.php:769 ../../mod/settings.php:976
-#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294
-#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689
-#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112
-#: ../../mod/profiles.php:583 ../../mod/invite.php:119
-#: ../../addon/fromgplus/fromgplus.php:40
+#: ../../mod/content.php:693 ../../mod/contacts.php:352
+#: ../../mod/settings.php:559 ../../mod/settings.php:669
+#: ../../mod/settings.php:738 ../../mod/settings.php:810
+#: ../../mod/settings.php:1017 ../../mod/group.php:85 ../../mod/mood.php:137
+#: ../../mod/message.php:301 ../../mod/message.php:487 ../../mod/admin.php:445
+#: ../../mod/admin.php:692 ../../mod/admin.php:829 ../../mod/admin.php:1028
+#: ../../mod/admin.php:1115 ../../mod/profiles.php:604
+#: ../../mod/invite.php:119 ../../addon/fromgplus/fromgplus.php:40
 #: ../../addon/facebook/facebook.php:619
-#: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90
+#: ../../addon/snautofollow/snautofollow.php:64
 #: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76
 #: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88
-#: ../../addon/page/page.php:210 ../../addon/planets/planets.php:158
+#: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158
 #: ../../addon/uhremotestorage/uhremotestorage.php:89
 #: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
-#: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92
-#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41
-#: ../../addon/forumlist/forumlist.php:163
+#: ../../addon/remote_permissions/remote_permissions.php:47
+#: ../../addon/remote_permissions/remote_permissions.php:195
+#: ../../addon/startpage/startpage.php:92
+#: ../../addon/geonames/geonames.php:187
+#: ../../addon/forumlist/forumlist.php:175
 #: ../../addon/impressum/impressum.php:83
 #: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
 #: ../../addon/qcomment/qcomment.php:61
@@ -168,35 +175,80 @@ msgstr "Новое фото из этой URL"
 #: ../../addon/statusnet/statusnet.php:318
 #: ../../addon/statusnet/statusnet.php:325
 #: ../../addon/statusnet/statusnet.php:353
-#: ../../addon/statusnet/statusnet.php:576 ../../addon/tumblr/tumblr.php:90
+#: ../../addon/statusnet/statusnet.php:685 ../../addon/tumblr/tumblr.php:90
 #: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
 #: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
 #: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
-#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394
+#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:506
 #: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
 #: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
 #: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/diabook/theme.php:757
-#: ../../view/theme/diabook/config.php:190
-#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70
-#: ../../object/Item.php:560
+#: ../../view/theme/diabook/theme.php:642
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
+#: ../../object/Item.php:570 ../../addon.old/fromgplus/fromgplus.php:40
+#: ../../addon.old/facebook/facebook.php:619
+#: ../../addon.old/snautofollow/snautofollow.php:64
+#: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226
+#: ../../addon.old/yourls/yourls.php:76 ../../addon.old/ljpost/ljpost.php:93
+#: ../../addon.old/nsfw/nsfw.php:88 ../../addon.old/page/page.php:211
+#: ../../addon.old/planets/planets.php:158
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:89
+#: ../../addon.old/randplace/randplace.php:177
+#: ../../addon.old/dwpost/dwpost.php:93 ../../addon.old/drpost/drpost.php:110
+#: ../../addon.old/startpage/startpage.php:92
+#: ../../addon.old/geonames/geonames.php:187
+#: ../../addon.old/oembed.old/oembed.php:41
+#: ../../addon.old/forumlist/forumlist.php:175
+#: ../../addon.old/impressum/impressum.php:83
+#: ../../addon.old/notimeline/notimeline.php:64
+#: ../../addon.old/blockem/blockem.php:57
+#: ../../addon.old/qcomment/qcomment.php:61
+#: ../../addon.old/openstreetmap/openstreetmap.php:70
+#: ../../addon.old/group_text/group_text.php:84
+#: ../../addon.old/libravatar/libravatar.php:99
+#: ../../addon.old/libertree/libertree.php:90
+#: ../../addon.old/altpager/altpager.php:87
+#: ../../addon.old/mathjax/mathjax.php:42
+#: ../../addon.old/editplain/editplain.php:84
+#: ../../addon.old/blackout/blackout.php:98
+#: ../../addon.old/gravatar/gravatar.php:95
+#: ../../addon.old/pageheader/pageheader.php:55
+#: ../../addon.old/ijpost/ijpost.php:93
+#: ../../addon.old/jappixmini/jappixmini.php:307
+#: ../../addon.old/statusnet/statusnet.php:278
+#: ../../addon.old/statusnet/statusnet.php:292
+#: ../../addon.old/statusnet/statusnet.php:318
+#: ../../addon.old/statusnet/statusnet.php:325
+#: ../../addon.old/statusnet/statusnet.php:353
+#: ../../addon.old/statusnet/statusnet.php:576
+#: ../../addon.old/tumblr/tumblr.php:90
+#: ../../addon.old/numfriends/numfriends.php:85
+#: ../../addon.old/gnot/gnot.php:88 ../../addon.old/wppost/wppost.php:110
+#: ../../addon.old/showmore/showmore.php:48 ../../addon.old/piwik/piwik.php:89
+#: ../../addon.old/twitter/twitter.php:180
+#: ../../addon.old/twitter/twitter.php:209
+#: ../../addon.old/twitter/twitter.php:394 ../../addon.old/irc/irc.php:55
+#: ../../addon.old/fromapp/fromapp.php:77
+#: ../../addon.old/blogger/blogger.php:102
+#: ../../addon.old/posterous/posterous.php:103
 msgid "Submit"
 msgstr "Подтвердить"
 
-#: ../../mod/help.php:30
+#: ../../mod/help.php:79
 msgid "Help:"
 msgstr "Помощь:"
 
-#: ../../mod/help.php:34 ../../addon/dav/friendica/layout.fnk.php:225
-#: ../../include/nav.php:86
+#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225
+#: ../../include/nav.php:86 ../../addon.old/dav/friendica/layout.fnk.php:225
 msgid "Help"
 msgstr "Помощь"
 
-#: ../../mod/help.php:38 ../../index.php:226
+#: ../../mod/help.php:90 ../../index.php:218
 msgid "Not Found"
 msgstr "Не найдено"
 
-#: ../../mod/help.php:41 ../../index.php:229
+#: ../../mod/help.php:93 ../../index.php:221
 msgid "Page not found."
 msgstr "Страница не найдена."
 
@@ -234,12 +286,12 @@ msgstr "l, j F"
 msgid "Edit event"
 msgstr "Редактировать мероприятие"
 
-#: ../../mod/events.php:323 ../../include/text.php:1187
+#: ../../mod/events.php:323 ../../include/text.php:1190
 msgid "link to source"
 msgstr "ссылка на источник"
 
-#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:131
-#: ../../include/nav.php:52 ../../boot.php:1689
+#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:91
+#: ../../include/nav.php:52 ../../boot.php:1748
 msgid "Events"
 msgstr "Мероприятия"
 
@@ -248,11 +300,13 @@ msgid "Create New Event"
 msgstr "Создать новое мероприятие"
 
 #: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263
+#: ../../addon.old/dav/friendica/layout.fnk.php:263
 msgid "Previous"
 msgstr "Назад"
 
 #: ../../mod/events.php:350 ../../mod/install.php:205
 #: ../../addon/dav/friendica/layout.fnk.php:266
+#: ../../addon.old/dav/friendica/layout.fnk.php:266
 msgid "Next"
 msgstr "Далее"
 
@@ -294,8 +348,9 @@ msgid "Description:"
 msgstr "Описание:"
 
 #: ../../mod/events.php:448 ../../mod/directory.php:134
+#: ../../addon/forumdirectory/forumdirectory.php:156
 #: ../../include/event.php:40 ../../include/bb2diaspora.php:412
-#: ../../boot.php:1226
+#: ../../boot.php:1278
 msgid "Location:"
 msgstr "Откуда:"
 
@@ -307,10 +362,11 @@ msgstr ""
 msgid "Share this event"
 msgstr "Поделитесь этим мероприятием"
 
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136
-#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544
-#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45
-#: ../../include/conversation.php:935
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:145
+#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:560
+#: ../../mod/settings.php:586 ../../addon/js_upload/js_upload.php:45
+#: ../../include/conversation.php:1009
+#: ../../addon.old/js_upload/js_upload.php:45
 msgid "Cancel"
 msgstr "Отмена"
 
@@ -328,13 +384,14 @@ msgstr "Выберите ключевое слово для удаления: "
 
 #: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
 #: ../../addon/dav/common/wdcal_edit.inc.php:468
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:468
 msgid "Remove"
 msgstr "Удалить"
 
 #: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530
 #, php-format
-msgid "%s welcomes %s"
-msgstr "%s приветствует %s"
+msgid "%1$s welcomes %2$s"
+msgstr ""
 
 #: ../../mod/api.php:76 ../../mod/api.php:102
 msgid "Authorize application connection"
@@ -352,287 +409,280 @@ msgstr "Пожалуйста, войдите для продолжения."
 msgid ""
 "Do you want to authorize this application to access your posts and contacts,"
 " and/or create new posts for you?"
-msgstr ""
+msgstr "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?"
 
 #: ../../mod/api.php:105 ../../mod/dfrn_request.php:835
-#: ../../mod/settings.php:892 ../../mod/settings.php:898
-#: ../../mod/settings.php:906 ../../mod/settings.php:910
-#: ../../mod/settings.php:915 ../../mod/settings.php:921
-#: ../../mod/settings.php:927 ../../mod/settings.php:933
-#: ../../mod/settings.php:963 ../../mod/settings.php:964
-#: ../../mod/settings.php:965 ../../mod/settings.php:966
-#: ../../mod/settings.php:967 ../../mod/register.php:236
-#: ../../mod/profiles.php:563
+#: ../../mod/settings.php:933 ../../mod/settings.php:939
+#: ../../mod/settings.php:947 ../../mod/settings.php:951
+#: ../../mod/settings.php:956 ../../mod/settings.php:962
+#: ../../mod/settings.php:968 ../../mod/settings.php:974
+#: ../../mod/settings.php:1004 ../../mod/settings.php:1005
+#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
+#: ../../mod/settings.php:1008 ../../mod/register.php:237
+#: ../../mod/profiles.php:584
 msgid "Yes"
 msgstr "Да"
 
 #: ../../mod/api.php:106 ../../mod/dfrn_request.php:836
-#: ../../mod/settings.php:892 ../../mod/settings.php:898
-#: ../../mod/settings.php:906 ../../mod/settings.php:910
-#: ../../mod/settings.php:915 ../../mod/settings.php:921
-#: ../../mod/settings.php:927 ../../mod/settings.php:933
-#: ../../mod/settings.php:963 ../../mod/settings.php:964
-#: ../../mod/settings.php:965 ../../mod/settings.php:966
-#: ../../mod/settings.php:967 ../../mod/register.php:237
-#: ../../mod/profiles.php:564
+#: ../../mod/settings.php:933 ../../mod/settings.php:939
+#: ../../mod/settings.php:947 ../../mod/settings.php:951
+#: ../../mod/settings.php:956 ../../mod/settings.php:962
+#: ../../mod/settings.php:968 ../../mod/settings.php:974
+#: ../../mod/settings.php:1004 ../../mod/settings.php:1005
+#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
+#: ../../mod/settings.php:1008 ../../mod/register.php:238
+#: ../../mod/profiles.php:585
 msgid "No"
 msgstr "Нет"
 
-#: ../../mod/photos.php:46 ../../boot.php:1682
+#: ../../mod/photos.php:51 ../../boot.php:1741
 msgid "Photo Albums"
 msgstr "Фотоальбомы"
 
-#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986
-#: ../../mod/photos.php:1073 ../../mod/photos.php:1088
-#: ../../mod/photos.php:1530 ../../mod/photos.php:1542
+#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1009
+#: ../../mod/photos.php:1092 ../../mod/photos.php:1107
+#: ../../mod/photos.php:1562 ../../mod/photos.php:1574
 #: ../../addon/communityhome/communityhome.php:110
-#: ../../view/theme/diabook/theme.php:598
+#: ../../view/theme/diabook/theme.php:492
+#: ../../addon.old/communityhome/communityhome.php:110
 msgid "Contact Photos"
 msgstr "Фотографии контакта"
 
-#: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1580
+#: ../../mod/photos.php:66 ../../mod/photos.php:1123 ../../mod/photos.php:1612
 msgid "Upload New Photos"
 msgstr "Загрузить новые фото"
 
-#: ../../mod/photos.php:74 ../../mod/settings.php:23
+#: ../../mod/photos.php:79 ../../mod/settings.php:23
 msgid "everybody"
 msgstr "каждый"
 
-#: ../../mod/photos.php:138
+#: ../../mod/photos.php:143
 msgid "Contact information unavailable"
 msgstr "Информация о контакте недоступна"
 
-#: ../../mod/photos.php:149 ../../mod/photos.php:653 ../../mod/photos.php:1073
-#: ../../mod/photos.php:1088 ../../mod/profile_photo.php:74
+#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1092
+#: ../../mod/photos.php:1107 ../../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
 #: ../../addon/communityhome/communityhome.php:111
-#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:324
+#: ../../view/theme/diabook/theme.php:493 ../../include/user.php:324
 #: ../../include/user.php:331 ../../include/user.php:338
+#: ../../addon.old/communityhome/communityhome.php:111
 msgid "Profile Photos"
 msgstr "Фотографии профиля"
 
-#: ../../mod/photos.php:159
+#: ../../mod/photos.php:164
 msgid "Album not found."
 msgstr "Альбом не найден."
 
-#: ../../mod/photos.php:177 ../../mod/photos.php:1082
+#: ../../mod/photos.php:182 ../../mod/photos.php:1101
 msgid "Delete Album"
 msgstr "Удалить альбом"
 
-#: ../../mod/photos.php:240 ../../mod/photos.php:1339
+#: ../../mod/photos.php:245 ../../mod/photos.php:1364
 msgid "Delete Photo"
 msgstr "Удалить фото"
 
-#: ../../mod/photos.php:584
-msgid "was tagged in a"
-msgstr "отмечен/а/ в"
-
-#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62
-#: ../../addon/communityhome/communityhome.php:163
-#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439
-#: ../../include/diaspora.php:1824 ../../include/conversation.php:125
-#: ../../include/conversation.php:253
-msgid "photo"
-msgstr "фото"
+#: ../../mod/photos.php:607
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr ""
 
-#: ../../mod/photos.php:584
-msgid "by"
-msgstr "с"
+#: ../../mod/photos.php:607
+msgid "a photo"
+msgstr ""
 
-#: ../../mod/photos.php:689 ../../addon/js_upload/js_upload.php:315
+#: ../../mod/photos.php:712 ../../addon/js_upload/js_upload.php:321
+#: ../../addon.old/js_upload/js_upload.php:315
 msgid "Image exceeds size limit of "
 msgstr "Размер фото превышает лимит "
 
-#: ../../mod/photos.php:697
+#: ../../mod/photos.php:720
 msgid "Image file is empty."
 msgstr "Файл изображения пуст."
 
-#: ../../mod/photos.php:729 ../../mod/profile_photo.php:153
-#: ../../mod/wall_upload.php:110
+#: ../../mod/photos.php:752 ../../mod/profile_photo.php:153
+#: ../../mod/wall_upload.php:112
 msgid "Unable to process image."
 msgstr "Невозможно обработать фото."
 
-#: ../../mod/photos.php:756 ../../mod/profile_photo.php:301
-#: ../../mod/wall_upload.php:136
+#: ../../mod/photos.php:779 ../../mod/profile_photo.php:301
+#: ../../mod/wall_upload.php:138
 msgid "Image upload failed."
 msgstr "Загрузка фото неудачная."
 
-#: ../../mod/photos.php:842 ../../mod/community.php:18
+#: ../../mod/photos.php:865 ../../mod/community.php:18
 #: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17
-#: ../../mod/display.php:7 ../../mod/search.php:73 ../../mod/directory.php:31
+#: ../../mod/display.php:7 ../../mod/search.php:89 ../../mod/directory.php:31
+#: ../../addon/forumdirectory/forumdirectory.php:53
 msgid "Public access denied."
 msgstr "Свободный доступ закрыт."
 
-#: ../../mod/photos.php:852
+#: ../../mod/photos.php:875
 msgid "No photos selected"
 msgstr "Не выбрано фото."
 
-#: ../../mod/photos.php:953
+#: ../../mod/photos.php:976
 msgid "Access to this item is restricted."
 msgstr "Доступ к этому пункту ограничен."
 
-#: ../../mod/photos.php:1015
+#: ../../mod/photos.php:1037
 #, php-format
 msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 msgstr ""
 
-#: ../../mod/photos.php:1018
-#, php-format
-msgid "You have used %1$.2f Mbytes of photo storage."
-msgstr ""
-
-#: ../../mod/photos.php:1024
+#: ../../mod/photos.php:1043
 msgid "Upload Photos"
 msgstr "Загрузить фото"
 
-#: ../../mod/photos.php:1028 ../../mod/photos.php:1077
+#: ../../mod/photos.php:1047 ../../mod/photos.php:1096
 msgid "New album name: "
 msgstr "Название нового альбома: "
 
-#: ../../mod/photos.php:1029
+#: ../../mod/photos.php:1048
 msgid "or existing album name: "
 msgstr "или название существующего альбома: "
 
-#: ../../mod/photos.php:1030
+#: ../../mod/photos.php:1049
 msgid "Do not show a status post for this upload"
 msgstr "Не показывать статус-сообщение для этой закачки"
 
-#: ../../mod/photos.php:1032 ../../mod/photos.php:1334
+#: ../../mod/photos.php:1051 ../../mod/photos.php:1359
 msgid "Permissions"
 msgstr "Разрешения"
 
-#: ../../mod/photos.php:1092
+#: ../../mod/photos.php:1111
 msgid "Edit Album"
 msgstr "Редактировать альбом"
 
-#: ../../mod/photos.php:1098
+#: ../../mod/photos.php:1117
 msgid "Show Newest First"
 msgstr ""
 
-#: ../../mod/photos.php:1100
+#: ../../mod/photos.php:1119
 msgid "Show Oldest First"
 msgstr ""
 
-#: ../../mod/photos.php:1124 ../../mod/photos.php:1563
+#: ../../mod/photos.php:1143 ../../mod/photos.php:1595
 msgid "View Photo"
 msgstr "Просмотр фото"
 
-#: ../../mod/photos.php:1159
+#: ../../mod/photos.php:1178
 msgid "Permission denied. Access to this item may be restricted."
 msgstr "Нет разрешения. Доступ к этому элементу ограничен."
 
-#: ../../mod/photos.php:1161
+#: ../../mod/photos.php:1180
 msgid "Photo not available"
 msgstr "Фото недоступно"
 
-#: ../../mod/photos.php:1217
+#: ../../mod/photos.php:1236
 msgid "View photo"
 msgstr "Просмотр фото"
 
-#: ../../mod/photos.php:1217
+#: ../../mod/photos.php:1236
 msgid "Edit photo"
 msgstr "Редактировать фото"
 
-#: ../../mod/photos.php:1218
+#: ../../mod/photos.php:1237
 msgid "Use as profile photo"
 msgstr "Использовать как фото профиля"
 
-#: ../../mod/photos.php:1224 ../../mod/content.php:603
-#: ../../object/Item.php:103
+#: ../../mod/photos.php:1243 ../../mod/content.php:603
+#: ../../object/Item.php:104
 msgid "Private Message"
 msgstr "Личное сообщение"
 
-#: ../../mod/photos.php:1243
+#: ../../mod/photos.php:1262
 msgid "View Full Size"
 msgstr "Просмотреть полный размер"
 
-#: ../../mod/photos.php:1311
+#: ../../mod/photos.php:1336
 msgid "Tags: "
 msgstr "Ключевые слова: "
 
-#: ../../mod/photos.php:1314
+#: ../../mod/photos.php:1339
 msgid "[Remove any tag]"
 msgstr "[Удалить любое ключевое слово]"
 
-#: ../../mod/photos.php:1324
+#: ../../mod/photos.php:1349
 msgid "Rotate CW (right)"
 msgstr ""
 
-#: ../../mod/photos.php:1325
+#: ../../mod/photos.php:1350
 msgid "Rotate CCW (left)"
 msgstr ""
 
-#: ../../mod/photos.php:1327
+#: ../../mod/photos.php:1352
 msgid "New album name"
 msgstr "Название нового альбома"
 
-#: ../../mod/photos.php:1330
+#: ../../mod/photos.php:1355
 msgid "Caption"
 msgstr "Подпись"
 
-#: ../../mod/photos.php:1332
+#: ../../mod/photos.php:1357
 msgid "Add a Tag"
 msgstr "Добавить ключевое слово (таг)"
 
-#: ../../mod/photos.php:1336
+#: ../../mod/photos.php:1361
 msgid ""
 "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../mod/photos.php:1356 ../../mod/content.php:667
-#: ../../object/Item.php:196
+#: ../../mod/photos.php:1381 ../../mod/content.php:667
+#: ../../object/Item.php:202
 msgid "I like this (toggle)"
 msgstr "Нравится"
 
-#: ../../mod/photos.php:1357 ../../mod/content.php:668
-#: ../../object/Item.php:197
+#: ../../mod/photos.php:1382 ../../mod/content.php:668
+#: ../../object/Item.php:203
 msgid "I don't like this (toggle)"
 msgstr "Не нравится"
 
-#: ../../mod/photos.php:1358 ../../include/conversation.php:896
+#: ../../mod/photos.php:1383 ../../include/conversation.php:969
 msgid "Share"
 msgstr "Поделиться"
 
-#: ../../mod/photos.php:1359 ../../mod/editpost.php:112
-#: ../../mod/content.php:482 ../../mod/content.php:845
-#: ../../mod/wallmessage.php:152 ../../mod/message.php:293
-#: ../../mod/message.php:481 ../../include/conversation.php:570
-#: ../../include/conversation.php:915 ../../object/Item.php:258
+#: ../../mod/photos.php:1384 ../../mod/editpost.php:121
+#: ../../mod/content.php:482 ../../mod/content.php:848
+#: ../../mod/wallmessage.php:152 ../../mod/message.php:300
+#: ../../mod/message.php:488 ../../include/conversation.php:624
+#: ../../include/conversation.php:988 ../../object/Item.php:269
 msgid "Please wait"
 msgstr "Пожалуйста, подождите"
 
-#: ../../mod/photos.php:1375 ../../mod/photos.php:1416
-#: ../../mod/photos.php:1448 ../../mod/content.php:690
-#: ../../object/Item.php:557
+#: ../../mod/photos.php:1400 ../../mod/photos.php:1444
+#: ../../mod/photos.php:1516 ../../mod/content.php:690
+#: ../../object/Item.php:567
 msgid "This is you"
 msgstr "Это вы"
 
-#: ../../mod/photos.php:1377 ../../mod/photos.php:1418
-#: ../../mod/photos.php:1450 ../../mod/content.php:692 ../../boot.php:574
-#: ../../object/Item.php:559
+#: ../../mod/photos.php:1402 ../../mod/photos.php:1446
+#: ../../mod/photos.php:1518 ../../mod/content.php:692 ../../boot.php:608
+#: ../../object/Item.php:266 ../../object/Item.php:569
 msgid "Comment"
 msgstr "Комментарий"
 
-#: ../../mod/photos.php:1379 ../../mod/editpost.php:133
-#: ../../mod/content.php:702 ../../include/conversation.php:933
-#: ../../object/Item.php:569
+#: ../../mod/photos.php:1404 ../../mod/photos.php:1448
+#: ../../mod/photos.php:1520 ../../mod/editpost.php:142
+#: ../../mod/content.php:702 ../../include/conversation.php:1006
+#: ../../object/Item.php:579
 msgid "Preview"
 msgstr "предварительный просмотр"
 
-#: ../../mod/photos.php:1479 ../../mod/content.php:439
-#: ../../mod/content.php:723 ../../mod/settings.php:606
-#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696
-#: ../../include/conversation.php:515 ../../object/Item.php:117
+#: ../../mod/photos.php:1488 ../../mod/content.php:439
+#: ../../mod/content.php:724 ../../mod/settings.php:622
+#: ../../mod/group.php:168 ../../mod/admin.php:699
+#: ../../include/conversation.php:569 ../../object/Item.php:118
 msgid "Delete"
 msgstr "Удалить"
 
-#: ../../mod/photos.php:1569
+#: ../../mod/photos.php:1601
 msgid "View Album"
 msgstr "Просмотреть альбом"
 
-#: ../../mod/photos.php:1578
+#: ../../mod/photos.php:1610
 msgid "Recent Photos"
 msgstr "Последние фото"
 
@@ -640,13 +690,13 @@ msgstr "Последние фото"
 msgid "Not available."
 msgstr "Недоступно."
 
-#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:133
+#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
 #: ../../include/nav.php:101
 msgid "Community"
 msgstr "Сообщество"
 
-#: ../../mod/community.php:63 ../../mod/community.php:88
-#: ../../mod/search.php:148 ../../mod/search.php:174
+#: ../../mod/community.php:61 ../../mod/community.php:86
+#: ../../mod/search.php:162 ../../mod/search.php:188
 msgid "No results."
 msgstr "Нет результатов."
 
@@ -672,7 +722,7 @@ msgstr "Отчет об ошибках и проблемах: пожалуйст
 msgid ""
 "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
 "dot com"
-msgstr ""
+msgstr "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com"
 
 #: ../../mod/friendica.php:75
 msgid "Installed plugins/addons/apps:"
@@ -686,76 +736,100 @@ msgstr "Нет установленных плагинов / добавок / п
 msgid "Item not found"
 msgstr "Элемент не найден"
 
-#: ../../mod/editpost.php:36
+#: ../../mod/editpost.php:39
 msgid "Edit post"
 msgstr "Редактировать сообщение"
 
-#: ../../mod/editpost.php:88 ../../include/conversation.php:882
+#: ../../mod/editpost.php:91 ../../include/conversation.php:955
 msgid "Post to Email"
 msgstr "Отправить на Email"
 
-#: ../../mod/editpost.php:103 ../../mod/content.php:710
-#: ../../mod/settings.php:605 ../../object/Item.php:107
+#: ../../mod/editpost.php:106 ../../mod/content.php:711
+#: ../../mod/settings.php:621 ../../object/Item.php:108
 msgid "Edit"
 msgstr "Редактировать"
 
-#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
-#: ../../mod/message.php:291 ../../mod/message.php:478
-#: ../../include/conversation.php:897
+#: ../../mod/editpost.php:107 ../../mod/wallmessage.php:150
+#: ../../mod/message.php:298 ../../mod/message.php:485
+#: ../../include/conversation.php:970
 msgid "Upload photo"
 msgstr "Загрузить фото"
 
-#: ../../mod/editpost.php:105 ../../include/conversation.php:899
+#: ../../mod/editpost.php:108 ../../include/conversation.php:971
+msgid "upload photo"
+msgstr "загрузить фото"
+
+#: ../../mod/editpost.php:109 ../../include/conversation.php:972
 msgid "Attach file"
 msgstr "Приложить файл"
 
-#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151
-#: ../../mod/message.php:292 ../../mod/message.php:479
-#: ../../include/conversation.php:901
+#: ../../mod/editpost.php:110 ../../include/conversation.php:973
+msgid "attach file"
+msgstr "приложить файл"
+
+#: ../../mod/editpost.php:111 ../../mod/wallmessage.php:151
+#: ../../mod/message.php:299 ../../mod/message.php:486
+#: ../../include/conversation.php:974
 msgid "Insert web link"
 msgstr "Вставить веб-ссылку"
 
-#: ../../mod/editpost.php:107
-msgid "Insert YouTube video"
-msgstr "Ð\92Ñ\81Ñ\82авиÑ\82Ñ\8c Ð²Ð¸Ð´ÐµÐ¾ YouTube"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:975
+msgid "web link"
+msgstr "веб-Ñ\81Ñ\81Ñ\8bлка"
 
-#: ../../mod/editpost.php:108
-msgid "Insert Vorbis [.ogg] video"
-msgstr "Вставить Vorbis [.ogg] видео"
+#: ../../mod/editpost.php:113 ../../include/conversation.php:976
+msgid "Insert video link"
+msgstr "Вставить ссылку видео"
 
-#: ../../mod/editpost.php:109
-msgid "Insert Vorbis [.ogg] audio"
-msgstr "Ð\92Ñ\81Ñ\82авиÑ\82Ñ\8c Vorbis [.ogg] Ð°Ñ\83дио"
+#: ../../mod/editpost.php:114 ../../include/conversation.php:977
+msgid "video link"
+msgstr "видео-Ñ\81Ñ\81Ñ\8bлка"
 
-#: ../../mod/editpost.php:110 ../../include/conversation.php:907
+#: ../../mod/editpost.php:115 ../../include/conversation.php:978
+msgid "Insert audio link"
+msgstr "Вставить ссылку аудио"
+
+#: ../../mod/editpost.php:116 ../../include/conversation.php:979
+msgid "audio link"
+msgstr "аудио-ссылка"
+
+#: ../../mod/editpost.php:117 ../../include/conversation.php:980
 msgid "Set your location"
 msgstr "Задать ваше местоположение"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:909
+#: ../../mod/editpost.php:118 ../../include/conversation.php:981
+msgid "set location"
+msgstr "установить местонахождение"
+
+#: ../../mod/editpost.php:119 ../../include/conversation.php:982
 msgid "Clear browser location"
 msgstr "Очистить местонахождение браузера"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:916
+#: ../../mod/editpost.php:120 ../../include/conversation.php:983
+msgid "clear location"
+msgstr "убрать местонахождение"
+
+#: ../../mod/editpost.php:122 ../../include/conversation.php:989
 msgid "Permission settings"
 msgstr "Настройки разрешений"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:925
+#: ../../mod/editpost.php:130 ../../include/conversation.php:998
 msgid "CC: email addresses"
 msgstr "Копии на email адреса"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:926
+#: ../../mod/editpost.php:131 ../../include/conversation.php:999
 msgid "Public post"
 msgstr "Публичное сообщение"
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:912
+#: ../../mod/editpost.php:134 ../../include/conversation.php:985
 msgid "Set title"
 msgstr "Установить заголовок"
 
-#: ../../mod/editpost.php:127 ../../include/conversation.php:914
+#: ../../mod/editpost.php:136 ../../include/conversation.php:987
 msgid "Categories (comma-separated list)"
 msgstr "Категории (список через запятую)"
 
-#: ../../mod/editpost.php:128 ../../include/conversation.php:928
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1001
 msgid "Example: bob@example.com, mary@example.com"
 msgstr "Пример: bob@example.com, mary@example.com"
 
@@ -841,7 +915,7 @@ msgstr "Неверный URL профиля."
 msgid "Disallowed profile URL."
 msgstr "Запрещенный URL профиля."
 
-#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:123
+#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:124
 msgid "Failed to update contact record."
 msgstr "Не удалось обновить запись контакта."
 
@@ -877,7 +951,7 @@ msgstr "Пожалуйста, подтвердите краткую информ
 msgid "Confirm"
 msgstr "Подтвердить"
 
-#: ../../mod/dfrn_request.php:715 ../../include/items.php:3292
+#: ../../mod/dfrn_request.php:715 ../../include/items.php:3356
 msgid "[Name Withheld]"
 msgstr "[Имя не разглашается]"
 
@@ -929,7 +1003,7 @@ msgstr "Friendica"
 msgid "StatusNet/Federated Social Web"
 msgstr "StatusNet / Federated Social Web"
 
-#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640
+#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:681
 #: ../../include/contact_selectors.php:80
 msgid "Diaspora"
 msgstr "Diaspora"
@@ -949,6 +1023,65 @@ msgstr "Ваш идентификационный адрес:"
 msgid "Submit Request"
 msgstr "Отправить запрос"
 
+#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:138
+msgid "Account settings"
+msgstr "Настройки аккаунта"
+
+#: ../../mod/uexport.php:14 ../../mod/settings.php:40
+msgid "Display settings"
+msgstr "Параметры дисплея"
+
+#: ../../mod/uexport.php:20 ../../mod/settings.php:46
+msgid "Connector settings"
+msgstr "Настройки соединителя"
+
+#: ../../mod/uexport.php:25 ../../mod/settings.php:51
+msgid "Plugin settings"
+msgstr "Настройки плагина"
+
+#: ../../mod/uexport.php:30 ../../mod/settings.php:56
+msgid "Connected apps"
+msgstr ""
+
+#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:61
+msgid "Export personal data"
+msgstr "Экспорт личных данных"
+
+#: ../../mod/uexport.php:40 ../../mod/settings.php:66
+msgid "Remove account"
+msgstr ""
+
+#: ../../mod/uexport.php:48 ../../mod/settings.php:74
+#: ../../mod/newmember.php:22 ../../mod/admin.php:788 ../../mod/admin.php:993
+#: ../../addon/dav/friendica/layout.fnk.php:225
+#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:138
+#: ../../addon.old/dav/friendica/layout.fnk.php:225
+#: ../../addon.old/mathjax/mathjax.php:36
+msgid "Settings"
+msgstr "Настройки"
+
+#: ../../mod/uexport.php:72
+msgid "Export account"
+msgstr ""
+
+#: ../../mod/uexport.php:72
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr ""
+
+#: ../../mod/uexport.php:73
+msgid "Export all"
+msgstr ""
+
+#: ../../mod/uexport.php:73
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr ""
+
 #: ../../mod/install.php:117
 msgid "Friendica Social Communications Server - Setup"
 msgstr ""
@@ -1270,7 +1403,7 @@ msgid "is interested in:"
 msgstr ""
 
 #: ../../mod/match.php:58 ../../mod/suggest.php:59
-#: ../../include/contact_widgets.php:9 ../../boot.php:1164
+#: ../../include/contact_widgets.php:9 ../../boot.php:1216
 msgid "Connect"
 msgstr "Подключить"
 
@@ -1278,49 +1411,50 @@ msgstr "Подключить"
 msgid "No matches"
 msgstr "Нет соответствий"
 
-#: ../../mod/lockview.php:39
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
 msgid "Remote privacy information not available."
 msgstr "Личная информация удаленно недоступна."
 
-#: ../../mod/lockview.php:43
+#: ../../mod/lockview.php:48
+#: ../../addon/remote_permissions/remote_permissions.php:123
 msgid "Visible to:"
 msgstr "Кто может видеть:"
 
-#: ../../mod/content.php:119 ../../mod/network.php:436
+#: ../../mod/content.php:119 ../../mod/network.php:594
 msgid "No such group"
 msgstr "Нет такой группы"
 
-#: ../../mod/content.php:130 ../../mod/network.php:447
+#: ../../mod/content.php:130 ../../mod/network.php:605
 msgid "Group is empty"
 msgstr "Группа пуста"
 
-#: ../../mod/content.php:134 ../../mod/network.php:451
+#: ../../mod/content.php:134 ../../mod/network.php:609
 msgid "Group: "
 msgstr "Группа: "
 
-#: ../../mod/content.php:438 ../../mod/content.php:722
-#: ../../include/conversation.php:514 ../../object/Item.php:116
+#: ../../mod/content.php:438 ../../mod/content.php:723
+#: ../../include/conversation.php:568 ../../object/Item.php:117
 msgid "Select"
 msgstr "Выберите"
 
-#: ../../mod/content.php:455 ../../mod/content.php:815
-#: ../../mod/content.php:816 ../../include/conversation.php:533
-#: ../../object/Item.php:227 ../../object/Item.php:228
+#: ../../mod/content.php:455 ../../mod/content.php:817
+#: ../../mod/content.php:818 ../../include/conversation.php:587
+#: ../../object/Item.php:234 ../../object/Item.php:235
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr ""
 
-#: ../../mod/content.php:465 ../../mod/content.php:827
-#: ../../include/conversation.php:553 ../../object/Item.php:240
+#: ../../mod/content.php:465 ../../mod/content.php:829
+#: ../../include/conversation.php:607 ../../object/Item.php:248
 #, php-format
 msgid "%s from %s"
 msgstr "%s с %s"
 
-#: ../../mod/content.php:480 ../../include/conversation.php:568
+#: ../../mod/content.php:480 ../../include/conversation.php:622
 msgid "View in context"
 msgstr "Смотреть в контексте"
 
-#: ../../mod/content.php:586 ../../object/Item.php:277
+#: ../../mod/content.php:586 ../../object/Item.php:288
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
@@ -1328,106 +1462,108 @@ msgstr[0] "%d комментарий"
 msgstr[1] "%d комментариев"
 msgstr[2] "%d комментариев"
 
-#: ../../mod/content.php:588 ../../include/text.php:1443
-#: ../../object/Item.php:279 ../../object/Item.php:292
+#: ../../mod/content.php:588 ../../include/text.php:1446
+#: ../../object/Item.php:290 ../../object/Item.php:303
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] ""
 msgstr[1] ""
 msgstr[2] "комментарий"
 
-#: ../../mod/content.php:589 ../../addon/page/page.php:76
-#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119
-#: ../../include/contact_widgets.php:195 ../../boot.php:575
-#: ../../object/Item.php:280
+#: ../../mod/content.php:589 ../../addon/page/page.php:77
+#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
+#: ../../include/contact_widgets.php:204 ../../boot.php:609
+#: ../../object/Item.php:291 ../../addon.old/page/page.php:77
+#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119
 msgid "show more"
 msgstr "показать больше"
 
-#: ../../mod/content.php:667 ../../object/Item.php:196
+#: ../../mod/content.php:667 ../../object/Item.php:202
 msgid "like"
 msgstr ""
 
-#: ../../mod/content.php:668 ../../object/Item.php:197
+#: ../../mod/content.php:668 ../../object/Item.php:203
 msgid "dislike"
 msgstr "не нравитса"
 
-#: ../../mod/content.php:670 ../../object/Item.php:199
+#: ../../mod/content.php:670 ../../object/Item.php:205
 msgid "Share this"
 msgstr ""
 
-#: ../../mod/content.php:670 ../../object/Item.php:199
+#: ../../mod/content.php:670 ../../object/Item.php:205
 msgid "share"
 msgstr "делиться"
 
-#: ../../mod/content.php:694 ../../object/Item.php:561
+#: ../../mod/content.php:694 ../../object/Item.php:571
 msgid "Bold"
 msgstr ""
 
-#: ../../mod/content.php:695 ../../object/Item.php:562
+#: ../../mod/content.php:695 ../../object/Item.php:572
 msgid "Italic"
 msgstr ""
 
-#: ../../mod/content.php:696 ../../object/Item.php:563
+#: ../../mod/content.php:696 ../../object/Item.php:573
 msgid "Underline"
 msgstr ""
 
-#: ../../mod/content.php:697 ../../object/Item.php:564
+#: ../../mod/content.php:697 ../../object/Item.php:574
 msgid "Quote"
 msgstr ""
 
-#: ../../mod/content.php:698 ../../object/Item.php:565
+#: ../../mod/content.php:698 ../../object/Item.php:575
 msgid "Code"
 msgstr ""
 
-#: ../../mod/content.php:699 ../../object/Item.php:566
+#: ../../mod/content.php:699 ../../object/Item.php:576
 msgid "Image"
 msgstr ""
 
-#: ../../mod/content.php:700 ../../object/Item.php:567
+#: ../../mod/content.php:700 ../../object/Item.php:577
 msgid "Link"
 msgstr ""
 
-#: ../../mod/content.php:701 ../../object/Item.php:568
+#: ../../mod/content.php:701 ../../object/Item.php:578
 msgid "Video"
 msgstr ""
 
-#: ../../mod/content.php:735 ../../object/Item.php:180
+#: ../../mod/content.php:736 ../../object/Item.php:181
 msgid "add star"
 msgstr "пометить"
 
-#: ../../mod/content.php:736 ../../object/Item.php:181
+#: ../../mod/content.php:737 ../../object/Item.php:182
 msgid "remove star"
 msgstr "убрать метку"
 
-#: ../../mod/content.php:737 ../../object/Item.php:182
+#: ../../mod/content.php:738 ../../object/Item.php:183
 msgid "toggle star status"
 msgstr "переключить статус"
 
-#: ../../mod/content.php:740 ../../object/Item.php:185
+#: ../../mod/content.php:741 ../../object/Item.php:186
 msgid "starred"
 msgstr "помечено"
 
-#: ../../mod/content.php:741 ../../object/Item.php:186
+#: ../../mod/content.php:742 ../../object/Item.php:191
 msgid "add tag"
 msgstr "добавить ключевое слово (таг)"
 
-#: ../../mod/content.php:745 ../../object/Item.php:120
+#: ../../mod/content.php:746 ../../object/Item.php:121
 msgid "save to folder"
 msgstr "сохранить в папке"
 
-#: ../../mod/content.php:817 ../../object/Item.php:229
+#: ../../mod/content.php:819 ../../object/Item.php:236
 msgid "to"
 msgstr "к"
 
-#: ../../mod/content.php:818 ../../object/Item.php:230
+#: ../../mod/content.php:820 ../../object/Item.php:238
 msgid "Wall-to-Wall"
 msgstr "Стена-на-Стену"
 
-#: ../../mod/content.php:819 ../../object/Item.php:231
+#: ../../mod/content.php:821 ../../object/Item.php:239
 msgid "via Wall-To-Wall:"
 msgstr "через Стена-на-Стену:"
 
-#: ../../mod/home.php:28 ../../addon/communityhome/communityhome.php:179
+#: ../../mod/home.php:30 ../../addon/communityhome/communityhome.php:179
+#: ../../addon.old/communityhome/communityhome.php:179
 #, php-format
 msgid "Welcome to %s"
 msgstr "Добро пожаловать на %s!"
@@ -1436,268 +1572,268 @@ msgstr "Добро пожаловать на %s!"
 msgid "Invalid request identifier."
 msgstr "Неверный идентификатор запроса."
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:207
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210
 msgid "Discard"
 msgstr "Отказаться"
 
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:160
-#: ../../mod/notifications.php:206 ../../mod/contacts.php:321
-#: ../../mod/contacts.php:375
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:163
+#: ../../mod/notifications.php:209 ../../mod/contacts.php:325
+#: ../../mod/contacts.php:379
 msgid "Ignore"
 msgstr "Игнорировать"
 
-#: ../../mod/notifications.php:75
+#: ../../mod/notifications.php:78
 msgid "System"
 msgstr "Система"
 
-#: ../../mod/notifications.php:80 ../../include/nav.php:113
+#: ../../mod/notifications.php:83 ../../include/nav.php:113
 msgid "Network"
 msgstr "Сеть"
 
-#: ../../mod/notifications.php:85 ../../mod/network.php:300
+#: ../../mod/notifications.php:88 ../../mod/network.php:444
 msgid "Personal"
 msgstr "Персонал"
 
-#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:127
-#: ../../include/nav.php:77 ../../include/nav.php:115
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
+#: ../../include/nav.php:77 ../../include/nav.php:116
 msgid "Home"
 msgstr "Главная"
 
-#: ../../mod/notifications.php:95 ../../include/nav.php:121
+#: ../../mod/notifications.php:98 ../../include/nav.php:122
 msgid "Introductions"
 msgstr "Запросы"
 
-#: ../../mod/notifications.php:100 ../../mod/message.php:176
-#: ../../include/nav.php:128
+#: ../../mod/notifications.php:103 ../../mod/message.php:180
+#: ../../include/nav.php:129
 msgid "Messages"
 msgstr "Сообщения"
 
-#: ../../mod/notifications.php:119
+#: ../../mod/notifications.php:122
 msgid "Show Ignored Requests"
 msgstr "Показать проигнорированные запросы"
 
-#: ../../mod/notifications.php:119
+#: ../../mod/notifications.php:122
 msgid "Hide Ignored Requests"
 msgstr "Скрыть проигнорированные запросы"
 
-#: ../../mod/notifications.php:145 ../../mod/notifications.php:191
+#: ../../mod/notifications.php:148 ../../mod/notifications.php:194
 msgid "Notification type: "
 msgstr "Тип уведомления: "
 
-#: ../../mod/notifications.php:146
+#: ../../mod/notifications.php:149
 msgid "Friend Suggestion"
 msgstr "Предложение в друзья"
 
-#: ../../mod/notifications.php:148
+#: ../../mod/notifications.php:151
 #, php-format
 msgid "suggested by %s"
 msgstr "предложено юзером %s"
 
-#: ../../mod/notifications.php:153 ../../mod/notifications.php:200
-#: ../../mod/contacts.php:381
+#: ../../mod/notifications.php:156 ../../mod/notifications.php:203
+#: ../../mod/contacts.php:385
 msgid "Hide this contact from others"
 msgstr "Скрыть этот контакт от других"
 
-#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
 msgid "Post a new friend activity"
 msgstr ""
 
-#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
 msgid "if applicable"
 msgstr ""
 
-#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
-#: ../../mod/admin.php:694
+#: ../../mod/notifications.php:160 ../../mod/notifications.php:207
+#: ../../mod/admin.php:697
 msgid "Approve"
 msgstr "Одобрить"
 
-#: ../../mod/notifications.php:177
+#: ../../mod/notifications.php:180
 msgid "Claims to be known to you: "
 msgstr "Утверждения, о которых должно быть вам известно: "
 
-#: ../../mod/notifications.php:177
+#: ../../mod/notifications.php:180
 msgid "yes"
 msgstr "да"
 
-#: ../../mod/notifications.php:177
+#: ../../mod/notifications.php:180
 msgid "no"
 msgstr "нет"
 
-#: ../../mod/notifications.php:184
+#: ../../mod/notifications.php:187
 msgid "Approve as: "
 msgstr "Утвердить как: "
 
-#: ../../mod/notifications.php:185
+#: ../../mod/notifications.php:188
 msgid "Friend"
 msgstr "Друг"
 
-#: ../../mod/notifications.php:186
+#: ../../mod/notifications.php:189
 msgid "Sharer"
 msgstr "Участник"
 
-#: ../../mod/notifications.php:186
+#: ../../mod/notifications.php:189
 msgid "Fan/Admirer"
 msgstr "Фанат / Поклонник"
 
-#: ../../mod/notifications.php:192
+#: ../../mod/notifications.php:195
 msgid "Friend/Connect Request"
 msgstr "Запрос в друзья / на подключение"
 
-#: ../../mod/notifications.php:192
+#: ../../mod/notifications.php:195
 msgid "New Follower"
 msgstr "Новый фолловер"
 
-#: ../../mod/notifications.php:213
+#: ../../mod/notifications.php:216
 msgid "No introductions."
 msgstr "Запросов нет."
 
-#: ../../mod/notifications.php:216 ../../include/nav.php:122
+#: ../../mod/notifications.php:219 ../../include/nav.php:123
 msgid "Notifications"
 msgstr "Уведомления"
 
-#: ../../mod/notifications.php:253 ../../mod/notifications.php:378
-#: ../../mod/notifications.php:465
+#: ../../mod/notifications.php:256 ../../mod/notifications.php:381
+#: ../../mod/notifications.php:468
 #, php-format
 msgid "%s liked %s's post"
 msgstr "%s нравится %s сообшение"
 
-#: ../../mod/notifications.php:262 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:474
+#: ../../mod/notifications.php:265 ../../mod/notifications.php:390
+#: ../../mod/notifications.php:477
 #, php-format
 msgid "%s disliked %s's post"
 msgstr "%s не нравится %s сообшение"
 
-#: ../../mod/notifications.php:276 ../../mod/notifications.php:401
-#: ../../mod/notifications.php:488
+#: ../../mod/notifications.php:279 ../../mod/notifications.php:404
+#: ../../mod/notifications.php:491
 #, php-format
 msgid "%s is now friends with %s"
 msgstr "%s теперь друзья с %s"
 
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:408
+#: ../../mod/notifications.php:286 ../../mod/notifications.php:411
 #, php-format
 msgid "%s created a new post"
 msgstr "%s написал новое сообщение"
 
-#: ../../mod/notifications.php:284 ../../mod/notifications.php:409
-#: ../../mod/notifications.php:497
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#: ../../mod/notifications.php:500
 #, php-format
 msgid "%s commented on %s's post"
 msgstr "%s прокомментировал %s сообщение"
 
-#: ../../mod/notifications.php:298
+#: ../../mod/notifications.php:301
 msgid "No more network notifications."
 msgstr "Уведомлений из сети больше нет."
 
-#: ../../mod/notifications.php:302
+#: ../../mod/notifications.php:305
 msgid "Network Notifications"
 msgstr "Уведомления сети"
 
-#: ../../mod/notifications.php:328 ../../mod/notify.php:61
+#: ../../mod/notifications.php:331 ../../mod/notify.php:61
 msgid "No more system notifications."
 msgstr "Системных уведомлений больше нет."
 
-#: ../../mod/notifications.php:332 ../../mod/notify.php:65
+#: ../../mod/notifications.php:335 ../../mod/notify.php:65
 msgid "System Notifications"
 msgstr "Уведомления системы"
 
-#: ../../mod/notifications.php:423
+#: ../../mod/notifications.php:426
 msgid "No more personal notifications."
 msgstr "Персональных уведомлений больше нет."
 
-#: ../../mod/notifications.php:427
+#: ../../mod/notifications.php:430
 msgid "Personal Notifications"
 msgstr "Личные уведомления"
 
-#: ../../mod/notifications.php:504
+#: ../../mod/notifications.php:507
 msgid "No more home notifications."
 msgstr ""
 
-#: ../../mod/notifications.php:508
+#: ../../mod/notifications.php:511
 msgid "Home Notifications"
 msgstr ""
 
-#: ../../mod/contacts.php:84 ../../mod/contacts.php:164
+#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
 msgid "Could not access contact record."
 msgstr "Не удалось получить доступ к записи контакта."
 
-#: ../../mod/contacts.php:98
+#: ../../mod/contacts.php:99
 msgid "Could not locate selected profile."
 msgstr "Не удалось найти выбранный профиль."
 
-#: ../../mod/contacts.php:121
+#: ../../mod/contacts.php:122
 msgid "Contact updated."
 msgstr "Контакт обновлен."
 
-#: ../../mod/contacts.php:186
+#: ../../mod/contacts.php:187
 msgid "Contact has been blocked"
 msgstr "Контакт заблокирован"
 
-#: ../../mod/contacts.php:186
+#: ../../mod/contacts.php:187
 msgid "Contact has been unblocked"
 msgstr "Контакт разблокирован"
 
-#: ../../mod/contacts.php:200
+#: ../../mod/contacts.php:201
 msgid "Contact has been ignored"
 msgstr "Контакт проигнорирован"
 
-#: ../../mod/contacts.php:200
+#: ../../mod/contacts.php:201
 msgid "Contact has been unignored"
 msgstr "У контакта отменено игнорирование"
 
-#: ../../mod/contacts.php:216
+#: ../../mod/contacts.php:220
 msgid "Contact has been archived"
 msgstr ""
 
-#: ../../mod/contacts.php:216
+#: ../../mod/contacts.php:220
 msgid "Contact has been unarchived"
 msgstr ""
 
-#: ../../mod/contacts.php:229
+#: ../../mod/contacts.php:233
 msgid "Contact has been removed."
 msgstr "Контакт удален."
 
-#: ../../mod/contacts.php:263
+#: ../../mod/contacts.php:267
 #, php-format
 msgid "You are mutual friends with %s"
 msgstr "У Вас взаимная дружба с %s"
 
-#: ../../mod/contacts.php:267
+#: ../../mod/contacts.php:271
 #, php-format
 msgid "You are sharing with %s"
 msgstr "Вы делитесь с %s"
 
-#: ../../mod/contacts.php:272
+#: ../../mod/contacts.php:276
 #, php-format
 msgid "%s is sharing with you"
 msgstr "%s делитса с Вами"
 
-#: ../../mod/contacts.php:289
+#: ../../mod/contacts.php:293
 msgid "Private communications are not available for this contact."
 msgstr "Личные коммуникации недоступны для этого контакта."
 
-#: ../../mod/contacts.php:292
+#: ../../mod/contacts.php:296
 msgid "Never"
 msgstr "Никогда"
 
-#: ../../mod/contacts.php:296
+#: ../../mod/contacts.php:300
 msgid "(Update was successful)"
 msgstr "(Обновление было успешно)"
 
-#: ../../mod/contacts.php:296
+#: ../../mod/contacts.php:300
 msgid "(Update was not successful)"
 msgstr "(Обновление не удалось)"
 
-#: ../../mod/contacts.php:298
+#: ../../mod/contacts.php:302
 msgid "Suggest friends"
 msgstr "Предложить друзей"
 
-#: ../../mod/contacts.php:302
+#: ../../mod/contacts.php:306
 #, php-format
 msgid "Network type: %s"
 msgstr "Сеть: %s"
 
-#: ../../mod/contacts.php:305 ../../include/contact_widgets.php:190
+#: ../../mod/contacts.php:309 ../../include/contact_widgets.php:199
 #, php-format
 msgid "%d contact in common"
 msgid_plural "%d contacts in common"
@@ -1705,220 +1841,222 @@ msgstr[0] "%d Контакт"
 msgstr[1] "%d Контактов"
 msgstr[2] "%d Контактов"
 
-#: ../../mod/contacts.php:310
+#: ../../mod/contacts.php:314
 msgid "View all contacts"
 msgstr "Показать все контакты"
 
-#: ../../mod/contacts.php:315 ../../mod/contacts.php:374
-#: ../../mod/admin.php:698
+#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
+#: ../../mod/admin.php:701
 msgid "Unblock"
 msgstr "Разблокировать"
 
-#: ../../mod/contacts.php:315 ../../mod/contacts.php:374
-#: ../../mod/admin.php:697
+#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
+#: ../../mod/admin.php:700
 msgid "Block"
-msgstr "Ð\91локировать"
+msgstr "Ð\97аблокировать"
 
-#: ../../mod/contacts.php:318
+#: ../../mod/contacts.php:322
 msgid "Toggle Blocked status"
-msgstr ""
+msgstr "Изменить статус блокированности (заблокировать/разблокировать)"
 
-#: ../../mod/contacts.php:321 ../../mod/contacts.php:375
+#: ../../mod/contacts.php:325 ../../mod/contacts.php:379
 msgid "Unignore"
 msgstr "Не игнорировать"
 
-#: ../../mod/contacts.php:324
+#: ../../mod/contacts.php:328
 msgid "Toggle Ignored status"
-msgstr ""
+msgstr "Изменить статус игнорирования"
 
-#: ../../mod/contacts.php:328
+#: ../../mod/contacts.php:332
 msgid "Unarchive"
-msgstr ""
+msgstr "Разархивировать"
 
-#: ../../mod/contacts.php:328
+#: ../../mod/contacts.php:332
 msgid "Archive"
-msgstr ""
+msgstr "Архивировать"
 
-#: ../../mod/contacts.php:331
+#: ../../mod/contacts.php:335
 msgid "Toggle Archive status"
-msgstr ""
+msgstr "Сменить статус архивации (архивирова/не архивировать)"
 
-#: ../../mod/contacts.php:334
+#: ../../mod/contacts.php:338
 msgid "Repair"
 msgstr "Восстановить"
 
-#: ../../mod/contacts.php:337
+#: ../../mod/contacts.php:341
 msgid "Advanced Contact Settings"
-msgstr ""
+msgstr "Дополнительные Настройки Контакта"
 
-#: ../../mod/contacts.php:343
+#: ../../mod/contacts.php:347
 msgid "Communications lost with this contact!"
-msgstr ""
+msgstr "Связь с контактом утеряна!"
 
-#: ../../mod/contacts.php:346
+#: ../../mod/contacts.php:350
 msgid "Contact Editor"
 msgstr "Редактор контакта"
 
-#: ../../mod/contacts.php:349
+#: ../../mod/contacts.php:353
 msgid "Profile Visibility"
 msgstr "Видимость профиля"
 
-#: ../../mod/contacts.php:350
+#: ../../mod/contacts.php:354
 #, php-format
 msgid ""
 "Please choose the profile you would like to display to %s when viewing your "
 "profile securely."
 msgstr "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен."
 
-#: ../../mod/contacts.php:351
+#: ../../mod/contacts.php:355
 msgid "Contact Information / Notes"
 msgstr "Информация о контакте / Заметки"
 
-#: ../../mod/contacts.php:352
+#: ../../mod/contacts.php:356
 msgid "Edit contact notes"
 msgstr "Редактировать заметки контакта"
 
-#: ../../mod/contacts.php:357 ../../mod/contacts.php:549
+#: ../../mod/contacts.php:361 ../../mod/contacts.php:553
 #: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
 #, php-format
 msgid "Visit %s's profile [%s]"
 msgstr "Посетить профиль %s [%s]"
 
-#: ../../mod/contacts.php:358
+#: ../../mod/contacts.php:362
 msgid "Block/Unblock contact"
 msgstr "Блокировать / Разблокировать контакт"
 
-#: ../../mod/contacts.php:359
+#: ../../mod/contacts.php:363
 msgid "Ignore contact"
 msgstr "Игнорировать контакт"
 
-#: ../../mod/contacts.php:360
+#: ../../mod/contacts.php:364
 msgid "Repair URL settings"
 msgstr "Восстановить настройки URL"
 
-#: ../../mod/contacts.php:361
+#: ../../mod/contacts.php:365
 msgid "View conversations"
 msgstr "Просмотр бесед"
 
-#: ../../mod/contacts.php:363
+#: ../../mod/contacts.php:367
 msgid "Delete contact"
 msgstr "Удалить контакт"
 
-#: ../../mod/contacts.php:367
+#: ../../mod/contacts.php:371
 msgid "Last update:"
 msgstr "Последнее обновление: "
 
-#: ../../mod/contacts.php:369
+#: ../../mod/contacts.php:373
 msgid "Update public posts"
 msgstr "Обновить публичные сообщения"
 
-#: ../../mod/contacts.php:371 ../../mod/admin.php:1170
+#: ../../mod/contacts.php:375 ../../mod/admin.php:1173
 msgid "Update now"
 msgstr "Обновить сейчас"
 
-#: ../../mod/contacts.php:378
+#: ../../mod/contacts.php:382
 msgid "Currently blocked"
 msgstr "В настоящее время заблокирован"
 
-#: ../../mod/contacts.php:379
+#: ../../mod/contacts.php:383
 msgid "Currently ignored"
 msgstr "В настоящее время игнорируется"
 
-#: ../../mod/contacts.php:380
+#: ../../mod/contacts.php:384
 msgid "Currently archived"
-msgstr ""
+msgstr "В данный момент архивирован"
 
-#: ../../mod/contacts.php:381
+#: ../../mod/contacts.php:385
 msgid ""
 "Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr ""
 
-#: ../../mod/contacts.php:434
+#: ../../mod/contacts.php:438
 msgid "Suggestions"
 msgstr ""
 
-#: ../../mod/contacts.php:437
+#: ../../mod/contacts.php:441
 msgid "Suggest potential friends"
-msgstr ""
+msgstr "Предложить потенциального знакомого"
 
-#: ../../mod/contacts.php:440 ../../mod/group.php:191
+#: ../../mod/contacts.php:444 ../../mod/group.php:191
 msgid "All Contacts"
 msgstr "Все контакты"
 
-#: ../../mod/contacts.php:443
+#: ../../mod/contacts.php:447
 msgid "Show all contacts"
-msgstr ""
+msgstr "Показать все контакты"
 
-#: ../../mod/contacts.php:446
+#: ../../mod/contacts.php:450
 msgid "Unblocked"
-msgstr ""
+msgstr "Не блокирован"
 
-#: ../../mod/contacts.php:449
+#: ../../mod/contacts.php:453
 msgid "Only show unblocked contacts"
-msgstr ""
+msgstr "Показать только не блокированные контакты"
 
-#: ../../mod/contacts.php:453
+#: ../../mod/contacts.php:457
 msgid "Blocked"
-msgstr ""
+msgstr "Заблокирован"
 
-#: ../../mod/contacts.php:456
+#: ../../mod/contacts.php:460
 msgid "Only show blocked contacts"
-msgstr ""
+msgstr "Показать только блокированные контакты"
 
-#: ../../mod/contacts.php:460
+#: ../../mod/contacts.php:464
 msgid "Ignored"
-msgstr ""
+msgstr "Игнорирован"
 
-#: ../../mod/contacts.php:463
+#: ../../mod/contacts.php:467
 msgid "Only show ignored contacts"
-msgstr ""
+msgstr "Показать только игнорируемые контакты"
 
-#: ../../mod/contacts.php:467
+#: ../../mod/contacts.php:471
 msgid "Archived"
-msgstr ""
+msgstr "Архивированные"
 
-#: ../../mod/contacts.php:470
+#: ../../mod/contacts.php:474
 msgid "Only show archived contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:474
+#: ../../mod/contacts.php:478
 msgid "Hidden"
-msgstr ""
+msgstr "Скрытые"
 
-#: ../../mod/contacts.php:477
+#: ../../mod/contacts.php:481
 msgid "Only show hidden contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:525
+#: ../../mod/contacts.php:529
 msgid "Mutual Friendship"
 msgstr "Взаимная дружба"
 
-#: ../../mod/contacts.php:529
+#: ../../mod/contacts.php:533
 msgid "is a fan of yours"
 msgstr "является вашим поклонником"
 
-#: ../../mod/contacts.php:533
+#: ../../mod/contacts.php:537
 msgid "you are a fan of"
 msgstr "Вы - поклонник"
 
-#: ../../mod/contacts.php:550 ../../mod/nogroup.php:41
+#: ../../mod/contacts.php:554 ../../mod/nogroup.php:41
 msgid "Edit contact"
 msgstr "Редактировать контакт"
 
-#: ../../mod/contacts.php:571 ../../view/theme/diabook/theme.php:129
-#: ../../include/nav.php:139
+#: ../../mod/contacts.php:575 ../../view/theme/diabook/theme.php:89
+#: ../../include/nav.php:142
 msgid "Contacts"
 msgstr "Контакты"
 
-#: ../../mod/contacts.php:575
+#: ../../mod/contacts.php:579
 msgid "Search your contacts"
 msgstr "Поиск ваших контактов"
 
-#: ../../mod/contacts.php:576 ../../mod/directory.php:59
+#: ../../mod/contacts.php:580 ../../mod/directory.php:59
+#: ../../addon/forumdirectory/forumdirectory.php:81
 msgid "Finding: "
 msgstr "Результат поиска: "
 
-#: ../../mod/contacts.php:577 ../../mod/directory.php:61
+#: ../../mod/contacts.php:581 ../../mod/directory.php:61
+#: ../../addon/forumdirectory/forumdirectory.php:83
 #: ../../include/contact_widgets.php:33
 msgid "Find"
 msgstr "Найти"
@@ -1937,13 +2075,17 @@ msgid "Password reset requested at %s"
 msgstr "Запрос на сброс пароля получен %s"
 
 #: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
-#: ../../mod/register.php:90 ../../mod/register.php:144
+#: ../../mod/register.php:91 ../../mod/register.php:145
 #: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
 #: ../../addon/facebook/facebook.php:702
 #: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
 #: ../../addon/public_server/public_server.php:62
-#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3301
-#: ../../boot.php:788
+#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3365
+#: ../../boot.php:824 ../../addon.old/facebook/facebook.php:702
+#: ../../addon.old/facebook/facebook.php:1200
+#: ../../addon.old/fbpost/fbpost.php:661
+#: ../../addon.old/public_server/public_server.php:62
+#: ../../addon.old/testdrive/testdrive.php:67
 msgid "Administrator"
 msgstr "Администратор"
 
@@ -1953,7 +2095,7 @@ msgid ""
 "Password reset failed."
 msgstr "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная."
 
-#: ../../mod/lostpass.php:83 ../../boot.php:925
+#: ../../mod/lostpass.php:83 ../../boot.php:963
 msgid "Password Reset"
 msgstr "Сброс пароля"
 
@@ -1997,617 +2139,614 @@ msgstr "Ник или E-mail: "
 msgid "Reset"
 msgstr "Сброс"
 
-#: ../../mod/settings.php:30 ../../include/nav.php:137
-msgid "Account settings"
-msgstr "Настройки аккаунта"
-
 #: ../../mod/settings.php:35
-msgid "Display settings"
-msgstr "Параметры дисплея"
-
-#: ../../mod/settings.php:41
-msgid "Connector settings"
-msgstr "Настройки соединителя"
-
-#: ../../mod/settings.php:46
-msgid "Plugin settings"
-msgstr "Настройки плагина"
-
-#: ../../mod/settings.php:51
-msgid "Connected apps"
+msgid "Additional features"
 msgstr ""
 
-#: ../../mod/settings.php:56
-msgid "Export personal data"
-msgstr "Экспорт личных данных"
-
-#: ../../mod/settings.php:61
-msgid "Remove account"
-msgstr ""
-
-#: ../../mod/settings.php:69 ../../mod/newmember.php:22
-#: ../../mod/admin.php:785 ../../mod/admin.php:990
-#: ../../addon/dav/friendica/layout.fnk.php:225
-#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643
-#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137
-msgid "Settings"
-msgstr "Настройки"
-
-#: ../../mod/settings.php:113
+#: ../../mod/settings.php:118
 msgid "Missing some important data!"
 msgstr "Не хватает важных данных!"
 
-#: ../../mod/settings.php:116 ../../mod/settings.php:569
+#: ../../mod/settings.php:121 ../../mod/settings.php:585
 msgid "Update"
 msgstr "Обновление"
 
-#: ../../mod/settings.php:221
+#: ../../mod/settings.php:226
 msgid "Failed to connect with email account using the settings provided."
 msgstr "Не удалось подключиться к аккаунту e-mail, используя указанные настройки."
 
-#: ../../mod/settings.php:226
+#: ../../mod/settings.php:231
 msgid "Email settings updated."
 msgstr "Настройки эл. почты обновлены."
 
-#: ../../mod/settings.php:290
+#: ../../mod/settings.php:246
+msgid "Features updated"
+msgstr ""
+
+#: ../../mod/settings.php:306
 msgid "Passwords do not match. Password unchanged."
 msgstr "Пароли не совпадают. Пароль не изменен."
 
-#: ../../mod/settings.php:295
+#: ../../mod/settings.php:311
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Пустые пароли не допускаются. Пароль не изменен."
 
-#: ../../mod/settings.php:306
+#: ../../mod/settings.php:322
 msgid "Password changed."
 msgstr "Пароль изменен."
 
-#: ../../mod/settings.php:308
+#: ../../mod/settings.php:324
 msgid "Password update failed. Please try again."
 msgstr "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз."
 
-#: ../../mod/settings.php:373
+#: ../../mod/settings.php:389
 msgid " Please use a shorter name."
 msgstr " Пожалуйста, используйте более короткое имя."
 
-#: ../../mod/settings.php:375
+#: ../../mod/settings.php:391
 msgid " Name too short."
 msgstr " Имя слишком короткое."
 
-#: ../../mod/settings.php:381
+#: ../../mod/settings.php:397
 msgid " Not valid email."
 msgstr " Неверный e-mail."
 
-#: ../../mod/settings.php:383
+#: ../../mod/settings.php:399
 msgid " Cannot change to that email."
 msgstr " Невозможно изменить на этот e-mail."
 
-#: ../../mod/settings.php:437
+#: ../../mod/settings.php:453
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: ../../mod/settings.php:441
+#: ../../mod/settings.php:457
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
-#: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495
-#: ../../addon/fbpost/fbpost.php:144 ../../addon/impressum/impressum.php:78
+#: ../../mod/settings.php:487 ../../addon/facebook/facebook.php:495
+#: ../../addon/fbpost/fbpost.php:144
+#: ../../addon/remote_permissions/remote_permissions.php:204
+#: ../../addon/impressum/impressum.php:78
 #: ../../addon/openstreetmap/openstreetmap.php:80
 #: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
-#: ../../addon/twitter/twitter.php:389
+#: ../../addon/twitter/twitter.php:501
+#: ../../addon.old/facebook/facebook.php:495
+#: ../../addon.old/fbpost/fbpost.php:144
+#: ../../addon.old/impressum/impressum.php:78
+#: ../../addon.old/openstreetmap/openstreetmap.php:80
+#: ../../addon.old/mathjax/mathjax.php:66 ../../addon.old/piwik/piwik.php:105
+#: ../../addon.old/twitter/twitter.php:389
 msgid "Settings updated."
 msgstr "Настройки обновлены."
 
-#: ../../mod/settings.php:542 ../../mod/settings.php:568
-#: ../../mod/settings.php:604
+#: ../../mod/settings.php:558 ../../mod/settings.php:584
+#: ../../mod/settings.php:620
 msgid "Add application"
 msgstr "Добавить приложения"
 
-#: ../../mod/settings.php:546 ../../mod/settings.php:572
-#: ../../addon/statusnet/statusnet.php:570
+#: ../../mod/settings.php:562 ../../mod/settings.php:588
+#: ../../addon/statusnet/statusnet.php:679
+#: ../../addon.old/statusnet/statusnet.php:570
 msgid "Consumer Key"
 msgstr "Consumer Key"
 
-#: ../../mod/settings.php:547 ../../mod/settings.php:573
-#: ../../addon/statusnet/statusnet.php:569
+#: ../../mod/settings.php:563 ../../mod/settings.php:589
+#: ../../addon/statusnet/statusnet.php:678
+#: ../../addon.old/statusnet/statusnet.php:569
 msgid "Consumer Secret"
 msgstr "Consumer Secret"
 
-#: ../../mod/settings.php:548 ../../mod/settings.php:574
+#: ../../mod/settings.php:564 ../../mod/settings.php:590
 msgid "Redirect"
 msgstr "Перенаправление"
 
-#: ../../mod/settings.php:549 ../../mod/settings.php:575
+#: ../../mod/settings.php:565 ../../mod/settings.php:591
 msgid "Icon url"
 msgstr "URL символа"
 
-#: ../../mod/settings.php:560
+#: ../../mod/settings.php:576
 msgid "You can't edit this application."
 msgstr "Вы не можете изменить это приложение."
 
-#: ../../mod/settings.php:603
+#: ../../mod/settings.php:619
 msgid "Connected Apps"
 msgstr "Подключенные приложения"
 
-#: ../../mod/settings.php:607
+#: ../../mod/settings.php:623
 msgid "Client key starts with"
 msgstr "Ключ клиента начинается с"
 
-#: ../../mod/settings.php:608
+#: ../../mod/settings.php:624
 msgid "No name"
 msgstr "Нет имени"
 
-#: ../../mod/settings.php:609
+#: ../../mod/settings.php:625
 msgid "Remove authorization"
 msgstr "Удалить авторизацию"
 
-#: ../../mod/settings.php:620
+#: ../../mod/settings.php:637
 msgid "No Plugin settings configured"
 msgstr "Нет сконфигурированных настроек плагина"
 
-#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123
+#: ../../mod/settings.php:645 ../../addon/widgets/widgets.php:123
+#: ../../addon.old/widgets/widgets.php:123
 msgid "Plugin Settings"
 msgstr "Настройки плагина"
 
-#: ../../mod/settings.php:640 ../../mod/settings.php:641
+#: ../../mod/settings.php:659
+msgid "Off"
+msgstr ""
+
+#: ../../mod/settings.php:659
+msgid "On"
+msgstr ""
+
+#: ../../mod/settings.php:667
+msgid "Additional Features"
+msgstr ""
+
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Встроенная  поддержка для %s подключение %s"
 
-#: ../../mod/settings.php:640 ../../mod/settings.php:641
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
 msgid "enabled"
 msgstr "подключено"
 
-#: ../../mod/settings.php:640 ../../mod/settings.php:641
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
 msgid "disabled"
 msgstr "отключено"
 
-#: ../../mod/settings.php:641
+#: ../../mod/settings.php:682
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:673
+#: ../../mod/settings.php:714
 msgid "Email access is disabled on this site."
 msgstr "Доступ эл. почты отключен на этом сайте."
 
-#: ../../mod/settings.php:679
+#: ../../mod/settings.php:720
 msgid "Connector Settings"
 msgstr "Настройки соединителя"
 
-#: ../../mod/settings.php:684
+#: ../../mod/settings.php:725
 msgid "Email/Mailbox Setup"
 msgstr "Настройка эл. почты / почтового ящика"
 
-#: ../../mod/settings.php:685
+#: ../../mod/settings.php:726
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику."
 
-#: ../../mod/settings.php:686
+#: ../../mod/settings.php:727
 msgid "Last successful email check:"
 msgstr "Последняя успешная проверка электронной почты:"
 
-#: ../../mod/settings.php:688
+#: ../../mod/settings.php:729
 msgid "IMAP server name:"
 msgstr "Имя IMAP сервера:"
 
-#: ../../mod/settings.php:689
+#: ../../mod/settings.php:730
 msgid "IMAP port:"
 msgstr "Порт IMAP:"
 
-#: ../../mod/settings.php:690
+#: ../../mod/settings.php:731
 msgid "Security:"
 msgstr "Безопасность:"
 
-#: ../../mod/settings.php:690 ../../mod/settings.php:695
+#: ../../mod/settings.php:731 ../../mod/settings.php:736
 #: ../../addon/dav/common/wdcal_edit.inc.php:191
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
 msgid "None"
 msgstr "Ничего"
 
-#: ../../mod/settings.php:691
+#: ../../mod/settings.php:732
 msgid "Email login name:"
 msgstr "Логин эл. почты:"
 
-#: ../../mod/settings.php:692
+#: ../../mod/settings.php:733
 msgid "Email password:"
 msgstr "Пароль эл. почты:"
 
-#: ../../mod/settings.php:693
+#: ../../mod/settings.php:734
 msgid "Reply-to address:"
 msgstr "Адрес для ответа:"
 
-#: ../../mod/settings.php:694
+#: ../../mod/settings.php:735
 msgid "Send public posts to all email contacts:"
 msgstr "Отправлять открытые сообщения на все контакты электронной почты:"
 
-#: ../../mod/settings.php:695
+#: ../../mod/settings.php:736
 msgid "Action after import:"
 msgstr "Действие после импорта:"
 
-#: ../../mod/settings.php:695
+#: ../../mod/settings.php:736
 msgid "Mark as seen"
 msgstr ""
 
-#: ../../mod/settings.php:695
+#: ../../mod/settings.php:736
 msgid "Move to folder"
 msgstr ""
 
-#: ../../mod/settings.php:696
+#: ../../mod/settings.php:737
 msgid "Move to folder:"
 msgstr ""
 
-#: ../../mod/settings.php:727 ../../mod/admin.php:402
+#: ../../mod/settings.php:768 ../../mod/admin.php:404
 msgid "No special theme for mobile devices"
 msgstr ""
 
-#: ../../mod/settings.php:767
+#: ../../mod/settings.php:808
 msgid "Display Settings"
 msgstr "Параметры дисплея"
 
-#: ../../mod/settings.php:773 ../../mod/settings.php:784
+#: ../../mod/settings.php:814 ../../mod/settings.php:825
 msgid "Display Theme:"
 msgstr "Показать тему:"
 
-#: ../../mod/settings.php:774
+#: ../../mod/settings.php:815
 msgid "Mobile Theme:"
 msgstr ""
 
-#: ../../mod/settings.php:775
+#: ../../mod/settings.php:816
 msgid "Update browser every xx seconds"
 msgstr "Обновление браузера каждые хх секунд"
 
-#: ../../mod/settings.php:775
+#: ../../mod/settings.php:816
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Минимум 10 секунд, максимума нет"
 
-#: ../../mod/settings.php:776
+#: ../../mod/settings.php:817
 msgid "Number of items to display per page:"
 msgstr ""
 
-#: ../../mod/settings.php:776
+#: ../../mod/settings.php:817
 msgid "Maximum of 100 items"
 msgstr ""
 
-#: ../../mod/settings.php:777
+#: ../../mod/settings.php:818
 msgid "Don't show emoticons"
 msgstr "не показывать emoticons"
 
-#: ../../mod/settings.php:853
+#: ../../mod/settings.php:894
 msgid "Normal Account Page"
 msgstr ""
 
-#: ../../mod/settings.php:854
+#: ../../mod/settings.php:895
 msgid "This account is a normal personal profile"
 msgstr "Этот аккаунт является обычным персональным профилем"
 
-#: ../../mod/settings.php:857
+#: ../../mod/settings.php:898
 msgid "Soapbox Page"
 msgstr ""
 
-#: ../../mod/settings.php:858
+#: ../../mod/settings.php:899
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr "Автоматически одобряются все подключения / запросы в друзья, \"только для чтения\" поклонниками"
 
-#: ../../mod/settings.php:861
+#: ../../mod/settings.php:902
 msgid "Community Forum/Celebrity Account"
 msgstr ""
 
-#: ../../mod/settings.php:862
+#: ../../mod/settings.php:903
 msgid ""
 "Automatically approve all connection/friend requests as read-write fans"
 msgstr "Автоматически одобряются все подключения / запросы в друзья, \"для чтения и записей\" поклонников"
 
-#: ../../mod/settings.php:865
+#: ../../mod/settings.php:906
 msgid "Automatic Friend Page"
 msgstr ""
 
-#: ../../mod/settings.php:866
+#: ../../mod/settings.php:907
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Автоматически одобряются все подключения / запросы в друзья, расширяется список друзей"
 
-#: ../../mod/settings.php:869
+#: ../../mod/settings.php:910
 msgid "Private Forum [Experimental]"
 msgstr ""
 
-#: ../../mod/settings.php:870
+#: ../../mod/settings.php:911
 msgid "Private forum - approved members only"
 msgstr ""
 
-#: ../../mod/settings.php:882
+#: ../../mod/settings.php:923
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:882
+#: ../../mod/settings.php:923
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт"
 
-#: ../../mod/settings.php:892
+#: ../../mod/settings.php:933
 msgid "Publish your default profile in your local site directory?"
 msgstr "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?"
 
-#: ../../mod/settings.php:898
+#: ../../mod/settings.php:939
 msgid "Publish your default profile in the global social directory?"
 msgstr "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?"
 
-#: ../../mod/settings.php:906
+#: ../../mod/settings.php:947
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?"
 
-#: ../../mod/settings.php:910
+#: ../../mod/settings.php:951
 msgid "Hide your profile details from unknown viewers?"
 msgstr "Скрыть данные профиля из неизвестных зрителей?"
 
-#: ../../mod/settings.php:915
+#: ../../mod/settings.php:956
 msgid "Allow friends to post to your profile page?"
 msgstr "Разрешить друзьям оставлять сообщения на страницу вашего профиля?"
 
-#: ../../mod/settings.php:921
+#: ../../mod/settings.php:962
 msgid "Allow friends to tag your posts?"
 msgstr "Разрешить друзьям отмечять ваши сообщения?"
 
-#: ../../mod/settings.php:927
+#: ../../mod/settings.php:968
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr "Позвольть предлогать Вам потенциальных друзей?"
 
-#: ../../mod/settings.php:933
+#: ../../mod/settings.php:974
 msgid "Permit unknown people to send you private mail?"
 msgstr ""
 
-#: ../../mod/settings.php:941
+#: ../../mod/settings.php:982
 msgid "Profile is <strong>not published</strong>."
 msgstr "Профиль <strong>не публикуется</strong>."
 
-#: ../../mod/settings.php:944 ../../mod/profile_photo.php:248
+#: ../../mod/settings.php:985 ../../mod/profile_photo.php:248
 msgid "or"
 msgstr "или"
 
-#: ../../mod/settings.php:949
+#: ../../mod/settings.php:990
 msgid "Your Identity Address is"
 msgstr "Ваш идентификационный адрес"
 
-#: ../../mod/settings.php:960
+#: ../../mod/settings.php:1001
 msgid "Automatically expire posts after this many days:"
 msgstr "Автоматическое истекание срока действия сообщения после стольких дней:"
 
-#: ../../mod/settings.php:960
+#: ../../mod/settings.php:1001
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены"
 
-#: ../../mod/settings.php:961
+#: ../../mod/settings.php:1002
 msgid "Advanced expiration settings"
 msgstr "Настройки расширенного окончания срока действия"
 
-#: ../../mod/settings.php:962
+#: ../../mod/settings.php:1003
 msgid "Advanced Expiration"
 msgstr "Расширенное окончание срока действия"
 
-#: ../../mod/settings.php:963
+#: ../../mod/settings.php:1004
 msgid "Expire posts:"
 msgstr "Срок хранения сообщений:"
 
-#: ../../mod/settings.php:964
+#: ../../mod/settings.php:1005
 msgid "Expire personal notes:"
 msgstr "Срок хранения личных заметок:"
 
-#: ../../mod/settings.php:965
+#: ../../mod/settings.php:1006
 msgid "Expire starred posts:"
 msgstr "Срок хранения усеянных сообщений:"
 
-#: ../../mod/settings.php:966
+#: ../../mod/settings.php:1007
 msgid "Expire photos:"
 msgstr "Срок хранения фотографий:"
 
-#: ../../mod/settings.php:967
+#: ../../mod/settings.php:1008
 msgid "Only expire posts by others:"
 msgstr ""
 
-#: ../../mod/settings.php:974
+#: ../../mod/settings.php:1015
 msgid "Account Settings"
 msgstr "Настройки аккаунта"
 
-#: ../../mod/settings.php:982
+#: ../../mod/settings.php:1023
 msgid "Password Settings"
 msgstr "Настройка пароля"
 
-#: ../../mod/settings.php:983
+#: ../../mod/settings.php:1024
 msgid "New Password:"
 msgstr "Новый пароль:"
 
-#: ../../mod/settings.php:984
+#: ../../mod/settings.php:1025
 msgid "Confirm:"
 msgstr "Подтвердите:"
 
-#: ../../mod/settings.php:984
+#: ../../mod/settings.php:1025
 msgid "Leave password fields blank unless changing"
 msgstr "Оставьте поля пароля пустыми, если он не изменяется"
 
-#: ../../mod/settings.php:988
+#: ../../mod/settings.php:1029
 msgid "Basic Settings"
 msgstr "Основные параметры"
 
-#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15
+#: ../../mod/settings.php:1030 ../../include/profile_advanced.php:15
 msgid "Full Name:"
 msgstr "Полное имя:"
 
-#: ../../mod/settings.php:990
+#: ../../mod/settings.php:1031
 msgid "Email Address:"
 msgstr "Адрес электронной почты:"
 
-#: ../../mod/settings.php:991
+#: ../../mod/settings.php:1032
 msgid "Your Timezone:"
 msgstr "Ваш часовой пояс:"
 
-#: ../../mod/settings.php:992
+#: ../../mod/settings.php:1033
 msgid "Default Post Location:"
 msgstr "Местонахождение по умолчанию:"
 
-#: ../../mod/settings.php:993
+#: ../../mod/settings.php:1034
 msgid "Use Browser Location:"
 msgstr "Использовать определение местоположения браузером:"
 
-#: ../../mod/settings.php:996
+#: ../../mod/settings.php:1037
 msgid "Security and Privacy Settings"
 msgstr "Параметры безопасности и конфиденциальности"
 
-#: ../../mod/settings.php:998
+#: ../../mod/settings.php:1039
 msgid "Maximum Friend Requests/Day:"
 msgstr "Максимум запросов в друзья в день:"
 
-#: ../../mod/settings.php:998 ../../mod/settings.php:1017
+#: ../../mod/settings.php:1039 ../../mod/settings.php:1058
 msgid "(to prevent spam abuse)"
 msgstr "(для предотвращения спама)"
 
-#: ../../mod/settings.php:999
+#: ../../mod/settings.php:1040
 msgid "Default Post Permissions"
 msgstr "Разрешение на сообщения по умолчанию"
 
-#: ../../mod/settings.php:1000
+#: ../../mod/settings.php:1041
 msgid "(click to open/close)"
 msgstr "(нажмите, чтобы открыть / закрыть)"
 
-#: ../../mod/settings.php:1017
+#: ../../mod/settings.php:1058
 msgid "Maximum private messages per day from unknown people:"
 msgstr ""
 
-#: ../../mod/settings.php:1020
+#: ../../mod/settings.php:1061
 msgid "Notification Settings"
 msgstr "Настройка уведомлений"
 
-#: ../../mod/settings.php:1021
+#: ../../mod/settings.php:1062
 msgid "By default post a status message when:"
 msgstr ""
 
-#: ../../mod/settings.php:1022
+#: ../../mod/settings.php:1063
 msgid "accepting a friend request"
 msgstr ""
 
-#: ../../mod/settings.php:1023
+#: ../../mod/settings.php:1064
 msgid "joining a forum/community"
 msgstr ""
 
-#: ../../mod/settings.php:1024
+#: ../../mod/settings.php:1065
 msgid "making an <em>interesting</em> profile change"
 msgstr ""
 
-#: ../../mod/settings.php:1025
+#: ../../mod/settings.php:1066
 msgid "Send a notification email when:"
 msgstr "Отправлять уведомление по электронной почте, когда:"
 
-#: ../../mod/settings.php:1026
+#: ../../mod/settings.php:1067
 msgid "You receive an introduction"
 msgstr "Вы получили запрос"
 
-#: ../../mod/settings.php:1027
+#: ../../mod/settings.php:1068
 msgid "Your introductions are confirmed"
 msgstr "Ваши запросы подтверждены"
 
-#: ../../mod/settings.php:1028
+#: ../../mod/settings.php:1069
 msgid "Someone writes on your profile wall"
 msgstr "Кто-то пишет на стене вашего профиля"
 
-#: ../../mod/settings.php:1029
+#: ../../mod/settings.php:1070
 msgid "Someone writes a followup comment"
 msgstr "Кто-то пишет последующий комментарий"
 
-#: ../../mod/settings.php:1030
+#: ../../mod/settings.php:1071
 msgid "You receive a private message"
 msgstr "Вы получаете личное сообщение"
 
-#: ../../mod/settings.php:1031
+#: ../../mod/settings.php:1072
 msgid "You receive a friend suggestion"
 msgstr ""
 
-#: ../../mod/settings.php:1032
+#: ../../mod/settings.php:1073
 msgid "You are tagged in a post"
 msgstr ""
 
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1074
 msgid "You are poked/prodded/etc. in a post"
 msgstr ""
 
-#: ../../mod/settings.php:1036
+#: ../../mod/settings.php:1077
 msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: ../../mod/settings.php:1037
+#: ../../mod/settings.php:1078
 msgid "Change the behaviour of this account for special situations"
 msgstr ""
 
-#: ../../mod/manage.php:91
+#: ../../mod/manage.php:94
 msgid "Manage Identities and/or Pages"
 msgstr "Управление идентификацией и / или страницами"
 
-#: ../../mod/manage.php:94
+#: ../../mod/manage.php:97
 msgid ""
 "Toggle between different identities or community/group pages which share "
 "your account details or which you have been granted \"manage\" permissions"
 msgstr ""
 
-#: ../../mod/manage.php:96
+#: ../../mod/manage.php:99
 msgid "Select an identity to manage: "
 msgstr "Выберите идентификацию для управления: "
 
-#: ../../mod/network.php:97
+#: ../../mod/network.php:181
 msgid "Search Results For:"
 msgstr ""
 
-#: ../../mod/network.php:137 ../../mod/search.php:16
+#: ../../mod/network.php:224 ../../mod/search.php:21
 msgid "Remove term"
 msgstr "Удалить элемент"
 
-#: ../../mod/network.php:146 ../../mod/search.php:13
+#: ../../mod/network.php:233 ../../mod/search.php:30
+#: ../../include/features.php:41
 msgid "Saved Searches"
 msgstr "запомненные поиски"
 
-#: ../../mod/network.php:147 ../../include/group.php:244
+#: ../../mod/network.php:234 ../../include/group.php:275
 msgid "add"
 msgstr "добавить"
 
-#: ../../mod/network.php:287
+#: ../../mod/network.php:397
 msgid "Commented Order"
 msgstr "Прокомментированный запрос"
 
-#: ../../mod/network.php:290
+#: ../../mod/network.php:400
 msgid "Sort by Comment Date"
 msgstr ""
 
-#: ../../mod/network.php:293
+#: ../../mod/network.php:403
 msgid "Posted Order"
 msgstr "Отправленный запрос"
 
-#: ../../mod/network.php:296
+#: ../../mod/network.php:406
 msgid "Sort by Post Date"
 msgstr ""
 
-#: ../../mod/network.php:303
+#: ../../mod/network.php:447
 msgid "Posts that mention or involve you"
 msgstr ""
 
-#: ../../mod/network.php:306
+#: ../../mod/network.php:453
 msgid "New"
 msgstr "Новый"
 
-#: ../../mod/network.php:309
+#: ../../mod/network.php:456
 msgid "Activity Stream - by date"
 msgstr ""
 
-#: ../../mod/network.php:312
-msgid "Starred"
-msgstr "Помеченный"
-
-#: ../../mod/network.php:315
-msgid "Favourite Posts"
-msgstr ""
-
-#: ../../mod/network.php:318
+#: ../../mod/network.php:462
 msgid "Shared Links"
 msgstr ""
 
-#: ../../mod/network.php:321
+#: ../../mod/network.php:465
 msgid "Interesting Links"
 msgstr ""
 
-#: ../../mod/network.php:388
+#: ../../mod/network.php:471
+msgid "Starred"
+msgstr "Помеченный"
+
+#: ../../mod/network.php:474
+msgid "Favourite Posts"
+msgstr ""
+
+#: ../../mod/network.php:546
 #, php-format
 msgid "Warning: This group contains %s member from an insecure network."
 msgid_plural ""
@@ -2616,41 +2755,77 @@ msgstr[0] "Внимание: Эта группа содержит %s участ
 msgstr[1] "Внимание: Эта группа содержит %s участников с незащищенной сети."
 msgstr[2] "Внимание: Эта группа содержит %s участников с незащищенной сети."
 
-#: ../../mod/network.php:391
+#: ../../mod/network.php:549
 msgid "Private messages to this group are at risk of public disclosure."
 msgstr "Личные сообщения к этой группе находятся под угрозой обнародования."
 
-#: ../../mod/network.php:461
+#: ../../mod/network.php:619
 msgid "Contact: "
 msgstr "Контакт: "
 
-#: ../../mod/network.php:463
+#: ../../mod/network.php:621
 msgid "Private messages to this person are at risk of public disclosure."
 msgstr "Личные сообщения этому человеку находятся под угрозой обнародования."
 
-#: ../../mod/network.php:468
+#: ../../mod/network.php:626
 msgid "Invalid contact."
 msgstr "Недопустимый контакт."
 
-#: ../../mod/notes.php:44 ../../boot.php:1696
+#: ../../mod/notes.php:44 ../../boot.php:1755
 msgid "Personal Notes"
 msgstr "Личные заметки"
 
 #: ../../mod/notes.php:63 ../../mod/filer.php:30
 #: ../../addon/facebook/facebook.php:770
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:263
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:281
 #: ../../addon/fbpost/fbpost.php:267
 #: ../../addon/dav/friendica/layout.fnk.php:441
-#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681
+#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:688
+#: ../../addon.old/facebook/facebook.php:770
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
+#: ../../addon.old/fbpost/fbpost.php:267
+#: ../../addon.old/dav/friendica/layout.fnk.php:441
+#: ../../addon.old/dav/friendica/layout.fnk.php:488
 msgid "Save"
 msgstr "Сохранить"
 
+#: ../../mod/uimport.php:50 ../../mod/register.php:190
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr ""
+
+#: ../../mod/uimport.php:64
+msgid "Import"
+msgstr ""
+
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr ""
+
+#: ../../mod/uimport.php:67
+msgid ""
+"You can import an account from another Friendica server. <br>\r\n"
+"                            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.<br>\r\n"
+"                            <b>This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"
+msgstr ""
+
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr ""
+
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your accont, go to \"Settings->Export your porsonal data\" and "
+"select \"Export account\""
+msgstr ""
+
 #: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
 #, php-format
 msgid "Number of daily wall messages for %s exceeded. Message failed."
 msgstr ""
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:59
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
 msgid "No recipient selected."
 msgstr "Не выбран получатель."
 
@@ -2658,15 +2833,15 @@ msgstr "Не выбран получатель."
 msgid "Unable to check your home location."
 msgstr ""
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:66
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
 msgid "Message could not be sent."
 msgstr "Сообщение не может быть отправлено."
 
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:69
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
 msgid "Message collection failure."
 msgstr ""
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:72
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
 msgid "Message sent."
 msgstr "Сообщение отправлено."
 
@@ -2675,12 +2850,12 @@ msgid "No recipient."
 msgstr ""
 
 #: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
-#: ../../mod/message.php:242 ../../mod/message.php:250
-#: ../../include/conversation.php:833 ../../include/conversation.php:850
+#: ../../mod/message.php:249 ../../mod/message.php:257
+#: ../../include/conversation.php:905 ../../include/conversation.php:923
 msgid "Please enter a link URL:"
 msgstr "Пожалуйста, введите URL ссылки:"
 
-#: ../../mod/wallmessage.php:138 ../../mod/message.php:278
+#: ../../mod/wallmessage.php:138 ../../mod/message.php:285
 msgid "Send Private Message"
 msgstr "Отправить личное сообщение"
 
@@ -2691,18 +2866,18 @@ msgid ""
 "your site allow private mail from unknown senders."
 msgstr ""
 
-#: ../../mod/wallmessage.php:140 ../../mod/message.php:279
-#: ../../mod/message.php:469
+#: ../../mod/wallmessage.php:140 ../../mod/message.php:286
+#: ../../mod/message.php:476
 msgid "To:"
 msgstr "Кому:"
 
-#: ../../mod/wallmessage.php:141 ../../mod/message.php:284
-#: ../../mod/message.php:471
+#: ../../mod/wallmessage.php:141 ../../mod/message.php:291
+#: ../../mod/message.php:478
 msgid "Subject:"
 msgstr "Тема:"
 
-#: ../../mod/wallmessage.php:147 ../../mod/message.php:288
-#: ../../mod/message.php:474 ../../mod/invite.php:113
+#: ../../mod/wallmessage.php:147 ../../mod/message.php:295
+#: ../../mod/message.php:481 ../../mod/invite.php:113
 msgid "Your message:"
 msgstr "Ваше сообщение:"
 
@@ -2757,9 +2932,9 @@ msgid ""
 msgstr "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти."
 
 #: ../../mod/newmember.php:32 ../../mod/profperm.php:103
-#: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7
+#: ../../view/theme/diabook/theme.php:88 ../../include/profile_advanced.php:7
 #: ../../include/profile_advanced.php:84 ../../include/nav.php:50
-#: ../../boot.php:1672
+#: ../../boot.php:1731
 msgid "Profile"
 msgstr "Профиль"
 
@@ -2803,6 +2978,8 @@ msgstr ""
 #: ../../mod/newmember.php:49 ../../mod/newmember.php:51
 #: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239
 #: ../../include/contact_selectors.php:81
+#: ../../addon.old/facebook/facebook.php:728
+#: ../../addon.old/fbpost/fbpost.php:239
 msgid "Facebook"
 msgstr "Facebook"
 
@@ -2864,7 +3041,7 @@ msgid ""
 "hours."
 msgstr ""
 
-#: ../../mod/newmember.php:66 ../../include/group.php:239
+#: ../../mod/newmember.php:66 ../../include/group.php:270
 msgid "Groups"
 msgstr "Группы"
 
@@ -2928,7 +3105,7 @@ msgstr "Группа не найдена."
 msgid "Group name changed."
 msgstr "Название группы изменено."
 
-#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:316
+#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:332
 msgid "Permission denied"
 msgstr "Доступ запрещен"
 
@@ -2980,95 +3157,89 @@ msgstr "Все контакты (с безопасным доступом к п
 msgid "No contacts."
 msgstr "Нет контактов."
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:618
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:625
 msgid "View Contacts"
 msgstr "Просмотр контактов"
 
-#: ../../mod/register.php:88 ../../mod/regmod.php:52
+#: ../../mod/register.php:89 ../../mod/regmod.php:52
 #, php-format
 msgid "Registration details for %s"
 msgstr "Подробности регистрации для %s"
 
-#: ../../mod/register.php:96
+#: ../../mod/register.php:97
 msgid ""
 "Registration successful. Please check your email for further instructions."
 msgstr "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций."
 
-#: ../../mod/register.php:100
+#: ../../mod/register.php:101
 msgid "Failed to send email message. Here is the message that failed."
 msgstr "Невозможно отправить сообщение электронной почтой. Вот сообщение, которое не удалось."
 
-#: ../../mod/register.php:105
+#: ../../mod/register.php:106
 msgid "Your registration can not be processed."
 msgstr "Ваша регистрация не может быть обработана."
 
-#: ../../mod/register.php:142
+#: ../../mod/register.php:143
 #, php-format
 msgid "Registration request at %s"
 msgstr "Запрос на регистрацию на %s"
 
-#: ../../mod/register.php:151
+#: ../../mod/register.php:152
 msgid "Your registration is pending approval by the site owner."
 msgstr "Ваша регистрация в ожидании одобрения владельцем сайта."
 
-#: ../../mod/register.php:189
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr ""
-
-#: ../../mod/register.php:217
+#: ../../mod/register.php:218
 msgid ""
 "You may (optionally) fill in this form via OpenID by supplying your OpenID "
 "and clicking 'Register'."
 msgstr "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\"."
 
-#: ../../mod/register.php:218
+#: ../../mod/register.php:219
 msgid ""
 "If you are not familiar with OpenID, please leave that field blank and fill "
 "in the rest of the items."
 msgstr "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы."
 
-#: ../../mod/register.php:219
+#: ../../mod/register.php:220
 msgid "Your OpenID (optional): "
 msgstr "Ваш OpenID (необязательно):"
 
-#: ../../mod/register.php:233
+#: ../../mod/register.php:234
 msgid "Include your profile in member directory?"
 msgstr "Включить ваш профиль в каталог участников?"
 
-#: ../../mod/register.php:255
+#: ../../mod/register.php:256
 msgid "Membership on this site is by invitation only."
 msgstr "Членство на сайте только по приглашению."
 
-#: ../../mod/register.php:256
+#: ../../mod/register.php:257
 msgid "Your invitation ID: "
 msgstr "ID вашего приглашения:"
 
-#: ../../mod/register.php:259 ../../mod/admin.php:444
+#: ../../mod/register.php:260 ../../mod/admin.php:446
 msgid "Registration"
 msgstr "Регистрация"
 
-#: ../../mod/register.php:267
+#: ../../mod/register.php:268
 msgid "Your Full Name (e.g. Joe Smith): "
 msgstr "Ваше полное имя (например, Joe Smith): "
 
-#: ../../mod/register.php:268
+#: ../../mod/register.php:269
 msgid "Your Email Address: "
 msgstr "Ваш адрес электронной почты: "
 
-#: ../../mod/register.php:269
+#: ../../mod/register.php:270
 msgid ""
 "Choose a profile nickname. This must begin with a text character. Your "
 "profile address on this site will then be "
 "'<strong>nickname@$sitename</strong>'."
 msgstr "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае '<strong>nickname@$sitename</strong>'."
 
-#: ../../mod/register.php:270
+#: ../../mod/register.php:271
 msgid "Choose a nickname: "
 msgstr "Выберите псевдоним: "
 
-#: ../../mod/register.php:273 ../../include/nav.php:81 ../../boot.php:887
+#: ../../mod/register.php:274 ../../include/nav.php:81 ../../boot.php:923
 msgid "Register"
 msgstr "Регистрация"
 
@@ -3076,21 +3247,35 @@ msgstr "Регистрация"
 msgid "People Search"
 msgstr "Поиск людей"
 
-#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62
-#: ../../addon/facebook/facebook.php:1598
+#: ../../mod/like.php:145 ../../mod/subthread.php:87 ../../mod/tagger.php:62
+#: ../../addon/communityhome/communityhome.php:163
+#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1442
+#: ../../include/diaspora.php:1848 ../../include/conversation.php:125
+#: ../../include/conversation.php:253
+#: ../../addon.old/communityhome/communityhome.php:163
+msgid "photo"
+msgstr "фото"
+
+#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/subthread.php:87
+#: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1598
 #: ../../addon/communityhome/communityhome.php:158
 #: ../../addon/communityhome/communityhome.php:167
-#: ../../view/theme/diabook/theme.php:565
-#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824
+#: ../../view/theme/diabook/theme.php:459
+#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1848
 #: ../../include/conversation.php:120 ../../include/conversation.php:129
 #: ../../include/conversation.php:248 ../../include/conversation.php:257
+#: ../../addon.old/facebook/facebook.php:1598
+#: ../../addon.old/communityhome/communityhome.php:158
+#: ../../addon.old/communityhome/communityhome.php:167
 msgid "status"
 msgstr "статус"
 
 #: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602
 #: ../../addon/communityhome/communityhome.php:172
-#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840
+#: ../../view/theme/diabook/theme.php:473 ../../include/diaspora.php:1864
 #: ../../include/conversation.php:136
+#: ../../addon.old/facebook/facebook.php:1602
+#: ../../addon.old/communityhome/communityhome.php:172
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
 msgstr "%1$s нравится %3$s от %2$s "
@@ -3101,8 +3286,8 @@ msgid "%1$s doesn't like %2$s's %3$s"
 msgstr "%1$s не нравится %3$s от %2$s "
 
 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
-#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29
-#: ../../mod/display.php:145 ../../include/items.php:3779
+#: ../../mod/admin.php:737 ../../mod/admin.php:936 ../../mod/display.php:39
+#: ../../mod/display.php:169 ../../include/items.php:3843
 msgid "Item not found."
 msgstr "Пункт не найден."
 
@@ -3110,8 +3295,8 @@ msgstr "Пункт не найден."
 msgid "Access denied."
 msgstr "Доступ запрещен."
 
-#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130
-#: ../../include/nav.php:51 ../../boot.php:1679
+#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
+#: ../../include/nav.php:51 ../../boot.php:1738
 msgid "Photos"
 msgstr "Фото"
 
@@ -3132,43 +3317,43 @@ msgstr "Регистрация отменена для %s"
 msgid "Please login."
 msgstr "Пожалуйста, войдите с паролем."
 
-#: ../../mod/item.php:91
+#: ../../mod/item.php:104
 msgid "Unable to locate original post."
 msgstr "Не удалось найти оригинальный пост."
 
-#: ../../mod/item.php:275
+#: ../../mod/item.php:288
 msgid "Empty post discarded."
 msgstr "Пустое сообщение отбрасывается."
 
-#: ../../mod/item.php:407 ../../mod/wall_upload.php:133
-#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149
+#: ../../mod/item.php:424 ../../mod/wall_upload.php:135
+#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151
 #: ../../include/message.php:144
 msgid "Wall Photos"
 msgstr "Фото стены"
 
-#: ../../mod/item.php:820
+#: ../../mod/item.php:837
 msgid "System error. Post not saved."
 msgstr "Системная ошибка. Сообщение не сохранено."
 
-#: ../../mod/item.php:845
+#: ../../mod/item.php:862
 #, php-format
 msgid ""
 "This message was sent to you by %s, a member of the Friendica social "
 "network."
 msgstr ""
 
-#: ../../mod/item.php:847
+#: ../../mod/item.php:864
 #, php-format
 msgid "You may visit them online at %s"
 msgstr "Вы можете посетить их в онлайне на %s"
 
-#: ../../mod/item.php:848
+#: ../../mod/item.php:865
 msgid ""
 "Please contact the sender by replying to this post if you do not wish to "
 "receive these messages."
 msgstr "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения."
 
-#: ../../mod/item.php:850
+#: ../../mod/item.php:867
 #, php-format
 msgid "%s posted an update."
 msgstr "%s отправил/а/ обновление."
@@ -3200,13 +3385,13 @@ msgstr "Уменьшение размера изображения [%s] не у
 msgid ""
 "Shift-reload the page or clear browser cache if the new photo does not "
 "display immediately."
-msgstr ""
+msgstr "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно."
 
 #: ../../mod/profile_photo.php:128
 msgid "Unable to process image"
 msgstr "Не удается обработать изображение"
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:88
+#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90
 #, php-format
 msgid "Image exceeds size limit of %d"
 msgstr "Изображение превышает предельный размер %d"
@@ -3221,6 +3406,7 @@ msgstr ""
 
 #: ../../mod/profile_photo.php:245
 #: ../../addon/dav/friendica/layout.fnk.php:152
+#: ../../addon.old/dav/friendica/layout.fnk.php:152
 msgid "Upload"
 msgstr "Загрузить"
 
@@ -3266,50 +3452,50 @@ msgstr "Это позволит полностью удалить ваш акк
 msgid "Please enter your password for verification:"
 msgstr "Пожалуйста, введите свой пароль для проверки:"
 
-#: ../../mod/message.php:9 ../../include/nav.php:131
+#: ../../mod/message.php:9 ../../include/nav.php:132
 msgid "New Message"
 msgstr "Новое сообщение"
 
-#: ../../mod/message.php:63
+#: ../../mod/message.php:67
 msgid "Unable to locate contact information."
 msgstr "Не удалось найти контактную информацию."
 
-#: ../../mod/message.php:191
+#: ../../mod/message.php:195
 msgid "Message deleted."
 msgstr "Сообщение удалено."
 
-#: ../../mod/message.php:221
+#: ../../mod/message.php:225
 msgid "Conversation removed."
 msgstr "Беседа удалена."
 
-#: ../../mod/message.php:327
+#: ../../mod/message.php:334
 msgid "No messages."
 msgstr "Нет сообщений."
 
-#: ../../mod/message.php:334
+#: ../../mod/message.php:341
 #, php-format
 msgid "Unknown sender - %s"
 msgstr ""
 
-#: ../../mod/message.php:337
+#: ../../mod/message.php:344
 #, php-format
 msgid "You and %s"
 msgstr ""
 
-#: ../../mod/message.php:340
+#: ../../mod/message.php:347
 #, php-format
 msgid "%s and You"
 msgstr "%s и Вы"
 
-#: ../../mod/message.php:350 ../../mod/message.php:462
+#: ../../mod/message.php:357 ../../mod/message.php:469
 msgid "Delete conversation"
 msgstr "Удалить историю общения"
 
-#: ../../mod/message.php:353
+#: ../../mod/message.php:360
 msgid "D, d M Y - g:i A"
 msgstr "D, d M Y - g:i A"
 
-#: ../../mod/message.php:356
+#: ../../mod/message.php:363
 #, php-format
 msgid "%d message"
 msgid_plural "%d messages"
@@ -3317,21 +3503,21 @@ msgstr[0] "%d сообщение"
 msgstr[1] "%d сообщений"
 msgstr[2] "%d сообщений"
 
-#: ../../mod/message.php:391
+#: ../../mod/message.php:398
 msgid "Message not available."
 msgstr "Сообщение не доступно."
 
-#: ../../mod/message.php:444
+#: ../../mod/message.php:451
 msgid "Delete message"
 msgstr "Удалить сообщение"
 
-#: ../../mod/message.php:464
+#: ../../mod/message.php:471
 msgid ""
 "No secure communications available. You <strong>may</strong> be able to "
 "respond from the sender's profile page."
 msgstr ""
 
-#: ../../mod/message.php:468
+#: ../../mod/message.php:475
 msgid "Send Reply"
 msgstr "Отправить ответ"
 
@@ -3348,19 +3534,19 @@ msgstr "Нет друзей."
 msgid "Theme settings updated."
 msgstr ""
 
-#: ../../mod/admin.php:96 ../../mod/admin.php:442
+#: ../../mod/admin.php:96 ../../mod/admin.php:444
 msgid "Site"
 msgstr "Сайт"
 
-#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701
+#: ../../mod/admin.php:97 ../../mod/admin.php:691 ../../mod/admin.php:704
 msgid "Users"
 msgstr "Пользователи"
 
-#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825
+#: ../../mod/admin.php:98 ../../mod/admin.php:786 ../../mod/admin.php:828
 msgid "Plugins"
 msgstr "Плагины"
 
-#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024
+#: ../../mod/admin.php:99 ../../mod/admin.php:991 ../../mod/admin.php:1027
 msgid "Themes"
 msgstr ""
 
@@ -3368,11 +3554,11 @@ msgstr ""
 msgid "DB updates"
 msgstr ""
 
-#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111
+#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1114
 msgid "Logs"
 msgstr "Журналы"
 
-#: ../../mod/admin.php:120 ../../include/nav.php:146
+#: ../../mod/admin.php:120 ../../include/nav.php:149
 msgid "Admin"
 msgstr "Администратор"
 
@@ -3384,19 +3570,19 @@ msgstr ""
 msgid "User registrations waiting for confirmation"
 msgstr "Регистрации пользователей, ожидающие подтверждения"
 
-#: ../../mod/admin.php:183 ../../mod/admin.php:669
+#: ../../mod/admin.php:183 ../../mod/admin.php:672
 msgid "Normal Account"
 msgstr "Обычный аккаунт"
 
-#: ../../mod/admin.php:184 ../../mod/admin.php:670
+#: ../../mod/admin.php:184 ../../mod/admin.php:673
 msgid "Soapbox Account"
 msgstr "Аккаунт Витрина"
 
-#: ../../mod/admin.php:185 ../../mod/admin.php:671
+#: ../../mod/admin.php:185 ../../mod/admin.php:674
 msgid "Community/Celebrity Account"
 msgstr "Аккаунт Сообщество / Знаменитость"
 
-#: ../../mod/admin.php:186 ../../mod/admin.php:672
+#: ../../mod/admin.php:186 ../../mod/admin.php:675
 msgid "Automatic Friend Account"
 msgstr "\"Автоматический друг\" Аккаунт"
 
@@ -3412,9 +3598,9 @@ msgstr ""
 msgid "Message queues"
 msgstr ""
 
-#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687
-#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987
-#: ../../mod/admin.php:1023 ../../mod/admin.php:1110
+#: ../../mod/admin.php:212 ../../mod/admin.php:443 ../../mod/admin.php:690
+#: ../../mod/admin.php:785 ../../mod/admin.php:827 ../../mod/admin.php:990
+#: ../../mod/admin.php:1026 ../../mod/admin.php:1113
 msgid "Administration"
 msgstr "Администрация"
 
@@ -3438,379 +3624,391 @@ msgstr "Версия"
 msgid "Active plugins"
 msgstr "Активные плагины"
 
-#: ../../mod/admin.php:373
+#: ../../mod/admin.php:375
 msgid "Site settings updated."
 msgstr "Установки сайта обновлены."
 
-#: ../../mod/admin.php:428
+#: ../../mod/admin.php:430
 msgid "Closed"
 msgstr "Закрыто"
 
-#: ../../mod/admin.php:429
+#: ../../mod/admin.php:431
 msgid "Requires approval"
 msgstr "Требуется подтверждение"
 
-#: ../../mod/admin.php:430
+#: ../../mod/admin.php:432
 msgid "Open"
 msgstr "Открыто"
 
-#: ../../mod/admin.php:434
+#: ../../mod/admin.php:436
 msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: ../../mod/admin.php:435
+#: ../../mod/admin.php:437
 msgid "Force all links to use SSL"
 msgstr "Заставить все ссылки использовать SSL"
 
-#: ../../mod/admin.php:436
+#: ../../mod/admin.php:438
 msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: ../../mod/admin.php:445
+#: ../../mod/admin.php:447
 msgid "File upload"
 msgstr "Загрузка файлов"
 
-#: ../../mod/admin.php:446
+#: ../../mod/admin.php:448
 msgid "Policies"
 msgstr "Политики"
 
-#: ../../mod/admin.php:447
+#: ../../mod/admin.php:449
 msgid "Advanced"
 msgstr "Расширенный"
 
-#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567
+#: ../../mod/admin.php:453 ../../addon/statusnet/statusnet.php:676
+#: ../../addon.old/statusnet/statusnet.php:567
 msgid "Site name"
 msgstr "Название сайта"
 
-#: ../../mod/admin.php:452
+#: ../../mod/admin.php:454
 msgid "Banner/Logo"
 msgstr "Баннер/Логотип"
 
-#: ../../mod/admin.php:453
+#: ../../mod/admin.php:455
 msgid "System language"
 msgstr "Системный язык"
 
-#: ../../mod/admin.php:454
+#: ../../mod/admin.php:456
 msgid "System theme"
 msgstr "Системная тема"
 
-#: ../../mod/admin.php:454
+#: ../../mod/admin.php:456
 msgid ""
 "Default system theme - may be over-ridden by user profiles - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: ../../mod/admin.php:455
+#: ../../mod/admin.php:457
 msgid "Mobile system theme"
 msgstr ""
 
-#: ../../mod/admin.php:455
+#: ../../mod/admin.php:457
 msgid "Theme for mobile devices"
 msgstr ""
 
-#: ../../mod/admin.php:456
+#: ../../mod/admin.php:458
 msgid "SSL link policy"
 msgstr ""
 
-#: ../../mod/admin.php:456
+#: ../../mod/admin.php:458
 msgid "Determines whether generated links should be forced to use SSL"
 msgstr "Ссылки должны быть вынуждены использовать SSL"
 
-#: ../../mod/admin.php:457
+#: ../../mod/admin.php:459
 msgid "Maximum image size"
 msgstr "Максимальный размер изображения"
 
-#: ../../mod/admin.php:457
+#: ../../mod/admin.php:459
 msgid ""
 "Maximum size in bytes of uploaded images. Default is 0, which means no "
 "limits."
 msgstr ""
 
-#: ../../mod/admin.php:458
+#: ../../mod/admin.php:460
 msgid "Maximum image length"
 msgstr ""
 
-#: ../../mod/admin.php:458
+#: ../../mod/admin.php:460
 msgid ""
 "Maximum length in pixels of the longest side of uploaded images. Default is "
 "-1, which means no limits."
 msgstr ""
 
-#: ../../mod/admin.php:459
+#: ../../mod/admin.php:461
 msgid "JPEG image quality"
 msgstr ""
 
-#: ../../mod/admin.php:459
+#: ../../mod/admin.php:461
 msgid ""
 "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
 "100, which is full quality."
 msgstr ""
 
-#: ../../mod/admin.php:461
+#: ../../mod/admin.php:463
 msgid "Register policy"
 msgstr "Политика регистрация"
 
-#: ../../mod/admin.php:462
+#: ../../mod/admin.php:464
+msgid "Maximum Daily Registrations"
+msgstr ""
+
+#: ../../mod/admin.php:464
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr ""
+
+#: ../../mod/admin.php:465
 msgid "Register text"
 msgstr "Текст регистрации"
 
-#: ../../mod/admin.php:462
+#: ../../mod/admin.php:465
 msgid "Will be displayed prominently on the registration page."
 msgstr ""
 
-#: ../../mod/admin.php:463
+#: ../../mod/admin.php:466
 msgid "Accounts abandoned after x days"
 msgstr "Аккаунт считается после x дней не воспользованным"
 
-#: ../../mod/admin.php:463
+#: ../../mod/admin.php:466
 msgid ""
 "Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
-msgstr ""
+msgstr "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени."
 
-#: ../../mod/admin.php:464
+#: ../../mod/admin.php:467
 msgid "Allowed friend domains"
 msgstr "Разрешенные домены друзей"
 
-#: ../../mod/admin.php:464
+#: ../../mod/admin.php:467
 msgid ""
 "Comma separated list of domains which are allowed to establish friendships "
 "with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr ""
 
-#: ../../mod/admin.php:465
+#: ../../mod/admin.php:468
 msgid "Allowed email domains"
 msgstr "Разрешенные почтовые домены"
 
-#: ../../mod/admin.php:465
+#: ../../mod/admin.php:468
 msgid ""
 "Comma separated list of domains which are allowed in email addresses for "
 "registrations to this site. Wildcards are accepted. Empty to allow any "
 "domains"
 msgstr ""
 
-#: ../../mod/admin.php:466
+#: ../../mod/admin.php:469
 msgid "Block public"
 msgstr "Блокировать общественный доступ"
 
-#: ../../mod/admin.php:466
+#: ../../mod/admin.php:469
 msgid ""
 "Check to block public access to all otherwise public personal pages on this "
 "site unless you are currently logged in."
 msgstr ""
 
-#: ../../mod/admin.php:467
+#: ../../mod/admin.php:470
 msgid "Force publish"
 msgstr "Принудительная публикация"
 
-#: ../../mod/admin.php:467
+#: ../../mod/admin.php:470
 msgid ""
 "Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: ../../mod/admin.php:468
+#: ../../mod/admin.php:471
 msgid "Global directory update URL"
 msgstr "URL обновления глобального каталога"
 
-#: ../../mod/admin.php:468
+#: ../../mod/admin.php:471
 msgid ""
 "URL to update the global directory. If this is not set, the global directory"
 " is completely unavailable to the application."
 msgstr ""
 
-#: ../../mod/admin.php:469
+#: ../../mod/admin.php:472
 msgid "Allow threaded items"
 msgstr ""
 
-#: ../../mod/admin.php:469
+#: ../../mod/admin.php:472
 msgid "Allow infinite level threading for items on this site."
 msgstr ""
 
-#: ../../mod/admin.php:470
+#: ../../mod/admin.php:473
 msgid "Private posts by default for new users"
 msgstr ""
 
-#: ../../mod/admin.php:470
+#: ../../mod/admin.php:473
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
 msgstr ""
 
-#: ../../mod/admin.php:472
+#: ../../mod/admin.php:475
 msgid "Block multiple registrations"
 msgstr "Блокировать множественные регистрации"
 
-#: ../../mod/admin.php:472
+#: ../../mod/admin.php:475
 msgid "Disallow users to register additional accounts for use as pages."
 msgstr "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц."
 
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:476
 msgid "OpenID support"
 msgstr "Поддержка OpenID"
 
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:476
 msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: ../../mod/admin.php:474
+#: ../../mod/admin.php:477
 msgid "Fullname check"
 msgstr "Проверка полного имени"
 
-#: ../../mod/admin.php:474
+#: ../../mod/admin.php:477
 msgid ""
 "Force users to register with a space between firstname and lastname in Full "
 "name, as an antispam measure"
 msgstr ""
 
-#: ../../mod/admin.php:475
+#: ../../mod/admin.php:478
 msgid "UTF-8 Regular expressions"
 msgstr "UTF-8 регулярные выражения"
 
-#: ../../mod/admin.php:475
+#: ../../mod/admin.php:478
 msgid "Use PHP UTF8 regular expressions"
 msgstr ""
 
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:479
 msgid "Show Community Page"
 msgstr "Показать страницу сообщества"
 
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:479
 msgid ""
 "Display a Community page showing all recent public postings on this site."
 msgstr "Показывать страницу сообщества с указанием всех последних публичных сообщений на этом сайте."
 
-#: ../../mod/admin.php:477
+#: ../../mod/admin.php:480
 msgid "Enable OStatus support"
 msgstr "Включить поддержку OStatus"
 
-#: ../../mod/admin.php:477
+#: ../../mod/admin.php:480
 msgid ""
 "Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
 "communications in OStatus are public, so privacy warnings will be "
 "occasionally displayed."
 msgstr ""
 
-#: ../../mod/admin.php:478
+#: ../../mod/admin.php:481
 msgid "Enable Diaspora support"
 msgstr "Включить поддержку Diaspora"
 
-#: ../../mod/admin.php:478
+#: ../../mod/admin.php:481
 msgid "Provide built-in Diaspora network compatibility."
 msgstr ""
 
-#: ../../mod/admin.php:479
+#: ../../mod/admin.php:482
 msgid "Only allow Friendica contacts"
 msgstr "Позвольть только  Friendica контакты"
 
-#: ../../mod/admin.php:479
+#: ../../mod/admin.php:482
 msgid ""
 "All contacts must use Friendica protocols. All other built-in communication "
 "protocols disabled."
 msgstr "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены."
 
-#: ../../mod/admin.php:480
+#: ../../mod/admin.php:483
 msgid "Verify SSL"
 msgstr "Проверка SSL"
 
-#: ../../mod/admin.php:480
+#: ../../mod/admin.php:483
 msgid ""
 "If you wish, you can turn on strict certificate checking. This will mean you"
 " cannot connect (at all) to self-signed SSL sites."
 msgstr ""
 
-#: ../../mod/admin.php:481
+#: ../../mod/admin.php:484
 msgid "Proxy user"
 msgstr "Прокси пользователь"
 
-#: ../../mod/admin.php:482
+#: ../../mod/admin.php:485
 msgid "Proxy URL"
 msgstr "Прокси URL"
 
-#: ../../mod/admin.php:483
+#: ../../mod/admin.php:486
 msgid "Network timeout"
 msgstr "Тайм-аут сети"
 
-#: ../../mod/admin.php:483
+#: ../../mod/admin.php:486
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: ../../mod/admin.php:484
+#: ../../mod/admin.php:487
 msgid "Delivery interval"
 msgstr ""
 
-#: ../../mod/admin.php:484
+#: ../../mod/admin.php:487
 msgid ""
 "Delay background delivery processes by this many seconds to reduce system "
 "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
 "for large dedicated servers."
 msgstr ""
 
-#: ../../mod/admin.php:485
+#: ../../mod/admin.php:488
 msgid "Poll interval"
 msgstr ""
 
-#: ../../mod/admin.php:485
+#: ../../mod/admin.php:488
 msgid ""
 "Delay background polling processes by this many seconds to reduce system "
 "load. If 0, use delivery interval."
 msgstr ""
 
-#: ../../mod/admin.php:486
+#: ../../mod/admin.php:489
 msgid "Maximum Load Average"
 msgstr ""
 
-#: ../../mod/admin.php:486
+#: ../../mod/admin.php:489
 msgid ""
 "Maximum system load before delivery and poll processes are deferred - "
 "default 50."
 msgstr ""
 
-#: ../../mod/admin.php:503
+#: ../../mod/admin.php:506
 msgid "Update has been marked successful"
 msgstr ""
 
-#: ../../mod/admin.php:513
+#: ../../mod/admin.php:516
 #, php-format
 msgid "Executing %s failed. Check system logs."
 msgstr ""
 
-#: ../../mod/admin.php:516
+#: ../../mod/admin.php:519
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr ""
 
-#: ../../mod/admin.php:520
+#: ../../mod/admin.php:523
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: ../../mod/admin.php:523
+#: ../../mod/admin.php:526
 #, php-format
 msgid "Update function %s could not be found."
 msgstr ""
 
-#: ../../mod/admin.php:538
+#: ../../mod/admin.php:541
 msgid "No failed updates."
 msgstr ""
 
-#: ../../mod/admin.php:542
+#: ../../mod/admin.php:545
 msgid "Failed Updates"
 msgstr ""
 
-#: ../../mod/admin.php:543
+#: ../../mod/admin.php:546
 msgid ""
 "This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: ../../mod/admin.php:544
+#: ../../mod/admin.php:547
 msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: ../../mod/admin.php:545
+#: ../../mod/admin.php:548
 msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: ../../mod/admin.php:570
+#: ../../mod/admin.php:573
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
@@ -3818,7 +4016,7 @@ msgstr[0] ""
 msgstr[1] ""
 msgstr[2] ""
 
-#: ../../mod/admin.php:577
+#: ../../mod/admin.php:580
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
@@ -3826,179 +4024,180 @@ msgstr[0] "%s человек удален"
 msgstr[1] "%s чел. удалено"
 msgstr[2] "%s чел. удалено"
 
-#: ../../mod/admin.php:616
+#: ../../mod/admin.php:619
 #, php-format
 msgid "User '%s' deleted"
 msgstr "Пользователь '%s' удален"
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:627
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "Пользователь '%s' разблокирован"
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:627
 #, php-format
 msgid "User '%s' blocked"
 msgstr "Пользователь '%s' блокирован"
 
-#: ../../mod/admin.php:690
+#: ../../mod/admin.php:693
 msgid "select all"
 msgstr "выбрать все"
 
-#: ../../mod/admin.php:691
+#: ../../mod/admin.php:694
 msgid "User registrations waiting for confirm"
 msgstr "Регистрации пользователей, ожидающие подтверждения"
 
-#: ../../mod/admin.php:692
+#: ../../mod/admin.php:695
 msgid "Request date"
 msgstr "Запрос даты"
 
-#: ../../mod/admin.php:692 ../../mod/admin.php:702
+#: ../../mod/admin.php:695 ../../mod/admin.php:705
 #: ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86
 msgid "Email"
 msgstr "Эл. почта"
 
-#: ../../mod/admin.php:693
+#: ../../mod/admin.php:696
 msgid "No registrations."
 msgstr "Нет регистраций."
 
-#: ../../mod/admin.php:695
+#: ../../mod/admin.php:698
 msgid "Deny"
 msgstr "Отклонить"
 
-#: ../../mod/admin.php:699
+#: ../../mod/admin.php:702
 msgid "Site admin"
 msgstr ""
 
-#: ../../mod/admin.php:702
+#: ../../mod/admin.php:705
 msgid "Register date"
 msgstr "Дата регистрации"
 
-#: ../../mod/admin.php:702
+#: ../../mod/admin.php:705
 msgid "Last login"
 msgstr "Последний вход"
 
-#: ../../mod/admin.php:702
+#: ../../mod/admin.php:705
 msgid "Last item"
 msgstr "Последний пункт"
 
-#: ../../mod/admin.php:702
+#: ../../mod/admin.php:705
 msgid "Account"
 msgstr "Аккаунт"
 
-#: ../../mod/admin.php:704
+#: ../../mod/admin.php:707
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
 
-#: ../../mod/admin.php:705
+#: ../../mod/admin.php:708
 msgid ""
 "The user {0} will be deleted!\\n\\nEverything this user has posted on this "
 "site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
 
-#: ../../mod/admin.php:746
+#: ../../mod/admin.php:749
 #, php-format
 msgid "Plugin %s disabled."
 msgstr "Плагин %s отключен."
 
-#: ../../mod/admin.php:750
+#: ../../mod/admin.php:753
 #, php-format
 msgid "Plugin %s enabled."
 msgstr "Плагин %s включен."
 
-#: ../../mod/admin.php:760 ../../mod/admin.php:958
+#: ../../mod/admin.php:763 ../../mod/admin.php:961
 msgid "Disable"
 msgstr "Отключить"
 
-#: ../../mod/admin.php:762 ../../mod/admin.php:960
+#: ../../mod/admin.php:765 ../../mod/admin.php:963
 msgid "Enable"
 msgstr "Включить"
 
-#: ../../mod/admin.php:784 ../../mod/admin.php:989
+#: ../../mod/admin.php:787 ../../mod/admin.php:992
 msgid "Toggle"
 msgstr "Переключить"
 
-#: ../../mod/admin.php:792 ../../mod/admin.php:999
+#: ../../mod/admin.php:795 ../../mod/admin.php:1002
 msgid "Author: "
 msgstr "Автор:"
 
-#: ../../mod/admin.php:793 ../../mod/admin.php:1000
+#: ../../mod/admin.php:796 ../../mod/admin.php:1003
 msgid "Maintainer: "
 msgstr ""
 
-#: ../../mod/admin.php:922
+#: ../../mod/admin.php:925
 msgid "No themes found."
 msgstr ""
 
-#: ../../mod/admin.php:981
+#: ../../mod/admin.php:984
 msgid "Screenshot"
 msgstr "Скриншот"
 
-#: ../../mod/admin.php:1029
+#: ../../mod/admin.php:1032
 msgid "[Experimental]"
 msgstr "[экспериментально]"
 
-#: ../../mod/admin.php:1030
+#: ../../mod/admin.php:1033
 msgid "[Unsupported]"
 msgstr "[Неподдерживаемое]"
 
-#: ../../mod/admin.php:1057
+#: ../../mod/admin.php:1060
 msgid "Log settings updated."
 msgstr "Настройки журнала обновлены."
 
-#: ../../mod/admin.php:1113
+#: ../../mod/admin.php:1116
 msgid "Clear"
 msgstr "Очистить"
 
-#: ../../mod/admin.php:1119
+#: ../../mod/admin.php:1122
 msgid "Debugging"
 msgstr "Отладка"
 
-#: ../../mod/admin.php:1120
+#: ../../mod/admin.php:1123
 msgid "Log file"
 msgstr "Лог-файл"
 
-#: ../../mod/admin.php:1120
+#: ../../mod/admin.php:1123
 msgid ""
 "Must be writable by web server. Relative to your Friendica top-level "
 "directory."
 msgstr ""
 
-#: ../../mod/admin.php:1121
+#: ../../mod/admin.php:1124
 msgid "Log level"
 msgstr "Уровень лога"
 
-#: ../../mod/admin.php:1171
+#: ../../mod/admin.php:1174
 msgid "Close"
 msgstr "Закрыть"
 
-#: ../../mod/admin.php:1177
+#: ../../mod/admin.php:1180
 msgid "FTP Host"
 msgstr "FTP хост"
 
-#: ../../mod/admin.php:1178
+#: ../../mod/admin.php:1181
 msgid "FTP Path"
 msgstr "Путь FTP"
 
-#: ../../mod/admin.php:1179
+#: ../../mod/admin.php:1182
 msgid "FTP User"
 msgstr "FTP пользователь"
 
-#: ../../mod/admin.php:1180
+#: ../../mod/admin.php:1183
 msgid "FTP Password"
 msgstr "FTP пароль"
 
-#: ../../mod/profile.php:22 ../../boot.php:1074
+#: ../../mod/profile.php:21 ../../boot.php:1126
 msgid "Requested profile is not available."
 msgstr "Запрашиваемый профиль недоступен."
 
-#: ../../mod/profile.php:152 ../../mod/display.php:77
+#: ../../mod/profile.php:155 ../../mod/display.php:87
 msgid "Access to this profile has been restricted."
 msgstr "Доступ к этому профилю ограничен."
 
-#: ../../mod/profile.php:177
+#: ../../mod/profile.php:180
 msgid "Tips for New Members"
 msgstr "Советы для новых участников"
 
@@ -4060,8 +4259,8 @@ msgid ""
 "Account not found and OpenID registration is not permitted on this site."
 msgstr "Аккаунт не найден и OpenID регистрация не допускается на этом сайте."
 
-#: ../../mod/openid.php:93 ../../include/auth.php:98
-#: ../../include/auth.php:161
+#: ../../mod/openid.php:93 ../../include/auth.php:110
+#: ../../include/auth.php:173
 msgid "Login failed."
 msgstr "Войти не удалось."
 
@@ -4077,11 +4276,16 @@ msgstr "Общие друзья"
 msgid "No contacts in common."
 msgstr ""
 
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr ""
+
 #: ../../mod/share.php:28
 msgid "link"
 msgstr ""
 
-#: ../../mod/display.php:138
+#: ../../mod/display.php:162
 msgid "Item has been removed."
 msgstr "Пункт был удален."
 
@@ -4093,13 +4297,13 @@ msgstr "Приложения"
 msgid "No installed applications."
 msgstr "Нет установленных приложений."
 
-#: ../../mod/search.php:85 ../../include/text.php:678
-#: ../../include/text.php:679 ../../include/nav.php:91
+#: ../../mod/search.php:99 ../../include/text.php:685
+#: ../../include/text.php:686 ../../include/nav.php:91
 msgid "Search"
 msgstr "Поиск"
 
-#: ../../mod/profiles.php:21 ../../mod/profiles.php:423
-#: ../../mod/profiles.php:537 ../../mod/dfrn_confirm.php:62
+#: ../../mod/profiles.php:21 ../../mod/profiles.php:441
+#: ../../mod/profiles.php:555 ../../mod/dfrn_confirm.php:62
 msgid "Profile not found."
 msgstr "Профиль не найден."
 
@@ -4107,306 +4311,308 @@ msgstr "Профиль не найден."
 msgid "Profile Name is required."
 msgstr "Необходимо имя профиля."
 
-#: ../../mod/profiles.php:160
+#: ../../mod/profiles.php:178
 msgid "Marital Status"
 msgstr ""
 
-#: ../../mod/profiles.php:164
+#: ../../mod/profiles.php:182
 msgid "Romantic Partner"
 msgstr ""
 
-#: ../../mod/profiles.php:168
+#: ../../mod/profiles.php:186
 msgid "Likes"
 msgstr ""
 
-#: ../../mod/profiles.php:172
+#: ../../mod/profiles.php:190
 msgid "Dislikes"
 msgstr ""
 
-#: ../../mod/profiles.php:176
+#: ../../mod/profiles.php:194
 msgid "Work/Employment"
 msgstr ""
 
-#: ../../mod/profiles.php:179
+#: ../../mod/profiles.php:197
 msgid "Religion"
 msgstr ""
 
-#: ../../mod/profiles.php:183
+#: ../../mod/profiles.php:201
 msgid "Political Views"
 msgstr ""
 
-#: ../../mod/profiles.php:187
+#: ../../mod/profiles.php:205
 msgid "Gender"
 msgstr ""
 
-#: ../../mod/profiles.php:191
+#: ../../mod/profiles.php:209
 msgid "Sexual Preference"
 msgstr ""
 
-#: ../../mod/profiles.php:195
+#: ../../mod/profiles.php:213
 msgid "Homepage"
 msgstr ""
 
-#: ../../mod/profiles.php:199
+#: ../../mod/profiles.php:217
 msgid "Interests"
 msgstr ""
 
-#: ../../mod/profiles.php:203
+#: ../../mod/profiles.php:221
 msgid "Address"
 msgstr ""
 
-#: ../../mod/profiles.php:210 ../../addon/dav/common/wdcal_edit.inc.php:183
+#: ../../mod/profiles.php:228 ../../addon/dav/common/wdcal_edit.inc.php:183
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
 msgid "Location"
 msgstr ""
 
-#: ../../mod/profiles.php:293
+#: ../../mod/profiles.php:311
 msgid "Profile updated."
 msgstr "Профиль обновлен."
 
-#: ../../mod/profiles.php:360
+#: ../../mod/profiles.php:378
 msgid " and "
 msgstr ""
 
-#: ../../mod/profiles.php:368
+#: ../../mod/profiles.php:386
 msgid "public profile"
 msgstr ""
 
-#: ../../mod/profiles.php:371
+#: ../../mod/profiles.php:389
 #, php-format
 msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr ""
 
-#: ../../mod/profiles.php:372
+#: ../../mod/profiles.php:390
 #, php-format
 msgid " - Visit %1$s's %2$s"
 msgstr ""
 
-#: ../../mod/profiles.php:375
+#: ../../mod/profiles.php:393
 #, php-format
 msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr ""
 
-#: ../../mod/profiles.php:442
+#: ../../mod/profiles.php:460
 msgid "Profile deleted."
 msgstr "Профиль удален."
 
-#: ../../mod/profiles.php:460 ../../mod/profiles.php:494
+#: ../../mod/profiles.php:478 ../../mod/profiles.php:512
 msgid "Profile-"
 msgstr "Профиль-"
 
-#: ../../mod/profiles.php:479 ../../mod/profiles.php:521
+#: ../../mod/profiles.php:497 ../../mod/profiles.php:539
 msgid "New profile created."
 msgstr "Новый профиль создан."
 
-#: ../../mod/profiles.php:500
+#: ../../mod/profiles.php:518
 msgid "Profile unavailable to clone."
 msgstr "Профиль недоступен для клонирования."
 
-#: ../../mod/profiles.php:562
+#: ../../mod/profiles.php:583
 msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr "Скрывать ваш список контактов / друзей от посетителей этого профиля?"
 
-#: ../../mod/profiles.php:582
+#: ../../mod/profiles.php:603
 msgid "Edit Profile Details"
 msgstr "Редактировать детали профиля"
 
-#: ../../mod/profiles.php:584
+#: ../../mod/profiles.php:605
 msgid "View this profile"
 msgstr "Просмотреть этот профиль"
 
-#: ../../mod/profiles.php:585
+#: ../../mod/profiles.php:606
 msgid "Create a new profile using these settings"
 msgstr "Создать новый профиль, используя эти настройки"
 
-#: ../../mod/profiles.php:586
+#: ../../mod/profiles.php:607
 msgid "Clone this profile"
 msgstr "Клонировать этот профиль"
 
-#: ../../mod/profiles.php:587
+#: ../../mod/profiles.php:608
 msgid "Delete this profile"
 msgstr "Удалить этот профиль"
 
-#: ../../mod/profiles.php:588
+#: ../../mod/profiles.php:609
 msgid "Profile Name:"
 msgstr "Имя профиля:"
 
-#: ../../mod/profiles.php:589
+#: ../../mod/profiles.php:610
 msgid "Your Full Name:"
 msgstr "Ваше полное имя:"
 
-#: ../../mod/profiles.php:590
+#: ../../mod/profiles.php:611
 msgid "Title/Description:"
 msgstr "Заголовок / Описание:"
 
-#: ../../mod/profiles.php:591
+#: ../../mod/profiles.php:612
 msgid "Your Gender:"
 msgstr "Ваш пол:"
 
-#: ../../mod/profiles.php:592
+#: ../../mod/profiles.php:613
 #, php-format
 msgid "Birthday (%s):"
 msgstr "День рождения (%s):"
 
-#: ../../mod/profiles.php:593
+#: ../../mod/profiles.php:614
 msgid "Street Address:"
 msgstr "Адрес:"
 
-#: ../../mod/profiles.php:594
+#: ../../mod/profiles.php:615
 msgid "Locality/City:"
 msgstr "Город / Населенный пункт:"
 
-#: ../../mod/profiles.php:595
+#: ../../mod/profiles.php:616
 msgid "Postal/Zip Code:"
 msgstr "Почтовый индекс:"
 
-#: ../../mod/profiles.php:596
+#: ../../mod/profiles.php:617
 msgid "Country:"
 msgstr "Страна:"
 
-#: ../../mod/profiles.php:597
+#: ../../mod/profiles.php:618
 msgid "Region/State:"
 msgstr "Район / Область:"
 
-#: ../../mod/profiles.php:598
+#: ../../mod/profiles.php:619
 msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr "<span class=\"heart\">&hearts;</span> Семейное положение:"
 
-#: ../../mod/profiles.php:599
+#: ../../mod/profiles.php:620
 msgid "Who: (if applicable)"
 msgstr "Кто: (если требуется)"
 
-#: ../../mod/profiles.php:600
+#: ../../mod/profiles.php:621
 msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr "Примеры: cathy123, Кэти Уильямс, cathy@example.com"
 
-#: ../../mod/profiles.php:601
+#: ../../mod/profiles.php:622
 msgid "Since [date]:"
 msgstr ""
 
-#: ../../mod/profiles.php:602 ../../include/profile_advanced.php:46
+#: ../../mod/profiles.php:623 ../../include/profile_advanced.php:46
 msgid "Sexual Preference:"
 msgstr "Сексуальные предпочтения:"
 
-#: ../../mod/profiles.php:603
+#: ../../mod/profiles.php:624
 msgid "Homepage URL:"
 msgstr "Адрес домашней странички:"
 
-#: ../../mod/profiles.php:604 ../../include/profile_advanced.php:50
+#: ../../mod/profiles.php:625 ../../include/profile_advanced.php:50
 msgid "Hometown:"
 msgstr ""
 
-#: ../../mod/profiles.php:605 ../../include/profile_advanced.php:54
+#: ../../mod/profiles.php:626 ../../include/profile_advanced.php:54
 msgid "Political Views:"
 msgstr "Политические взгляды:"
 
-#: ../../mod/profiles.php:606
+#: ../../mod/profiles.php:627
 msgid "Religious Views:"
 msgstr "Религиозные взгляды:"
 
-#: ../../mod/profiles.php:607
+#: ../../mod/profiles.php:628
 msgid "Public Keywords:"
 msgstr "Общественные ключевые слова:"
 
-#: ../../mod/profiles.php:608
+#: ../../mod/profiles.php:629
 msgid "Private Keywords:"
 msgstr "Личные ключевые слова:"
 
-#: ../../mod/profiles.php:609 ../../include/profile_advanced.php:62
+#: ../../mod/profiles.php:630 ../../include/profile_advanced.php:62
 msgid "Likes:"
 msgstr ""
 
-#: ../../mod/profiles.php:610 ../../include/profile_advanced.php:64
+#: ../../mod/profiles.php:631 ../../include/profile_advanced.php:64
 msgid "Dislikes:"
 msgstr ""
 
-#: ../../mod/profiles.php:611
+#: ../../mod/profiles.php:632
 msgid "Example: fishing photography software"
 msgstr "Пример: рыбалка фотографии программное обеспечение"
 
-#: ../../mod/profiles.php:612
+#: ../../mod/profiles.php:633
 msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr "(Используется для предложения потенциальным друзьям, могут увидеть другие)"
 
-#: ../../mod/profiles.php:613
+#: ../../mod/profiles.php:634
 msgid "(Used for searching profiles, never shown to others)"
 msgstr "(Используется для поиска профилей, никогда не показывается другим)"
 
-#: ../../mod/profiles.php:614
+#: ../../mod/profiles.php:635
 msgid "Tell us about yourself..."
 msgstr "Расскажите нам о себе ..."
 
-#: ../../mod/profiles.php:615
+#: ../../mod/profiles.php:636
 msgid "Hobbies/Interests"
 msgstr "Хобби / Интересы"
 
-#: ../../mod/profiles.php:616
+#: ../../mod/profiles.php:637
 msgid "Contact information and Social Networks"
 msgstr "Контактная информация и социальные сети"
 
-#: ../../mod/profiles.php:617
+#: ../../mod/profiles.php:638
 msgid "Musical interests"
 msgstr "Музыкальные интересы"
 
-#: ../../mod/profiles.php:618
+#: ../../mod/profiles.php:639
 msgid "Books, literature"
 msgstr "Книги, литература"
 
-#: ../../mod/profiles.php:619
+#: ../../mod/profiles.php:640
 msgid "Television"
 msgstr "Телевидение"
 
-#: ../../mod/profiles.php:620
+#: ../../mod/profiles.php:641
 msgid "Film/dance/culture/entertainment"
 msgstr "Кино / танцы / культура / развлечения"
 
-#: ../../mod/profiles.php:621
+#: ../../mod/profiles.php:642
 msgid "Love/romance"
 msgstr "Любовь / романтика"
 
-#: ../../mod/profiles.php:622
+#: ../../mod/profiles.php:643
 msgid "Work/employment"
 msgstr "Работа / занятость"
 
-#: ../../mod/profiles.php:623
+#: ../../mod/profiles.php:644
 msgid "School/education"
 msgstr "Школа / образование"
 
-#: ../../mod/profiles.php:628
+#: ../../mod/profiles.php:649
 msgid ""
 "This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
 "be visible to anybody using the internet."
 msgstr "Это ваш <strong>публичный</strong> профиль. <br /> Он <strong>может</strong> быть виден каждому, используя Интернет."
 
-#: ../../mod/profiles.php:638 ../../mod/directory.php:111
+#: ../../mod/profiles.php:659 ../../mod/directory.php:111
+#: ../../addon/forumdirectory/forumdirectory.php:133
 msgid "Age: "
 msgstr "Возраст: "
 
-#: ../../mod/profiles.php:677
+#: ../../mod/profiles.php:698
 msgid "Edit/Manage Profiles"
 msgstr "Редактировать профиль"
 
-#: ../../mod/profiles.php:678 ../../boot.php:1192
+#: ../../mod/profiles.php:699 ../../boot.php:1244
 msgid "Change profile photo"
 msgstr "Изменить фото профиля"
 
-#: ../../mod/profiles.php:679 ../../boot.php:1193
+#: ../../mod/profiles.php:700 ../../boot.php:1245
 msgid "Create New Profile"
 msgstr "Создать новый профиль"
 
-#: ../../mod/profiles.php:690 ../../boot.php:1203
+#: ../../mod/profiles.php:711 ../../boot.php:1255
 msgid "Profile Image"
 msgstr "Фото профиля"
 
-#: ../../mod/profiles.php:692 ../../boot.php:1206
+#: ../../mod/profiles.php:713 ../../boot.php:1258
 msgid "visible to everybody"
 msgstr "видимый всем"
 
-#: ../../mod/profiles.php:693 ../../boot.php:1207
+#: ../../mod/profiles.php:714 ../../boot.php:1259
 msgid "Edit visibility"
 msgstr "Редактировать видимость"
 
-#: ../../mod/filer.php:29 ../../include/conversation.php:837
-#: ../../include/conversation.php:854
+#: ../../mod/filer.php:29 ../../include/conversation.php:909
+#: ../../include/conversation.php:927
 msgid "Save to Folder:"
 msgstr "Сохранить в папку:"
 
@@ -4498,7 +4704,7 @@ msgstr ""
 msgid "diaspora2bb: "
 msgstr ""
 
-#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626
+#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:520
 #: ../../include/contact_widgets.php:34
 msgid "Friend Suggestions"
 msgstr "Предложения друзей"
@@ -4513,42 +4719,50 @@ msgstr ""
 msgid "Ignore/Hide"
 msgstr "Проигнорировать/Скрыть"
 
-#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:624
+#: ../../mod/directory.php:49 ../../addon/forumdirectory/forumdirectory.php:71
+#: ../../view/theme/diabook/theme.php:518
 msgid "Global Directory"
 msgstr "Глобальный каталог"
 
-#: ../../mod/directory.php:57
+#: ../../mod/directory.php:57 ../../addon/forumdirectory/forumdirectory.php:79
 msgid "Find on this site"
 msgstr "Найти на этом сайте"
 
-#: ../../mod/directory.php:60
+#: ../../mod/directory.php:60 ../../addon/forumdirectory/forumdirectory.php:82
 msgid "Site Directory"
 msgstr "Каталог сайта"
 
 #: ../../mod/directory.php:114
+#: ../../addon/forumdirectory/forumdirectory.php:136
 msgid "Gender: "
 msgstr "Пол: "
 
-#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17
-#: ../../boot.php:1228
+#: ../../mod/directory.php:136
+#: ../../addon/forumdirectory/forumdirectory.php:158
+#: ../../include/profile_advanced.php:17 ../../boot.php:1280
 msgid "Gender:"
 msgstr "Пол:"
 
-#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37
-#: ../../boot.php:1231
+#: ../../mod/directory.php:138
+#: ../../addon/forumdirectory/forumdirectory.php:160
+#: ../../include/profile_advanced.php:37 ../../boot.php:1283
 msgid "Status:"
 msgstr "Статус:"
 
-#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48
-#: ../../boot.php:1233
+#: ../../mod/directory.php:140
+#: ../../addon/forumdirectory/forumdirectory.php:162
+#: ../../include/profile_advanced.php:48 ../../boot.php:1285
 msgid "Homepage:"
 msgstr "Домашняя страничка:"
 
-#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
+#: ../../mod/directory.php:142
+#: ../../addon/forumdirectory/forumdirectory.php:164
+#: ../../include/profile_advanced.php:58
 msgid "About:"
 msgstr "О себе:"
 
 #: ../../mod/directory.php:180
+#: ../../addon/forumdirectory/forumdirectory.php:202
 msgid "No entries (some entries may be hidden)."
 msgstr "Нет записей (некоторые записи могут быть скрыты)."
 
@@ -4672,7 +4886,7 @@ msgstr "Запрос ошибочен или был отозван."
 msgid "Unable to set contact photo."
 msgstr "Не удается установить фото контакта."
 
-#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608
+#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:619
 #: ../../include/conversation.php:171
 #, php-format
 msgid "%1$s is now friends with %2$s"
@@ -4698,7 +4912,7 @@ msgstr "Запись контакта не найдена для вас на н
 #: ../../mod/dfrn_confirm.php:618
 #, php-format
 msgid "Site public key not available in contact record for URL %s."
-msgstr ""
+msgstr "Публичный ключ недоступен в записи о контакте по ссылке %s"
 
 #: ../../mod/dfrn_confirm.php:638
 msgid ""
@@ -4725,98 +4939,122 @@ msgid "%1$s has joined %2$s"
 msgstr ""
 
 #: ../../addon/fromgplus/fromgplus.php:29
+#: ../../addon.old/fromgplus/fromgplus.php:29
 msgid "Google+ Import Settings"
 msgstr ""
 
 #: ../../addon/fromgplus/fromgplus.php:32
+#: ../../addon.old/fromgplus/fromgplus.php:32
 msgid "Enable Google+ Import"
 msgstr ""
 
 #: ../../addon/fromgplus/fromgplus.php:35
+#: ../../addon.old/fromgplus/fromgplus.php:35
 msgid "Google Account ID"
 msgstr ""
 
 #: ../../addon/fromgplus/fromgplus.php:55
+#: ../../addon.old/fromgplus/fromgplus.php:55
 msgid "Google+ Import Settings saved."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:523
+#: ../../addon.old/facebook/facebook.php:523
 msgid "Facebook disabled"
 msgstr "Facebook отключен"
 
 #: ../../addon/facebook/facebook.php:528
+#: ../../addon.old/facebook/facebook.php:528
 msgid "Updating contacts"
 msgstr "Обновление контактов"
 
 #: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192
+#: ../../addon.old/facebook/facebook.php:551
+#: ../../addon.old/fbpost/fbpost.php:192
 msgid "Facebook API key is missing."
 msgstr "Отсутствует ключ Facebook API."
 
 #: ../../addon/facebook/facebook.php:558
+#: ../../addon.old/facebook/facebook.php:558
 msgid "Facebook Connect"
 msgstr "Facebook подключение"
 
 #: ../../addon/facebook/facebook.php:564
+#: ../../addon.old/facebook/facebook.php:564
 msgid "Install Facebook connector for this account."
 msgstr "Установить Facebook Connector для этого аккаунта."
 
 #: ../../addon/facebook/facebook.php:571
+#: ../../addon.old/facebook/facebook.php:571
 msgid "Remove Facebook connector"
 msgstr "Удалить Facebook Connector"
 
 #: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217
+#: ../../addon.old/facebook/facebook.php:576
+#: ../../addon.old/fbpost/fbpost.php:217
 msgid ""
 "Re-authenticate [This is necessary whenever your Facebook password is "
 "changed.]"
-msgstr ""
+msgstr "Переаутентификация [Это необходимо, если вы изменили пароль на Facebook.]"
 
 #: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224
+#: ../../addon.old/facebook/facebook.php:583
+#: ../../addon.old/fbpost/fbpost.php:224
 msgid "Post to Facebook by default"
 msgstr "Отправлять на Facebook по умолчанию"
 
 #: ../../addon/facebook/facebook.php:589
+#: ../../addon.old/facebook/facebook.php:589
 msgid ""
 "Facebook friend linking has been disabled on this site. The following "
 "settings will have no effect."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:593
+#: ../../addon.old/facebook/facebook.php:593
 msgid ""
 "Facebook friend linking has been disabled on this site. If you disable it, "
 "you will be unable to re-enable it."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:596
+#: ../../addon.old/facebook/facebook.php:596
 msgid "Link all your Facebook friends and conversations on this website"
-msgstr ""
+msgstr "Прикрепите своих друзей и общение с Facebook на этот сайт"
 
 #: ../../addon/facebook/facebook.php:598
+#: ../../addon.old/facebook/facebook.php:598
 msgid ""
 "Facebook conversations consist of your <em>profile wall</em> and your friend"
 " <em>stream</em>."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:599
+#: ../../addon.old/facebook/facebook.php:599
 msgid "On this website, your Facebook friend stream is only visible to you."
-msgstr ""
+msgstr "Facebook-лента друзей видна только вам."
 
 #: ../../addon/facebook/facebook.php:600
+#: ../../addon.old/facebook/facebook.php:600
 msgid ""
 "The following settings determine the privacy of your Facebook profile wall "
 "on this website."
-msgstr ""
+msgstr "Следующие настройки определяют параметры приватности вашей стены с Facebook на этом сайте."
 
 #: ../../addon/facebook/facebook.php:604
+#: ../../addon.old/facebook/facebook.php:604
 msgid ""
 "On this website your Facebook profile wall conversations will only be "
 "visible to you"
-msgstr ""
+msgstr "Ваша лента профиля Facebook будет видна только вам"
 
 #: ../../addon/facebook/facebook.php:609
+#: ../../addon.old/facebook/facebook.php:609
 msgid "Do not import your Facebook profile wall conversations"
 msgstr "Не импортировать Facebook разговоров с Вашей страницы"
 
 #: ../../addon/facebook/facebook.php:611
+#: ../../addon.old/facebook/facebook.php:611
 msgid ""
 "If you choose to link conversations and leave both of these boxes unchecked,"
 " your Facebook profile wall will be merged with your profile wall on this "
@@ -4825,22 +5063,29 @@ msgid ""
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:616
+#: ../../addon.old/facebook/facebook.php:616
 msgid "Comma separated applications to ignore"
 msgstr "Игнорировать приложения (список через запятую)"
 
 #: ../../addon/facebook/facebook.php:700
+#: ../../addon.old/facebook/facebook.php:700
 msgid "Problems with Facebook Real-Time Updates"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:729
+#: ../../addon.old/facebook/facebook.php:729
 msgid "Facebook Connector Settings"
 msgstr "Настройки подключения Facebook"
 
 #: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255
+#: ../../addon.old/facebook/facebook.php:744
+#: ../../addon.old/fbpost/fbpost.php:255
 msgid "Facebook API Key"
 msgstr "Facebook API Key"
 
 #: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262
+#: ../../addon.old/facebook/facebook.php:754
+#: ../../addon.old/fbpost/fbpost.php:262
 msgid ""
 "Error: it appears that you have specified the App-ID and -Secret in your "
 ".htconfig.php file. As long as they are specified there, they cannot be set "
@@ -4848,92 +5093,123 @@ msgid ""
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:759
+#: ../../addon.old/facebook/facebook.php:759
 msgid ""
 "Error: the given API Key seems to be incorrect (the application access token"
 " could not be retrieved)."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:761
+#: ../../addon.old/facebook/facebook.php:761
 msgid "The given API Key seems to work correctly."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:763
+#: ../../addon.old/facebook/facebook.php:763
 msgid ""
 "The correctness of the API Key could not be detected. Something strange's "
 "going on."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264
+#: ../../addon.old/facebook/facebook.php:766
+#: ../../addon.old/fbpost/fbpost.php:264
 msgid "App-ID / API-Key"
 msgstr "App-ID / API-Key"
 
 #: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265
+#: ../../addon.old/facebook/facebook.php:767
+#: ../../addon.old/fbpost/fbpost.php:265
 msgid "Application secret"
 msgstr "Секрет приложения"
 
 #: ../../addon/facebook/facebook.php:768
+#: ../../addon.old/facebook/facebook.php:768
 #, php-format
 msgid "Polling Interval in minutes (minimum %1$s minutes)"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:769
+#: ../../addon.old/facebook/facebook.php:769
 msgid ""
 "Synchronize comments (no comments on Facebook are missed, at the cost of "
 "increased system load)"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:773
+#: ../../addon.old/facebook/facebook.php:773
 msgid "Real-Time Updates"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:777
+#: ../../addon.old/facebook/facebook.php:777
 msgid "Real-Time Updates are activated."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:778
+#: ../../addon.old/facebook/facebook.php:778
 msgid "Deactivate Real-Time Updates"
 msgstr "Отключить Real-Time обновления"
 
 #: ../../addon/facebook/facebook.php:780
+#: ../../addon.old/facebook/facebook.php:780
 msgid "Real-Time Updates not activated."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:780
+#: ../../addon.old/facebook/facebook.php:780
 msgid "Activate Real-Time Updates"
 msgstr "Активировать Real-Time обновления"
 
 #: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282
 #: ../../addon/dav/friendica/layout.fnk.php:361
+#: ../../addon.old/facebook/facebook.php:799
+#: ../../addon.old/fbpost/fbpost.php:282
+#: ../../addon.old/dav/friendica/layout.fnk.php:361
 msgid "The new values have been saved."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301
+#: ../../addon.old/facebook/facebook.php:823
+#: ../../addon.old/fbpost/fbpost.php:301
 msgid "Post to Facebook"
 msgstr "Отправить на Facebook"
 
 #: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399
+#: ../../addon.old/facebook/facebook.php:921
+#: ../../addon.old/fbpost/fbpost.php:399
 msgid ""
 "Post to Facebook cancelled because of multi-network access permission "
 "conflict."
 msgstr "Отправка на Facebook отменена из-за конфликта разрешений доступа разных сетей."
 
 #: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610
+#: ../../addon.old/facebook/facebook.php:1149
+#: ../../addon.old/fbpost/fbpost.php:610
 msgid "View on Friendica"
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643
+#: ../../addon.old/facebook/facebook.php:1182
+#: ../../addon.old/fbpost/fbpost.php:643
 msgid "Facebook post failed. Queued for retry."
 msgstr "Ошибка отправки сообщения на Facebook. В очереди на еще одну попытку."
 
 #: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683
+#: ../../addon.old/facebook/facebook.php:1222
+#: ../../addon.old/fbpost/fbpost.php:683
 msgid "Your Facebook connection became invalid. Please Re-authenticate."
 msgstr ""
 
 #: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684
+#: ../../addon.old/facebook/facebook.php:1223
+#: ../../addon.old/fbpost/fbpost.php:684
 msgid "Facebook connection became invalid"
 msgstr "Facebook подключение не удалось"
 
 #: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685
+#: ../../addon.old/facebook/facebook.php:1224
+#: ../../addon.old/fbpost/fbpost.php:685
 #, php-format
 msgid ""
 "Hi %1$s,\n"
@@ -4942,70 +5218,67 @@ msgid ""
 msgstr ""
 
 #: ../../addon/snautofollow/snautofollow.php:32
+#: ../../addon.old/snautofollow/snautofollow.php:32
 msgid "StatusNet AutoFollow settings updated."
 msgstr ""
 
 #: ../../addon/snautofollow/snautofollow.php:56
+#: ../../addon.old/snautofollow/snautofollow.php:56
 msgid "StatusNet AutoFollow Settings"
 msgstr ""
 
 #: ../../addon/snautofollow/snautofollow.php:58
+#: ../../addon.old/snautofollow/snautofollow.php:58
 msgid "Automatically follow any StatusNet followers/mentioners"
 msgstr ""
 
-#: ../../addon/bg/bg.php:51
-msgid "Bg settings updated."
-msgstr ""
-
-#: ../../addon/bg/bg.php:82
-msgid "Bg Settings"
-msgstr ""
-
-#: ../../addon/bg/bg.php:84 ../../addon/numfriends/numfriends.php:79
-msgid "How many contacts to display on profile sidebar"
-msgstr ""
-
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:260
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:278
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
 msgid "Lifetime of the cache (in hours)"
 msgstr ""
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:265
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:283
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
 msgid "Cache Statistics"
 msgstr ""
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:268
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:286
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
 msgid "Number of items"
 msgstr ""
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:270
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:288
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
 msgid "Size of the cache"
 msgstr ""
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:272
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:290
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
 msgid "Delete the whole cache"
 msgstr ""
 
-#: ../../addon/fbpost/fbpost.php:172
+#: ../../addon/fbpost/fbpost.php:172 ../../addon.old/fbpost/fbpost.php:172
 msgid "Facebook Post disabled"
 msgstr ""
 
-#: ../../addon/fbpost/fbpost.php:199
+#: ../../addon/fbpost/fbpost.php:199 ../../addon.old/fbpost/fbpost.php:199
 msgid "Facebook Post"
 msgstr ""
 
-#: ../../addon/fbpost/fbpost.php:205
+#: ../../addon/fbpost/fbpost.php:205 ../../addon.old/fbpost/fbpost.php:205
 msgid "Install Facebook Post connector for this account."
 msgstr ""
 
-#: ../../addon/fbpost/fbpost.php:212
+#: ../../addon/fbpost/fbpost.php:212 ../../addon.old/fbpost/fbpost.php:212
 msgid "Remove Facebook Post connector"
 msgstr ""
 
-#: ../../addon/fbpost/fbpost.php:240
+#: ../../addon/fbpost/fbpost.php:240 ../../addon.old/fbpost/fbpost.php:240
 msgid "Facebook Post Settings"
 msgstr ""
 
 #: ../../addon/widgets/widget_like.php:58
+#: ../../addon.old/widgets/widget_like.php:58
 #, php-format
 msgid "%d person likes this"
 msgid_plural "%d people like this"
@@ -5014,6 +5287,7 @@ msgstr[1] ""
 msgstr[2] ""
 
 #: ../../addon/widgets/widget_like.php:61
+#: ../../addon.old/widgets/widget_like.php:61
 #, php-format
 msgid "%d person doesn't like this"
 msgid_plural "%d people don't like this"
@@ -5022,225 +5296,263 @@ msgstr[1] ""
 msgstr[2] ""
 
 #: ../../addon/widgets/widget_friendheader.php:40
+#: ../../addon.old/widgets/widget_friendheader.php:40
 msgid "Get added to this list!"
 msgstr ""
 
-#: ../../addon/widgets/widgets.php:56
+#: ../../addon/widgets/widgets.php:56 ../../addon.old/widgets/widgets.php:56
 msgid "Generate new key"
 msgstr "Сгенерировать новый ключ"
 
-#: ../../addon/widgets/widgets.php:59
+#: ../../addon/widgets/widgets.php:59 ../../addon.old/widgets/widgets.php:59
 msgid "Widgets key"
 msgstr "Ключ виджетов"
 
-#: ../../addon/widgets/widgets.php:61
+#: ../../addon/widgets/widgets.php:61 ../../addon.old/widgets/widgets.php:61
 msgid "Widgets available"
 msgstr "Виджеты доступны"
 
 #: ../../addon/widgets/widget_friends.php:40
+#: ../../addon.old/widgets/widget_friends.php:40
 msgid "Connect on Friendica!"
 msgstr "Подключены к Friendica!"
 
 #: ../../addon/morepokes/morepokes.php:19
+#: ../../addon.old/morepokes/morepokes.php:19
 msgid "bitchslap"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:19
+#: ../../addon.old/morepokes/morepokes.php:19
 msgid "bitchslapped"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:20
+#: ../../addon.old/morepokes/morepokes.php:20
 msgid "shag"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:20
+#: ../../addon.old/morepokes/morepokes.php:20
 msgid "shagged"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:21
+#: ../../addon.old/morepokes/morepokes.php:21
 msgid "do something obscenely biological to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:21
+#: ../../addon.old/morepokes/morepokes.php:21
 msgid "did something obscenely biological to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:22
+#: ../../addon.old/morepokes/morepokes.php:22
 msgid "point out the poke feature to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:22
+#: ../../addon.old/morepokes/morepokes.php:22
 msgid "pointed out the poke feature to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:23
+#: ../../addon.old/morepokes/morepokes.php:23
 msgid "declare undying love for"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:23
+#: ../../addon.old/morepokes/morepokes.php:23
 msgid "declared undying love for"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:24
+#: ../../addon.old/morepokes/morepokes.php:24
 msgid "patent"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:24
+#: ../../addon.old/morepokes/morepokes.php:24
 msgid "patented"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:25
+#: ../../addon.old/morepokes/morepokes.php:25
 msgid "stroke beard"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:25
+#: ../../addon.old/morepokes/morepokes.php:25
 msgid "stroked their beard at"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:26
+#: ../../addon.old/morepokes/morepokes.php:26
 msgid ""
 "bemoan the declining standards of modern secondary and tertiary education to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:26
+#: ../../addon.old/morepokes/morepokes.php:26
 msgid ""
 "bemoans the declining standards of modern secondary and tertiary education "
 "to"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:27
+#: ../../addon.old/morepokes/morepokes.php:27
 msgid "hug"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:27
+#: ../../addon.old/morepokes/morepokes.php:27
 msgid "hugged"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:28
+#: ../../addon.old/morepokes/morepokes.php:28
 msgid "kiss"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:28
+#: ../../addon.old/morepokes/morepokes.php:28
 msgid "kissed"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:29
+#: ../../addon.old/morepokes/morepokes.php:29
 msgid "raise eyebrows at"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:29
+#: ../../addon.old/morepokes/morepokes.php:29
 msgid "raised their eyebrows at"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:30
+#: ../../addon.old/morepokes/morepokes.php:30
 msgid "insult"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:30
+#: ../../addon.old/morepokes/morepokes.php:30
 msgid "insulted"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:31
+#: ../../addon.old/morepokes/morepokes.php:31
 msgid "praise"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:31
+#: ../../addon.old/morepokes/morepokes.php:31
 msgid "praised"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:32
+#: ../../addon.old/morepokes/morepokes.php:32
 msgid "be dubious of"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:32
+#: ../../addon.old/morepokes/morepokes.php:32
 msgid "was dubious of"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:33
+#: ../../addon.old/morepokes/morepokes.php:33
 msgid "eat"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:33
+#: ../../addon.old/morepokes/morepokes.php:33
 msgid "ate"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:34
+#: ../../addon.old/morepokes/morepokes.php:34
 msgid "giggle and fawn at"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:34
+#: ../../addon.old/morepokes/morepokes.php:34
 msgid "giggled and fawned at"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:35
+#: ../../addon.old/morepokes/morepokes.php:35
 msgid "doubt"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:35
+#: ../../addon.old/morepokes/morepokes.php:35
 msgid "doubted"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:36
+#: ../../addon.old/morepokes/morepokes.php:36
 msgid "glare"
 msgstr ""
 
 #: ../../addon/morepokes/morepokes.php:36
+#: ../../addon.old/morepokes/morepokes.php:36
 msgid "glared at"
 msgstr ""
 
-#: ../../addon/yourls/yourls.php:55
+#: ../../addon/yourls/yourls.php:55 ../../addon.old/yourls/yourls.php:55
 msgid "YourLS Settings"
 msgstr ""
 
-#: ../../addon/yourls/yourls.php:57
+#: ../../addon/yourls/yourls.php:57 ../../addon.old/yourls/yourls.php:57
 msgid "URL: http://"
 msgstr "URL: http://"
 
-#: ../../addon/yourls/yourls.php:62
+#: ../../addon/yourls/yourls.php:62 ../../addon.old/yourls/yourls.php:62
 msgid "Username:"
 msgstr "Имя:"
 
-#: ../../addon/yourls/yourls.php:67
+#: ../../addon/yourls/yourls.php:67 ../../addon.old/yourls/yourls.php:67
 msgid "Password:"
 msgstr "Пароль:"
 
-#: ../../addon/yourls/yourls.php:72
+#: ../../addon/yourls/yourls.php:72 ../../addon.old/yourls/yourls.php:72
 msgid "Use SSL "
 msgstr "Использовать SSL"
 
-#: ../../addon/yourls/yourls.php:92
+#: ../../addon/yourls/yourls.php:92 ../../addon.old/yourls/yourls.php:92
 msgid "yourls Settings saved."
 msgstr "Настройки сохранены."
 
-#: ../../addon/ljpost/ljpost.php:39
+#: ../../addon/ljpost/ljpost.php:39 ../../addon.old/ljpost/ljpost.php:39
 msgid "Post to LiveJournal"
 msgstr ""
 
-#: ../../addon/ljpost/ljpost.php:70
+#: ../../addon/ljpost/ljpost.php:70 ../../addon.old/ljpost/ljpost.php:70
 msgid "LiveJournal Post Settings"
 msgstr ""
 
-#: ../../addon/ljpost/ljpost.php:72
+#: ../../addon/ljpost/ljpost.php:72 ../../addon.old/ljpost/ljpost.php:72
 msgid "Enable LiveJournal Post Plugin"
 msgstr "Включить LiveJournal  плагин сообщений"
 
-#: ../../addon/ljpost/ljpost.php:77
+#: ../../addon/ljpost/ljpost.php:77 ../../addon.old/ljpost/ljpost.php:77
 msgid "LiveJournal username"
 msgstr ""
 
-#: ../../addon/ljpost/ljpost.php:82
+#: ../../addon/ljpost/ljpost.php:82 ../../addon.old/ljpost/ljpost.php:82
 msgid "LiveJournal password"
 msgstr ""
 
-#: ../../addon/ljpost/ljpost.php:87
+#: ../../addon/ljpost/ljpost.php:87 ../../addon.old/ljpost/ljpost.php:87
 msgid "Post to LiveJournal by default"
 msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:78
+#: ../../addon/nsfw/nsfw.php:78 ../../addon.old/nsfw/nsfw.php:78
 msgid "Not Safe For Work (General Purpose Content Filter) settings"
 msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:80
+#: ../../addon/nsfw/nsfw.php:80 ../../addon.old/nsfw/nsfw.php:80
 msgid ""
 "This plugin looks in posts for the words/text you specify below, and "
 "collapses any content containing those keywords so it is not displayed at "
@@ -5250,98 +5562,118 @@ msgid ""
 " can thereby be used as a general purpose content filter."
 msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:81
+#: ../../addon/nsfw/nsfw.php:81 ../../addon.old/nsfw/nsfw.php:81
 msgid "Enable Content filter"
 msgstr "Включить фильтр содержимого"
 
-#: ../../addon/nsfw/nsfw.php:84
+#: ../../addon/nsfw/nsfw.php:84 ../../addon.old/nsfw/nsfw.php:84
 msgid "Comma separated list of keywords to hide"
 msgstr "ключевые слова, которые скрыть (список через запятую)"
 
-#: ../../addon/nsfw/nsfw.php:89
+#: ../../addon/nsfw/nsfw.php:89 ../../addon.old/nsfw/nsfw.php:89
 msgid "Use /expression/ to provide regular expressions"
 msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:105
+#: ../../addon/nsfw/nsfw.php:105 ../../addon.old/nsfw/nsfw.php:105
 msgid "NSFW Settings saved."
 msgstr "NSFW Настройки сохранены."
 
-#: ../../addon/nsfw/nsfw.php:157
+#: ../../addon/nsfw/nsfw.php:157 ../../addon.old/nsfw/nsfw.php:157
 #, php-format
 msgid "%s - Click to open/close"
 msgstr "%s - Нажмите для открытия / закрытия"
 
-#: ../../addon/page/page.php:61 ../../addon/page/page.php:91
-#: ../../addon/forumlist/forumlist.php:55
+#: ../../addon/page/page.php:62 ../../addon/page/page.php:92
+#: ../../addon/forumlist/forumlist.php:60 ../../addon.old/page/page.php:62
+#: ../../addon.old/page/page.php:92 ../../addon.old/forumlist/forumlist.php:60
 msgid "Forums"
 msgstr "Форумы"
 
-#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:89
+#: ../../addon/page/page.php:130 ../../addon/forumlist/forumlist.php:94
+#: ../../addon.old/page/page.php:130
+#: ../../addon.old/forumlist/forumlist.php:94
 msgid "Forums:"
 msgstr ""
 
-#: ../../addon/page/page.php:165
+#: ../../addon/page/page.php:166 ../../addon.old/page/page.php:166
 msgid "Page settings updated."
 msgstr ""
 
-#: ../../addon/page/page.php:194
+#: ../../addon/page/page.php:195 ../../addon.old/page/page.php:195
 msgid "Page Settings"
 msgstr ""
 
-#: ../../addon/page/page.php:196
+#: ../../addon/page/page.php:197 ../../addon.old/page/page.php:197
 msgid "How many forums to display on sidebar without paging"
 msgstr ""
 
-#: ../../addon/page/page.php:199
+#: ../../addon/page/page.php:200 ../../addon.old/page/page.php:200
 msgid "Randomise Page/Forum list"
 msgstr ""
 
-#: ../../addon/page/page.php:202
+#: ../../addon/page/page.php:203 ../../addon.old/page/page.php:203
 msgid "Show pages/forums on profile page"
 msgstr ""
 
-#: ../../addon/planets/planets.php:150
+#: ../../addon/planets/planets.php:150 ../../addon.old/planets/planets.php:150
 msgid "Planets Settings"
 msgstr ""
 
-#: ../../addon/planets/planets.php:152
+#: ../../addon/planets/planets.php:152 ../../addon.old/planets/planets.php:152
 msgid "Enable Planets Plugin"
 msgstr ""
 
+#: ../../addon/forumdirectory/forumdirectory.php:22
+msgid "Forum Directory"
+msgstr ""
+
 #: ../../addon/communityhome/communityhome.php:28
 #: ../../addon/communityhome/communityhome.php:34
 #: ../../addon/communityhome/twillingham/communityhome.php:28
 #: ../../addon/communityhome/twillingham/communityhome.php:34
-#: ../../include/nav.php:64 ../../boot.php:912
+#: ../../include/nav.php:64 ../../boot.php:949
+#: ../../addon.old/communityhome/communityhome.php:28
+#: ../../addon.old/communityhome/communityhome.php:34
+#: ../../addon.old/communityhome/twillingham/communityhome.php:28
+#: ../../addon.old/communityhome/twillingham/communityhome.php:34
 msgid "Login"
 msgstr "Вход"
 
 #: ../../addon/communityhome/communityhome.php:29
 #: ../../addon/communityhome/twillingham/communityhome.php:29
+#: ../../addon.old/communityhome/communityhome.php:29
+#: ../../addon.old/communityhome/twillingham/communityhome.php:29
 msgid "OpenID"
 msgstr "OpenID"
 
 #: ../../addon/communityhome/communityhome.php:38
 #: ../../addon/communityhome/twillingham/communityhome.php:38
+#: ../../addon.old/communityhome/communityhome.php:38
+#: ../../addon.old/communityhome/twillingham/communityhome.php:38
 msgid "Latest users"
 msgstr ""
 
 #: ../../addon/communityhome/communityhome.php:81
 #: ../../addon/communityhome/twillingham/communityhome.php:81
+#: ../../addon.old/communityhome/communityhome.php:81
+#: ../../addon.old/communityhome/twillingham/communityhome.php:81
 msgid "Most active users"
 msgstr "Самые активные пользователи"
 
 #: ../../addon/communityhome/communityhome.php:98
+#: ../../addon.old/communityhome/communityhome.php:98
 msgid "Latest photos"
 msgstr ""
 
 #: ../../addon/communityhome/communityhome.php:133
+#: ../../addon.old/communityhome/communityhome.php:133
 msgid "Latest likes"
 msgstr ""
 
 #: ../../addon/communityhome/communityhome.php:155
-#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1437
+#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1440
 #: ../../include/conversation.php:117 ../../include/conversation.php:245
+#: ../../addon.old/communityhome/communityhome.php:155
 msgid "event"
 msgstr "мероприятие"
 
@@ -5351,107 +5683,141 @@ msgstr "мероприятие"
 #: ../../addon/dav/common/wdcal_backend.inc.php:206
 #: ../../addon/dav/common/wdcal_backend.inc.php:214
 #: ../../addon/dav/common/wdcal_backend.inc.php:229
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:92
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:166
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:178
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:206
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:214
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:229
 msgid "No access"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:30
 #: ../../addon/dav/common/wdcal_edit.inc.php:738
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:30
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:738
 msgid "Could not open component for editing"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:140
 #: ../../addon/dav/friendica/layout.fnk.php:143
 #: ../../addon/dav/friendica/layout.fnk.php:422
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:140
+#: ../../addon.old/dav/friendica/layout.fnk.php:143
+#: ../../addon.old/dav/friendica/layout.fnk.php:422
 msgid "Go back to the calendar"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:144
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
 msgid "Event data"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:146
 #: ../../addon/dav/friendica/main.php:239
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:146
+#: ../../addon.old/dav/friendica/main.php:239
 msgid "Calendar"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:163
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
 msgid "Special color"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:169
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
 msgid "Subject"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:173
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
 msgid "Starts"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:178
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
 msgid "Ends"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:185
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
 msgid "Description"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:188
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
 msgid "Recurrence"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:190
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
 msgid "Frequency"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:194
 #: ../../include/contact_selectors.php:59
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:194
 msgid "Daily"
 msgstr "Ежедневно"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:197
 #: ../../include/contact_selectors.php:60
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:197
 msgid "Weekly"
 msgstr "Еженедельно"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:200
 #: ../../include/contact_selectors.php:61
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:200
 msgid "Monthly"
 msgstr "Ежемесячно"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:203
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
 msgid "Yearly"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:214
 #: ../../include/datetime.php:288
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
 msgid "days"
 msgstr "дней"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:215
 #: ../../include/datetime.php:287
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
 msgid "weeks"
 msgstr "недель"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:216
 #: ../../include/datetime.php:286
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
 msgid "months"
 msgstr "мес."
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:217
 #: ../../include/datetime.php:285
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
 msgid "years"
 msgstr "лет"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:218
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
 msgid "Interval"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:218
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
 msgid "All %select% %time%"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:222
 #: ../../addon/dav/common/wdcal_edit.inc.php:260
 #: ../../addon/dav/common/wdcal_edit.inc.php:481
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:222
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:260
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:481
 msgid "Days"
 msgstr ""
 
@@ -5459,317 +5825,408 @@ msgstr ""
 #: ../../addon/dav/common/wdcal_edit.inc.php:254
 #: ../../addon/dav/common/wdcal_edit.inc.php:270
 #: ../../addon/dav/common/wdcal_edit.inc.php:293
-#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:293
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:305
 msgid "Sunday"
 msgstr "Воскресенье"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:235
 #: ../../addon/dav/common/wdcal_edit.inc.php:274
-#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
 msgid "Monday"
 msgstr "Понедельник"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:238
-#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
 msgid "Tuesday"
 msgstr "Вторник"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:241
-#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
 msgid "Wednesday"
 msgstr "Среда"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:244
-#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
 msgid "Thursday"
 msgstr "Четверг"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:247
-#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
 msgid "Friday"
 msgstr "Пятница"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:250
-#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:917
+#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
 msgid "Saturday"
 msgstr "Суббота"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:297
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
 msgid "First day of week:"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:350
 #: ../../addon/dav/common/wdcal_edit.inc.php:373
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:350
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:373
 msgid "Day of month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:354
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
 msgid "#num#th of each month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:357
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:357
 msgid "#num#th-last of each month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:360
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:360
 msgid "#num#th #wkday# of each month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:363
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:363
 msgid "#num#th-last #wkday# of each month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:372
 #: ../../addon/dav/friendica/layout.fnk.php:255
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:372
+#: ../../addon.old/dav/friendica/layout.fnk.php:255
 msgid "Month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:377
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:377
 msgid "#num#th of the given month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:380
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:380
 msgid "#num#th-last of the given month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:383
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:383
 msgid "#num#th #wkday# of the given month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:386
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:386
 msgid "#num#th-last #wkday# of the given month"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:413
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
 msgid "Repeat until"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:417
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
 msgid "Infinite"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:420
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
 msgid "Until the following date"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:423
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
 msgid "Number of times"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:429
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
 msgid "Exceptions"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:432
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
 msgid "none"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:449
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
 msgid "Notification"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:466
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
 msgid "Notify by"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:469
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
 msgid "E-Mail"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:470
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
 msgid "On Friendica / Display"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:474
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
 msgid "Time"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:478
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
 msgid "Hours"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:479
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
 msgid "Minutes"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:480
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
 msgid "Seconds"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:482
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
 msgid "Weeks"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:485
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
 msgid "before the"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:486
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
 msgid "start of the event"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:487
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
 msgid "end of the event"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:492
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
 msgid "Add a notification"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:687
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:687
 msgid "The event #name# will start at #date"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:696
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
 msgid "#name# is about to begin."
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:769
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
 msgid "Saved"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_configuration.php:148
+#: ../../addon.old/dav/common/wdcal_configuration.php:148
 msgid "U.S. Time Format (mm/dd/YYYY)"
 msgstr ""
 
 #: ../../addon/dav/common/wdcal_configuration.php:243
+#: ../../addon.old/dav/common/wdcal_configuration.php:243
 msgid "German Time Format (dd.mm.YYYY)"
 msgstr ""
 
 #: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
+#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39
 msgid "Private Events"
 msgstr ""
 
 #: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
+#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46
 msgid "Private Addressbooks"
 msgstr ""
 
 #: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
+#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
 msgid "Friendica-Native events"
 msgstr ""
 
 #: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
 #: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
 msgid "Friendica-Contacts"
 msgstr ""
 
 #: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
 msgid "Your Friendica-Contacts"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:99
 #: ../../addon/dav/friendica/layout.fnk.php:136
+#: ../../addon.old/dav/friendica/layout.fnk.php:99
+#: ../../addon.old/dav/friendica/layout.fnk.php:136
 msgid ""
 "Something went wrong when trying to import the file. Sorry. Maybe some "
 "events were imported anyway."
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:131
+#: ../../addon.old/dav/friendica/layout.fnk.php:131
 msgid "Something went wrong when trying to import the file. Sorry."
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:134
+#: ../../addon.old/dav/friendica/layout.fnk.php:134
 msgid "The ICS-File has been imported."
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:138
+#: ../../addon.old/dav/friendica/layout.fnk.php:138
 msgid "No file was uploaded."
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:147
+#: ../../addon.old/dav/friendica/layout.fnk.php:147
 msgid "Import a ICS-file"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:150
+#: ../../addon.old/dav/friendica/layout.fnk.php:150
 msgid "ICS-File"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:151
+#: ../../addon.old/dav/friendica/layout.fnk.php:151
 msgid "Overwrite all #num# existing events"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:228
+#: ../../addon.old/dav/friendica/layout.fnk.php:228
 msgid "New event"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:232
+#: ../../addon.old/dav/friendica/layout.fnk.php:232
 msgid "Today"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:241
+#: ../../addon.old/dav/friendica/layout.fnk.php:241
 msgid "Day"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:248
+#: ../../addon.old/dav/friendica/layout.fnk.php:248
 msgid "Week"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:260
+#: ../../addon.old/dav/friendica/layout.fnk.php:260
 msgid "Reload"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:271
+#: ../../addon.old/dav/friendica/layout.fnk.php:271
 msgid "Date"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:313
+#: ../../addon.old/dav/friendica/layout.fnk.php:313
 msgid "Error"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:380
+#: ../../addon.old/dav/friendica/layout.fnk.php:380
 msgid "The calendar has been updated."
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:393
+#: ../../addon.old/dav/friendica/layout.fnk.php:393
 msgid "The new calendar has been created."
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:417
+#: ../../addon.old/dav/friendica/layout.fnk.php:417
 msgid "The calendar has been deleted."
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:424
+#: ../../addon.old/dav/friendica/layout.fnk.php:424
 msgid "Calendar Settings"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:430
+#: ../../addon.old/dav/friendica/layout.fnk.php:430
 msgid "Date format"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:439
+#: ../../addon.old/dav/friendica/layout.fnk.php:439
 msgid "Time zone"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:445
+#: ../../addon.old/dav/friendica/layout.fnk.php:445
 msgid "Calendars"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:487
+#: ../../addon.old/dav/friendica/layout.fnk.php:487
 msgid "Create a new calendar"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:496
+#: ../../addon.old/dav/friendica/layout.fnk.php:496
 msgid "Limitations"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:500
 #: ../../addon/libravatar/libravatar.php:82
+#: ../../addon.old/dav/friendica/layout.fnk.php:500
+#: ../../addon.old/libravatar/libravatar.php:82
 msgid "Warning"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:504
+#: ../../addon.old/dav/friendica/layout.fnk.php:504
 msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:511
+#: ../../addon.old/dav/friendica/layout.fnk.php:511
 msgid "Synchronizing this calendar with the iPhone"
 msgstr ""
 
 #: ../../addon/dav/friendica/layout.fnk.php:522
+#: ../../addon.old/dav/friendica/layout.fnk.php:522
 msgid "Synchronizing your Friendica-Contacts with the iPhone"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:202
+#: ../../addon.old/dav/friendica/main.php:202
 msgid ""
 "The current version of this plugin has not been set up correctly. Please "
 "contact the system administrator of your installation of friendica to fix "
@@ -5777,52 +6234,65 @@ msgid ""
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:242
+#: ../../addon.old/dav/friendica/main.php:242
 msgid "Extended calendar with CalDAV-support"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:279
 #: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464
-#: ../../include/enotify.php:28 ../../include/notifier.php:710
+#: ../../include/enotify.php:28 ../../include/notifier.php:778
+#: ../../addon.old/dav/friendica/main.php:279
+#: ../../addon.old/dav/friendica/main.php:280
 msgid "noreply"
 msgstr "без ответа"
 
 #: ../../addon/dav/friendica/main.php:282
+#: ../../addon.old/dav/friendica/main.php:282
 msgid "Notification: "
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:309
+#: ../../addon.old/dav/friendica/main.php:309
 msgid "The database tables have been installed."
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:310
+#: ../../addon.old/dav/friendica/main.php:310
 msgid "An error occurred during the installation."
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:316
+#: ../../addon.old/dav/friendica/main.php:316
 msgid "The database tables have been updated."
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:317
+#: ../../addon.old/dav/friendica/main.php:317
 msgid "An error occurred during the update."
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:333
+#: ../../addon.old/dav/friendica/main.php:333
 msgid "No system-wide settings yet."
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:336
+#: ../../addon.old/dav/friendica/main.php:336
 msgid "Database status"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:339
+#: ../../addon.old/dav/friendica/main.php:339
 msgid "Installed"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:343
+#: ../../addon.old/dav/friendica/main.php:343
 msgid "Upgrade needed"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:343
+#: ../../addon.old/dav/friendica/main.php:343
 msgid ""
 "Please back up all calendar data (the tables beginning with dav_*) before "
 "proceeding. While all calendar events <i>should</i> be converted to the new "
@@ -5832,22 +6302,27 @@ msgid ""
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:343
+#: ../../addon.old/dav/friendica/main.php:343
 msgid "Upgrade"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:346
+#: ../../addon.old/dav/friendica/main.php:346
 msgid "Not installed"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:346
+#: ../../addon.old/dav/friendica/main.php:346
 msgid "Install"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:350
+#: ../../addon.old/dav/friendica/main.php:350
 msgid "Unknown"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:350
+#: ../../addon.old/dav/friendica/main.php:350
 msgid ""
 "Something really went wrong. I cannot recover from this state automatically,"
 " sorry. Please go to the database backend, back up the data, and delete all "
@@ -5856,38 +6331,47 @@ msgid ""
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:355
+#: ../../addon.old/dav/friendica/main.php:355
 msgid "Troubleshooting"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:356
+#: ../../addon.old/dav/friendica/main.php:356
 msgid "Manual creation of the database tables:"
 msgstr ""
 
 #: ../../addon/dav/friendica/main.php:357
+#: ../../addon.old/dav/friendica/main.php:357
 msgid "Show SQL-statements"
 msgstr ""
 
 #: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
 msgid "Private Calendar"
 msgstr ""
 
 #: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
 msgid "Friendica Events: Mine"
 msgstr ""
 
 #: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
 msgid "Friendica Events: Contacts"
 msgstr ""
 
 #: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
 msgid "Private Addresses"
 msgstr ""
 
 #: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
 msgid "Friendica Contacts"
 msgstr ""
 
 #: ../../addon/uhremotestorage/uhremotestorage.php:84
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
 #, php-format
 msgid ""
 "Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
@@ -5897,183 +6381,197 @@ msgid ""
 msgstr ""
 
 #: ../../addon/uhremotestorage/uhremotestorage.php:85
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
 msgid "Template URL (with {category})"
 msgstr ""
 
 #: ../../addon/uhremotestorage/uhremotestorage.php:86
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
 msgid "OAuth end-point"
 msgstr ""
 
 #: ../../addon/uhremotestorage/uhremotestorage.php:87
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
 msgid "Api"
 msgstr "Api"
 
 #: ../../addon/membersince/membersince.php:18
+#: ../../addon.old/membersince/membersince.php:18
 msgid "Member since:"
 msgstr "Зарегистрирован с:"
 
-#: ../../addon/tictac/tictac.php:20
+#: ../../addon/tictac/tictac.php:20 ../../addon.old/tictac/tictac.php:20
 msgid "Three Dimensional Tic-Tac-Toe"
 msgstr "Трехмерные крестики-нолики"
 
-#: ../../addon/tictac/tictac.php:53
+#: ../../addon/tictac/tictac.php:53 ../../addon.old/tictac/tictac.php:53
 msgid "3D Tic-Tac-Toe"
 msgstr "3D Tic-Tac-Toe"
 
-#: ../../addon/tictac/tictac.php:58
+#: ../../addon/tictac/tictac.php:58 ../../addon.old/tictac/tictac.php:58
 msgid "New game"
 msgstr "Новая игра"
 
-#: ../../addon/tictac/tictac.php:59
+#: ../../addon/tictac/tictac.php:59 ../../addon.old/tictac/tictac.php:59
 msgid "New game with handicap"
 msgstr "Новая игра с гандикапом"
 
-#: ../../addon/tictac/tictac.php:60
+#: ../../addon/tictac/tictac.php:60 ../../addon.old/tictac/tictac.php:60
 msgid ""
 "Three dimensional tic-tac-toe is just like the traditional game except that "
 "it is played on multiple levels simultaneously. "
 msgstr "Трехмерная игра в крестики-нолики точно такая же, как традиционная игра, за исключением того, что она играется на нескольких уровнях одновременно."
 
-#: ../../addon/tictac/tictac.php:61
+#: ../../addon/tictac/tictac.php:61 ../../addon.old/tictac/tictac.php:61
 msgid ""
 "In this case there are three levels. You win by getting three in a row on "
 "any level, as well as up, down, and diagonally across the different levels."
 msgstr "В этом случае существуют три уровня. Вы выиграете, поставив три в ряд на любом уровне, а также вверх, вниз и по диагонали на разных уровнях."
 
-#: ../../addon/tictac/tictac.php:63
+#: ../../addon/tictac/tictac.php:63 ../../addon.old/tictac/tictac.php:63
 msgid ""
 "The handicap game disables the center position on the middle level because "
 "the player claiming this square often has an unfair advantage."
 msgstr "Игра с гандикапом отключает центральное положение на среднем уровне, потому что игрок, занимающий эту площадь, часто имеет несправедливое преимущество."
 
-#: ../../addon/tictac/tictac.php:182
+#: ../../addon/tictac/tictac.php:182 ../../addon.old/tictac/tictac.php:182
 msgid "You go first..."
 msgstr "Вы хотите первым..."
 
-#: ../../addon/tictac/tictac.php:187
+#: ../../addon/tictac/tictac.php:187 ../../addon.old/tictac/tictac.php:187
 msgid "I'm going first this time..."
 msgstr "Я буду первым на этот раз..."
 
-#: ../../addon/tictac/tictac.php:193
+#: ../../addon/tictac/tictac.php:193 ../../addon.old/tictac/tictac.php:193
 msgid "You won!"
 msgstr "Вы выиграли!"
 
 #: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
+#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224
 msgid "\"Cat\" game!"
 msgstr "Игра \"Кошка\"!"
 
-#: ../../addon/tictac/tictac.php:222
+#: ../../addon/tictac/tictac.php:222 ../../addon.old/tictac/tictac.php:222
 msgid "I won!"
 msgstr "Я выиграл!"
 
 #: ../../addon/randplace/randplace.php:169
+#: ../../addon.old/randplace/randplace.php:169
 msgid "Randplace Settings"
 msgstr "Настройки Случайного места"
 
 #: ../../addon/randplace/randplace.php:171
+#: ../../addon.old/randplace/randplace.php:171
 msgid "Enable Randplace Plugin"
 msgstr "Включить Randplace  плагин"
 
-#: ../../addon/dwpost/dwpost.php:39
+#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39
 msgid "Post to Dreamwidth"
 msgstr ""
 
-#: ../../addon/dwpost/dwpost.php:70
+#: ../../addon/dwpost/dwpost.php:70 ../../addon.old/dwpost/dwpost.php:70
 msgid "Dreamwidth Post Settings"
 msgstr "Dreamwidth настройки сообщений"
 
-#: ../../addon/dwpost/dwpost.php:72
+#: ../../addon/dwpost/dwpost.php:72 ../../addon.old/dwpost/dwpost.php:72
 msgid "Enable dreamwidth Post Plugin"
 msgstr "Включить dreamwidth плагин сообщений"
 
-#: ../../addon/dwpost/dwpost.php:77
+#: ../../addon/dwpost/dwpost.php:77 ../../addon.old/dwpost/dwpost.php:77
 msgid "dreamwidth username"
 msgstr "dreamwidth имя пользователя"
 
-#: ../../addon/dwpost/dwpost.php:82
+#: ../../addon/dwpost/dwpost.php:82 ../../addon.old/dwpost/dwpost.php:82
 msgid "dreamwidth password"
 msgstr "dreamwidth пароль"
 
-#: ../../addon/dwpost/dwpost.php:87
+#: ../../addon/dwpost/dwpost.php:87 ../../addon.old/dwpost/dwpost.php:87
 msgid "Post to dreamwidth by default"
 msgstr ""
 
-#: ../../addon/drpost/drpost.php:35
-msgid "Post to Drupal"
+#: ../../addon/remote_permissions/remote_permissions.php:44
+msgid "Remote Permissions Settings"
 msgstr ""
 
-#: ../../addon/drpost/drpost.php:72
-msgid "Drupal Post Settings"
+#: ../../addon/remote_permissions/remote_permissions.php:45
+msgid ""
+"Allow recipients of your private posts to see the other recipients of the "
+"posts"
 msgstr ""
 
-#: ../../addon/drpost/drpost.php:74
-msgid "Enable Drupal Post Plugin"
-msgstr "Включить Drupal  плагин сообщений"
-
-#: ../../addon/drpost/drpost.php:79
-msgid "Drupal username"
-msgstr "Drupal имя пользователя"
-
-#: ../../addon/drpost/drpost.php:84
-msgid "Drupal password"
-msgstr "Drupal пароль"
+#: ../../addon/remote_permissions/remote_permissions.php:57
+msgid "Remote Permissions settings updated."
+msgstr ""
 
-#: ../../addon/drpost/drpost.php:89
-msgid "Post Type - article,page,or blog"
+#: ../../addon/remote_permissions/remote_permissions.php:177
+msgid "Visible to"
 msgstr ""
 
-#: ../../addon/drpost/drpost.php:94
-msgid "Drupal site URL"
-msgstr "Drupal site URL"
+#: ../../addon/remote_permissions/remote_permissions.php:177
+msgid "may only be a partial list"
+msgstr ""
 
-#: ../../addon/drpost/drpost.php:99
-msgid "Drupal site uses clean URLS"
+#: ../../addon/remote_permissions/remote_permissions.php:196
+msgid "Global"
 msgstr ""
 
-#: ../../addon/drpost/drpost.php:104
-msgid "Post to Drupal by default"
+#: ../../addon/remote_permissions/remote_permissions.php:196
+msgid "The posts of every user on this server show the post recipients"
 msgstr ""
 
-#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:201
-#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:189
-msgid "Post from Friendica"
-msgstr "Сообщение от Friendica"
+#: ../../addon/remote_permissions/remote_permissions.php:197
+msgid "Individual"
+msgstr ""
+
+#: ../../addon/remote_permissions/remote_permissions.php:197
+msgid "Each user chooses whether his/her posts show the post recipients"
+msgstr ""
 
 #: ../../addon/startpage/startpage.php:83
+#: ../../addon.old/startpage/startpage.php:83
 msgid "Startpage Settings"
 msgstr ""
 
 #: ../../addon/startpage/startpage.php:85
+#: ../../addon.old/startpage/startpage.php:85
 msgid "Home page to load after login  - leave blank for profile wall"
 msgstr ""
 
 #: ../../addon/startpage/startpage.php:88
+#: ../../addon.old/startpage/startpage.php:88
 msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
 msgstr ""
 
 #: ../../addon/geonames/geonames.php:143
+#: ../../addon.old/geonames/geonames.php:143
 msgid "Geonames settings updated."
 msgstr ""
 
 #: ../../addon/geonames/geonames.php:179
+#: ../../addon.old/geonames/geonames.php:179
 msgid "Geonames Settings"
 msgstr ""
 
 #: ../../addon/geonames/geonames.php:181
+#: ../../addon.old/geonames/geonames.php:181
 msgid "Enable Geonames Plugin"
 msgstr "Включить Geonames  плагин"
 
 #: ../../addon/public_server/public_server.php:126
 #: ../../addon/testdrive/testdrive.php:94
+#: ../../addon.old/public_server/public_server.php:126
+#: ../../addon.old/testdrive/testdrive.php:94
 #, php-format
 msgid "Your account on %s will expire in a few days."
 msgstr ""
 
 #: ../../addon/public_server/public_server.php:127
+#: ../../addon.old/public_server/public_server.php:127
 msgid "Your Friendica account is about to expire."
 msgstr ""
 
 #: ../../addon/public_server/public_server.php:128
+#: ../../addon.old/public_server/public_server.php:128
 #, php-format
 msgid ""
 "Hi %1$s,\n"
@@ -6082,90 +6580,105 @@ msgid ""
 msgstr ""
 
 #: ../../addon/js_upload/js_upload.php:43
+#: ../../addon.old/js_upload/js_upload.php:43
 msgid "Upload a file"
 msgstr "Загрузить файл"
 
 #: ../../addon/js_upload/js_upload.php:44
+#: ../../addon.old/js_upload/js_upload.php:44
 msgid "Drop files here to upload"
 msgstr "Перетащите файлы сюда для загрузки"
 
 #: ../../addon/js_upload/js_upload.php:46
+#: ../../addon.old/js_upload/js_upload.php:46
 msgid "Failed"
 msgstr "Ошибка"
 
-#: ../../addon/js_upload/js_upload.php:297
+#: ../../addon/js_upload/js_upload.php:303
+#: ../../addon.old/js_upload/js_upload.php:297
 msgid "No files were uploaded."
 msgstr "Нет загруженных файлов."
 
-#: ../../addon/js_upload/js_upload.php:303
+#: ../../addon/js_upload/js_upload.php:309
+#: ../../addon.old/js_upload/js_upload.php:303
 msgid "Uploaded file is empty"
 msgstr "Загруженный файл пустой"
 
-#: ../../addon/js_upload/js_upload.php:326
+#: ../../addon/js_upload/js_upload.php:332
+#: ../../addon.old/js_upload/js_upload.php:326
 msgid "File has an invalid extension, it should be one of "
 msgstr "Файл имеет недопустимое расширение, оно должно быть одним из следующих "
 
-#: ../../addon/js_upload/js_upload.php:337
+#: ../../addon/js_upload/js_upload.php:343
+#: ../../addon.old/js_upload/js_upload.php:337
 msgid "Upload was cancelled, or server error encountered"
 msgstr "Загрузка была отменена, или произошла ошибка сервера"
 
-#: ../../addon/oembed.old/oembed.php:30
-msgid "OEmbed settings updated"
-msgstr "OEmbed настройки обновлены"
-
-#: ../../addon/oembed.old/oembed.php:43
-msgid "Use OEmbed for YouTube videos"
-msgstr "Использовать OEmbed для видео YouTube"
-
-#: ../../addon/oembed.old/oembed.php:71
-msgid "URL to embed:"
-msgstr "URL для встраивания:"
-
-#: ../../addon/forumlist/forumlist.php:58
+#: ../../addon/forumlist/forumlist.php:63
+#: ../../addon.old/forumlist/forumlist.php:63
 msgid "show/hide"
 msgstr ""
 
-#: ../../addon/forumlist/forumlist.php:72
+#: ../../addon/forumlist/forumlist.php:77
+#: ../../addon.old/forumlist/forumlist.php:77
 msgid "No forum subscriptions"
 msgstr ""
 
-#: ../../addon/forumlist/forumlist.php:125
+#: ../../addon/forumlist/forumlist.php:131
+#: ../../addon.old/forumlist/forumlist.php:131
 msgid "Forumlist settings updated."
 msgstr ""
 
-#: ../../addon/forumlist/forumlist.php:150
+#: ../../addon/forumlist/forumlist.php:159
+#: ../../addon.old/forumlist/forumlist.php:159
 msgid "Forumlist Settings"
 msgstr ""
 
-#: ../../addon/forumlist/forumlist.php:152
+#: ../../addon/forumlist/forumlist.php:161
+#: ../../addon.old/forumlist/forumlist.php:161
 msgid "Randomise forum list"
 msgstr ""
 
-#: ../../addon/forumlist/forumlist.php:155
+#: ../../addon/forumlist/forumlist.php:164
+#: ../../addon.old/forumlist/forumlist.php:164
 msgid "Show forums on profile page"
 msgstr ""
 
+#: ../../addon/forumlist/forumlist.php:167
+#: ../../addon.old/forumlist/forumlist.php:167
+msgid "Show forums on network page"
+msgstr ""
+
 #: ../../addon/impressum/impressum.php:37
+#: ../../addon.old/impressum/impressum.php:37
 msgid "Impressum"
 msgstr "Impressum"
 
 #: ../../addon/impressum/impressum.php:50
 #: ../../addon/impressum/impressum.php:52
 #: ../../addon/impressum/impressum.php:84
+#: ../../addon.old/impressum/impressum.php:50
+#: ../../addon.old/impressum/impressum.php:52
+#: ../../addon.old/impressum/impressum.php:84
 msgid "Site Owner"
 msgstr "Владелец сайта"
 
 #: ../../addon/impressum/impressum.php:50
 #: ../../addon/impressum/impressum.php:88
+#: ../../addon.old/impressum/impressum.php:50
+#: ../../addon.old/impressum/impressum.php:88
 msgid "Email Address"
 msgstr "Адрес электронной почты"
 
 #: ../../addon/impressum/impressum.php:55
 #: ../../addon/impressum/impressum.php:86
+#: ../../addon.old/impressum/impressum.php:55
+#: ../../addon.old/impressum/impressum.php:86
 msgid "Postal Address"
 msgstr "Почтовый адрес"
 
 #: ../../addon/impressum/impressum.php:61
+#: ../../addon.old/impressum/impressum.php:61
 msgid ""
 "The impressum addon needs to be configured!<br />Please add at least the "
 "<tt>owner</tt> variable to your config file. For other variables please "
@@ -6173,193 +6686,236 @@ msgid ""
 msgstr "Расширение Impressum должно быть настроено!<br /> Пожалуйста, добавьте по крайней мере переменную <tt>владельца</tt> в ваш конфигурационный файл. Описание других переменных можно найти в файле README для расширения."
 
 #: ../../addon/impressum/impressum.php:84
+#: ../../addon.old/impressum/impressum.php:84
 msgid "The page operators name."
 msgstr ""
 
 #: ../../addon/impressum/impressum.php:85
+#: ../../addon.old/impressum/impressum.php:85
 msgid "Site Owners Profile"
 msgstr "Профиль владельцев сайта"
 
 #: ../../addon/impressum/impressum.php:85
+#: ../../addon.old/impressum/impressum.php:85
 msgid "Profile address of the operator."
 msgstr ""
 
 #: ../../addon/impressum/impressum.php:86
+#: ../../addon.old/impressum/impressum.php:86
 msgid "How to contact the operator via snail mail. You can use BBCode here."
 msgstr ""
 
 #: ../../addon/impressum/impressum.php:87
+#: ../../addon.old/impressum/impressum.php:87
 msgid "Notes"
 msgstr "Заметки"
 
 #: ../../addon/impressum/impressum.php:87
+#: ../../addon.old/impressum/impressum.php:87
 msgid ""
 "Additional notes that are displayed beneath the contact information. You can"
 " use BBCode here."
 msgstr ""
 
 #: ../../addon/impressum/impressum.php:88
+#: ../../addon.old/impressum/impressum.php:88
 msgid "How to contact the operator via email. (will be displayed obfuscated)"
 msgstr ""
 
 #: ../../addon/impressum/impressum.php:89
+#: ../../addon.old/impressum/impressum.php:89
 msgid "Footer note"
 msgstr ""
 
 #: ../../addon/impressum/impressum.php:89
+#: ../../addon.old/impressum/impressum.php:89
 msgid "Text for the footer. You can use BBCode here."
 msgstr ""
 
-#: ../../addon/buglink/buglink.php:15
+#: ../../addon/buglink/buglink.php:15 ../../addon.old/buglink/buglink.php:15
 msgid "Report Bug"
 msgstr "Сообщить об ошибке"
 
 #: ../../addon/notimeline/notimeline.php:32
+#: ../../addon.old/notimeline/notimeline.php:32
 msgid "No Timeline settings updated."
 msgstr ""
 
 #: ../../addon/notimeline/notimeline.php:56
+#: ../../addon.old/notimeline/notimeline.php:56
 msgid "No Timeline Settings"
 msgstr ""
 
 #: ../../addon/notimeline/notimeline.php:58
+#: ../../addon.old/notimeline/notimeline.php:58
 msgid "Disable Archive selector on profile wall"
 msgstr ""
 
-#: ../../addon/blockem/blockem.php:51
+#: ../../addon/blockem/blockem.php:51 ../../addon.old/blockem/blockem.php:51
 msgid "\"Blockem\" Settings"
 msgstr "\"Blockem\" настройки"
 
-#: ../../addon/blockem/blockem.php:53
+#: ../../addon/blockem/blockem.php:53 ../../addon.old/blockem/blockem.php:53
 msgid "Comma separated profile URLS to block"
 msgstr "URLS, которые заблокировать (список через запятую)"
 
-#: ../../addon/blockem/blockem.php:70
+#: ../../addon/blockem/blockem.php:70 ../../addon.old/blockem/blockem.php:70
 msgid "BLOCKEM Settings saved."
 msgstr "BLOCKEM-Настройки сохранены."
 
-#: ../../addon/blockem/blockem.php:105
+#: ../../addon/blockem/blockem.php:105 ../../addon.old/blockem/blockem.php:105
 #, php-format
 msgid "Blocked %s - Click to open/close"
 msgstr "Заблокированные %s - Нажмите, чтобы открыть/закрыть"
 
-#: ../../addon/blockem/blockem.php:160
+#: ../../addon/blockem/blockem.php:160 ../../addon.old/blockem/blockem.php:160
 msgid "Unblock Author"
 msgstr ""
 
-#: ../../addon/blockem/blockem.php:162
+#: ../../addon/blockem/blockem.php:162 ../../addon.old/blockem/blockem.php:162
 msgid "Block Author"
 msgstr "Блокировать Автора"
 
-#: ../../addon/blockem/blockem.php:194
+#: ../../addon/blockem/blockem.php:194 ../../addon.old/blockem/blockem.php:194
 msgid "blockem settings updated"
 msgstr "\"Blockem\" настройки обновлены"
 
 #: ../../addon/qcomment/qcomment.php:51
+#: ../../addon.old/qcomment/qcomment.php:51
 msgid ":-)"
 msgstr ":-)"
 
 #: ../../addon/qcomment/qcomment.php:51
+#: ../../addon.old/qcomment/qcomment.php:51
 msgid ":-("
 msgstr ":-("
 
 #: ../../addon/qcomment/qcomment.php:51
+#: ../../addon.old/qcomment/qcomment.php:51
 msgid "lol"
 msgstr "lol"
 
 #: ../../addon/qcomment/qcomment.php:54
+#: ../../addon.old/qcomment/qcomment.php:54
 msgid "Quick Comment Settings"
 msgstr ""
 
 #: ../../addon/qcomment/qcomment.php:56
+#: ../../addon.old/qcomment/qcomment.php:56
 msgid ""
 "Quick comments are found near comment boxes, sometimes hidden. Click them to"
 " provide simple replies."
 msgstr ""
 
 #: ../../addon/qcomment/qcomment.php:57
+#: ../../addon.old/qcomment/qcomment.php:57
 msgid "Enter quick comments, one per line"
 msgstr "Введите короткие комментарии, по одному в строке:"
 
 #: ../../addon/qcomment/qcomment.php:75
+#: ../../addon.old/qcomment/qcomment.php:75
 msgid "Quick Comment settings saved."
 msgstr ""
 
 #: ../../addon/openstreetmap/openstreetmap.php:71
+#: ../../addon.old/openstreetmap/openstreetmap.php:71
 msgid "Tile Server URL"
 msgstr ""
 
 #: ../../addon/openstreetmap/openstreetmap.php:71
+#: ../../addon.old/openstreetmap/openstreetmap.php:71
 msgid ""
 "A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
 "target=\"_blank\">public tile servers</a>"
 msgstr "Список <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">общедоступных серверов</a>"
 
 #: ../../addon/openstreetmap/openstreetmap.php:72
+#: ../../addon.old/openstreetmap/openstreetmap.php:72
 msgid "Default zoom"
 msgstr "zoom по умолчанию"
 
 #: ../../addon/openstreetmap/openstreetmap.php:72
+#: ../../addon.old/openstreetmap/openstreetmap.php:72
 msgid "The default zoom level. (1:world, 18:highest)"
 msgstr ""
 
 #: ../../addon/group_text/group_text.php:46
 #: ../../addon/editplain/editplain.php:46
+#: ../../addon.old/group_text/group_text.php:46
+#: ../../addon.old/editplain/editplain.php:46
 msgid "Editplain settings updated."
 msgstr "Editplain настройки обновлены."
 
 #: ../../addon/group_text/group_text.php:76
+#: ../../addon.old/group_text/group_text.php:76
 msgid "Group Text"
 msgstr ""
 
 #: ../../addon/group_text/group_text.php:78
+#: ../../addon.old/group_text/group_text.php:78
 msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:14
+#: ../../addon.old/libravatar/libravatar.php:14
 msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:73
 #: ../../addon/gravatar/gravatar.php:71
+#: ../../addon.old/libravatar/libravatar.php:73
+#: ../../addon.old/gravatar/gravatar.php:71
 msgid "generic profile image"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:74
 #: ../../addon/gravatar/gravatar.php:72
+#: ../../addon.old/libravatar/libravatar.php:74
+#: ../../addon.old/gravatar/gravatar.php:72
 msgid "random geometric pattern"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:75
 #: ../../addon/gravatar/gravatar.php:73
+#: ../../addon.old/libravatar/libravatar.php:75
+#: ../../addon.old/gravatar/gravatar.php:73
 msgid "monster face"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:76
 #: ../../addon/gravatar/gravatar.php:74
+#: ../../addon.old/libravatar/libravatar.php:76
+#: ../../addon.old/gravatar/gravatar.php:74
 msgid "computer generated face"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:77
 #: ../../addon/gravatar/gravatar.php:75
+#: ../../addon.old/libravatar/libravatar.php:77
+#: ../../addon.old/gravatar/gravatar.php:75
 msgid "retro arcade style face"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:83
+#: ../../addon.old/libravatar/libravatar.php:83
 #, php-format
 msgid "Your PHP version %s is lower than the required PHP >= 5.3."
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:84
+#: ../../addon.old/libravatar/libravatar.php:84
 msgid "This addon is not functional on your server."
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:93
 #: ../../addon/gravatar/gravatar.php:89
+#: ../../addon.old/libravatar/libravatar.php:93
+#: ../../addon.old/gravatar/gravatar.php:89
 msgid "Information"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:93
+#: ../../addon.old/libravatar/libravatar.php:93
 msgid ""
 "Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
 "Libravatar addon will fall back to Gravatar if nothing was found at "
@@ -6368,83 +6924,99 @@ msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:100
 #: ../../addon/gravatar/gravatar.php:96
+#: ../../addon.old/libravatar/libravatar.php:100
+#: ../../addon.old/gravatar/gravatar.php:96
 msgid "Default avatar image"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:100
+#: ../../addon.old/libravatar/libravatar.php:100
 msgid "Select default avatar image if none was found. See README"
 msgstr ""
 
 #: ../../addon/libravatar/libravatar.php:112
+#: ../../addon.old/libravatar/libravatar.php:112
 msgid "Libravatar settings updated."
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:36
+#: ../../addon.old/libertree/libertree.php:36
 msgid "Post to libertree"
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:67
+#: ../../addon.old/libertree/libertree.php:67
 msgid "libertree Post Settings"
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:69
+#: ../../addon.old/libertree/libertree.php:69
 msgid "Enable Libertree Post Plugin"
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:74
+#: ../../addon.old/libertree/libertree.php:74
 msgid "Libertree API token"
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:79
+#: ../../addon.old/libertree/libertree.php:79
 msgid "Libertree site URL"
 msgstr ""
 
 #: ../../addon/libertree/libertree.php:84
+#: ../../addon.old/libertree/libertree.php:84
 msgid "Post to Libertree by default"
 msgstr ""
 
 #: ../../addon/altpager/altpager.php:46
+#: ../../addon.old/altpager/altpager.php:46
 msgid "Altpager settings updated."
 msgstr ""
 
 #: ../../addon/altpager/altpager.php:79
+#: ../../addon.old/altpager/altpager.php:79
 msgid "Alternate Pagination Setting"
 msgstr ""
 
 #: ../../addon/altpager/altpager.php:81
+#: ../../addon.old/altpager/altpager.php:81
 msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
 msgstr ""
 
-#: ../../addon/mathjax/mathjax.php:37
+#: ../../addon/mathjax/mathjax.php:37 ../../addon.old/mathjax/mathjax.php:37
 msgid ""
 "The MathJax addon renders mathematical formulae written using the LaTeX "
 "syntax surrounded by the usual $$ or an eqnarray block in the postings of "
 "your wall,network tab and private mail."
 msgstr ""
 
-#: ../../addon/mathjax/mathjax.php:38
+#: ../../addon/mathjax/mathjax.php:38 ../../addon.old/mathjax/mathjax.php:38
 msgid "Use the MathJax renderer"
 msgstr ""
 
-#: ../../addon/mathjax/mathjax.php:74
+#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74
 msgid "MathJax Base URL"
 msgstr ""
 
-#: ../../addon/mathjax/mathjax.php:74
+#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74
 msgid ""
 "The URL for the javascript file that should be included to use MathJax. Can "
 "be either the MathJax CDN or another installation of MathJax."
 msgstr ""
 
 #: ../../addon/editplain/editplain.php:76
+#: ../../addon.old/editplain/editplain.php:76
 msgid "Editplain Settings"
 msgstr "Editplain настройки"
 
 #: ../../addon/editplain/editplain.php:78
+#: ../../addon.old/editplain/editplain.php:78
 msgid "Disable richtext status editor"
 msgstr "Отключить richtext status editor"
 
 #: ../../addon/gravatar/gravatar.php:89
+#: ../../addon.old/gravatar/gravatar.php:89
 msgid ""
 "Libravatar addon is installed, too. Please disable Libravatar addon or this "
 "Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
@@ -6452,26 +7024,32 @@ msgid ""
 msgstr ""
 
 #: ../../addon/gravatar/gravatar.php:96
+#: ../../addon.old/gravatar/gravatar.php:96
 msgid "Select default avatar image if none was found at Gravatar. See README"
 msgstr ""
 
 #: ../../addon/gravatar/gravatar.php:97
+#: ../../addon.old/gravatar/gravatar.php:97
 msgid "Rating of images"
 msgstr ""
 
 #: ../../addon/gravatar/gravatar.php:97
+#: ../../addon.old/gravatar/gravatar.php:97
 msgid "Select the appropriate avatar rating for your site. See README"
 msgstr ""
 
 #: ../../addon/gravatar/gravatar.php:111
+#: ../../addon.old/gravatar/gravatar.php:111
 msgid "Gravatar settings updated."
 msgstr ""
 
 #: ../../addon/testdrive/testdrive.php:95
+#: ../../addon.old/testdrive/testdrive.php:95
 msgid "Your Friendica test account is about to expire."
 msgstr ""
 
 #: ../../addon/testdrive/testdrive.php:96
+#: ../../addon.old/testdrive/testdrive.php:96
 #, php-format
 msgid ""
 "Hi %1$s,\n"
@@ -6480,121 +7058,143 @@ msgid ""
 msgstr ""
 
 #: ../../addon/pageheader/pageheader.php:50
+#: ../../addon.old/pageheader/pageheader.php:50
 msgid "\"pageheader\" Settings"
 msgstr ""
 
 #: ../../addon/pageheader/pageheader.php:68
+#: ../../addon.old/pageheader/pageheader.php:68
 msgid "pageheader Settings saved."
 msgstr ""
 
-#: ../../addon/ijpost/ijpost.php:39
+#: ../../addon/ijpost/ijpost.php:39 ../../addon.old/ijpost/ijpost.php:39
 msgid "Post to Insanejournal"
 msgstr ""
 
-#: ../../addon/ijpost/ijpost.php:70
+#: ../../addon/ijpost/ijpost.php:70 ../../addon.old/ijpost/ijpost.php:70
 msgid "InsaneJournal Post Settings"
 msgstr ""
 
-#: ../../addon/ijpost/ijpost.php:72
+#: ../../addon/ijpost/ijpost.php:72 ../../addon.old/ijpost/ijpost.php:72
 msgid "Enable InsaneJournal Post Plugin"
 msgstr "Включить InsaneJournal  плагин сообщений"
 
-#: ../../addon/ijpost/ijpost.php:77
+#: ../../addon/ijpost/ijpost.php:77 ../../addon.old/ijpost/ijpost.php:77
 msgid "InsaneJournal username"
 msgstr ""
 
-#: ../../addon/ijpost/ijpost.php:82
+#: ../../addon/ijpost/ijpost.php:82 ../../addon.old/ijpost/ijpost.php:82
 msgid "InsaneJournal password"
 msgstr ""
 
-#: ../../addon/ijpost/ijpost.php:87
+#: ../../addon/ijpost/ijpost.php:87 ../../addon.old/ijpost/ijpost.php:87
 msgid "Post to InsaneJournal by default"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:266
+#: ../../addon.old/jappixmini/jappixmini.php:266
 msgid "Jappix Mini addon settings"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:268
+#: ../../addon.old/jappixmini/jappixmini.php:268
 msgid "Activate addon"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:271
+#: ../../addon.old/jappixmini/jappixmini.php:271
 msgid ""
 "Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:274
+#: ../../addon.old/jappixmini/jappixmini.php:274
 msgid "Jabber username"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:277
+#: ../../addon.old/jappixmini/jappixmini.php:277
 msgid "Jabber server"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:281
+#: ../../addon.old/jappixmini/jappixmini.php:281
 msgid "Jabber BOSH host"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:285
+#: ../../addon.old/jappixmini/jappixmini.php:285
 msgid "Jabber password"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:290
+#: ../../addon.old/jappixmini/jappixmini.php:290
 msgid "Encrypt Jabber password with Friendica password (recommended)"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:293
+#: ../../addon.old/jappixmini/jappixmini.php:293
 msgid "Friendica password"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:296
+#: ../../addon.old/jappixmini/jappixmini.php:296
 msgid "Approve subscription requests from Friendica contacts automatically"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:299
+#: ../../addon.old/jappixmini/jappixmini.php:299
 msgid "Subscribe to Friendica contacts automatically"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:302
+#: ../../addon.old/jappixmini/jappixmini.php:302
 msgid "Purge internal list of jabber addresses of contacts"
 msgstr ""
 
 #: ../../addon/jappixmini/jappixmini.php:308
+#: ../../addon.old/jappixmini/jappixmini.php:308
 msgid "Add contact"
 msgstr ""
 
-#: ../../addon/viewsrc/viewsrc.php:37
+#: ../../addon/viewsrc/viewsrc.php:37 ../../addon.old/viewsrc/viewsrc.php:37
 msgid "View Source"
 msgstr "Просмотр HTML-кода"
 
 #: ../../addon/statusnet/statusnet.php:134
+#: ../../addon.old/statusnet/statusnet.php:134
 msgid "Post to StatusNet"
 msgstr "Отправить на StatusNet"
 
 #: ../../addon/statusnet/statusnet.php:176
+#: ../../addon.old/statusnet/statusnet.php:176
 msgid ""
 "Please contact your site administrator.<br />The provided API URL is not "
 "valid."
 msgstr "Пожалуйста, обратитесь к администратору сайта. <br /> Предложенный URL API недействителен."
 
 #: ../../addon/statusnet/statusnet.php:204
+#: ../../addon.old/statusnet/statusnet.php:204
 msgid "We could not contact the StatusNet API with the Path you entered."
 msgstr "Мы не смогли связаться с API StatusNet с маршрутом, который вы ввели."
 
 #: ../../addon/statusnet/statusnet.php:232
+#: ../../addon.old/statusnet/statusnet.php:232
 msgid "StatusNet settings updated."
 msgstr "Настройки StatusNet обновлены."
 
 #: ../../addon/statusnet/statusnet.php:257
+#: ../../addon.old/statusnet/statusnet.php:257
 msgid "StatusNet Posting Settings"
 msgstr "Настройка отправки сообщений на StatusNet"
 
 #: ../../addon/statusnet/statusnet.php:271
+#: ../../addon.old/statusnet/statusnet.php:271
 msgid "Globally Available StatusNet OAuthKeys"
 msgstr "Глобально доступные StatusNet OAuthKeys"
 
 #: ../../addon/statusnet/statusnet.php:272
+#: ../../addon.old/statusnet/statusnet.php:272
 msgid ""
 "There are preconfigured OAuth key pairs for some StatusNet servers "
 "available. If you are useing one of them, please use these credentials. If "
@@ -6602,10 +7202,12 @@ msgid ""
 msgstr "Доступны предварительно сконфигурированные OAuth пары ключей для некоторых серверов StatusNet. Если вы используете один из них, пожалуйста, используйте эти учетные данные. Если нет, не стесняйтесь подключиться к любому другому экземпляру StatusNet (см. ниже)."
 
 #: ../../addon/statusnet/statusnet.php:280
+#: ../../addon.old/statusnet/statusnet.php:280
 msgid "Provide your own OAuth Credentials"
 msgstr "Укажите свои собственные полномочия OAuth"
 
 #: ../../addon/statusnet/statusnet.php:281
+#: ../../addon.old/statusnet/statusnet.php:281
 msgid ""
 "No consumer key pair for StatusNet found. Register your Friendica Account as"
 " an desktop client on your StatusNet account, copy the consumer key pair "
@@ -6615,18 +7217,22 @@ msgid ""
 msgstr ""
 
 #: ../../addon/statusnet/statusnet.php:283
+#: ../../addon.old/statusnet/statusnet.php:283
 msgid "OAuth Consumer Key"
 msgstr "OAuth Consumer Key"
 
 #: ../../addon/statusnet/statusnet.php:286
+#: ../../addon.old/statusnet/statusnet.php:286
 msgid "OAuth Consumer Secret"
 msgstr "OAuth Consumer Secret"
 
 #: ../../addon/statusnet/statusnet.php:289
+#: ../../addon.old/statusnet/statusnet.php:289
 msgid "Base API Path (remember the trailing /)"
 msgstr "Путь базы API (помните о слеше /)"
 
 #: ../../addon/statusnet/statusnet.php:310
+#: ../../addon.old/statusnet/statusnet.php:310
 msgid ""
 "To connect to your StatusNet account click the button below to get a "
 "security code from StatusNet which you have to copy into the input box below"
@@ -6635,30 +7241,38 @@ msgid ""
 msgstr "Чтобы подключиться к StatusNet аккаунту, нажмите на кнопку ниже, чтобы получить код безопасности от StatusNet, который нужно скопировать в поле ввода ниже, и отправить форму. Только ваши <strong>публичные сообщения</strong> будут отправляться на StatusNet."
 
 #: ../../addon/statusnet/statusnet.php:311
+#: ../../addon.old/statusnet/statusnet.php:311
 msgid "Log in with StatusNet"
 msgstr "Войдите со StatusNet"
 
 #: ../../addon/statusnet/statusnet.php:313
+#: ../../addon.old/statusnet/statusnet.php:313
 msgid "Copy the security code from StatusNet here"
 msgstr "Скопируйте код безопасности от StatusNet здесь"
 
 #: ../../addon/statusnet/statusnet.php:319
+#: ../../addon.old/statusnet/statusnet.php:319
 msgid "Cancel Connection Process"
 msgstr "Отмена процесса подключения"
 
 #: ../../addon/statusnet/statusnet.php:321
+#: ../../addon.old/statusnet/statusnet.php:321
 msgid "Current StatusNet API is"
 msgstr "Текущим StatusNet API является"
 
 #: ../../addon/statusnet/statusnet.php:322
+#: ../../addon.old/statusnet/statusnet.php:322
 msgid "Cancel StatusNet Connection"
 msgstr "Отмена StatusNet подключения"
 
 #: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189
+#: ../../addon.old/statusnet/statusnet.php:333
+#: ../../addon.old/twitter/twitter.php:189
 msgid "Currently connected to: "
 msgstr "В настоящее время соединены с: "
 
 #: ../../addon/statusnet/statusnet.php:334
+#: ../../addon.old/statusnet/statusnet.php:334
 msgid ""
 "If enabled all your <strong>public</strong> postings can be posted to the "
 "associated StatusNet account. You can choose to do so by default (here) or "
@@ -6666,6 +7280,7 @@ msgid ""
 msgstr "Если включено, то все ваши <strong>общественные сообщения</strong> могут быть отправлены на соответствующий аккаунт StatusNet. Вы можете сделать это по умолчанию (здесь) или для каждого сообщения отдельно при написании записи."
 
 #: ../../addon/statusnet/statusnet.php:336
+#: ../../addon.old/statusnet/statusnet.php:336
 msgid ""
 "<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
 "details from unknown viewers?</em>) the link potentially included in public "
@@ -6674,143 +7289,169 @@ msgid ""
 msgstr ""
 
 #: ../../addon/statusnet/statusnet.php:339
+#: ../../addon.old/statusnet/statusnet.php:339
 msgid "Allow posting to StatusNet"
 msgstr "Разрешить отправку на StatusNet"
 
 #: ../../addon/statusnet/statusnet.php:342
+#: ../../addon.old/statusnet/statusnet.php:342
 msgid "Send public postings to StatusNet by default"
 msgstr "Отправлять публичные сообщения на StatusNet по умолчанию"
 
 #: ../../addon/statusnet/statusnet.php:345
+#: ../../addon.old/statusnet/statusnet.php:345
 msgid "Send linked #-tags and @-names to StatusNet"
 msgstr ""
 
 #: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206
+#: ../../addon.old/statusnet/statusnet.php:350
+#: ../../addon.old/twitter/twitter.php:206
 msgid "Clear OAuth configuration"
 msgstr "Очистить конфигурацию OAuth"
 
-#: ../../addon/statusnet/statusnet.php:568
+#: ../../addon/statusnet/statusnet.php:677
+#: ../../addon.old/statusnet/statusnet.php:568
 msgid "API URL"
 msgstr "API URL"
 
 #: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
+#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
 msgid "Infinite Improbability Drive"
 msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:36
+#: ../../addon/tumblr/tumblr.php:36 ../../addon.old/tumblr/tumblr.php:36
 msgid "Post to Tumblr"
 msgstr "Написать в Tumblr"
 
-#: ../../addon/tumblr/tumblr.php:67
+#: ../../addon/tumblr/tumblr.php:67 ../../addon.old/tumblr/tumblr.php:67
 msgid "Tumblr Post Settings"
 msgstr "Tumblr Настройки сообщения"
 
-#: ../../addon/tumblr/tumblr.php:69
+#: ../../addon/tumblr/tumblr.php:69 ../../addon.old/tumblr/tumblr.php:69
 msgid "Enable Tumblr Post Plugin"
 msgstr "Включить Tumblr  плагин сообщений"
 
-#: ../../addon/tumblr/tumblr.php:74
+#: ../../addon/tumblr/tumblr.php:74 ../../addon.old/tumblr/tumblr.php:74
 msgid "Tumblr login"
 msgstr "Tumblr вход"
 
-#: ../../addon/tumblr/tumblr.php:79
+#: ../../addon/tumblr/tumblr.php:79 ../../addon.old/tumblr/tumblr.php:79
 msgid "Tumblr password"
 msgstr "Tumblr пароль"
 
-#: ../../addon/tumblr/tumblr.php:84
+#: ../../addon/tumblr/tumblr.php:84 ../../addon.old/tumblr/tumblr.php:84
 msgid "Post to Tumblr by default"
 msgstr "Сообщение Tumblr по умолчанию"
 
 #: ../../addon/numfriends/numfriends.php:46
+#: ../../addon.old/numfriends/numfriends.php:46
 msgid "Numfriends settings updated."
 msgstr ""
 
 #: ../../addon/numfriends/numfriends.php:77
+#: ../../addon.old/numfriends/numfriends.php:77
 msgid "Numfriends Settings"
 msgstr ""
 
-#: ../../addon/gnot/gnot.php:48
+#: ../../addon/numfriends/numfriends.php:79 ../../addon.old/bg/bg.php:84
+#: ../../addon.old/numfriends/numfriends.php:79
+msgid "How many contacts to display on profile sidebar"
+msgstr ""
+
+#: ../../addon/gnot/gnot.php:48 ../../addon.old/gnot/gnot.php:48
 msgid "Gnot settings updated."
 msgstr ""
 
-#: ../../addon/gnot/gnot.php:79
+#: ../../addon/gnot/gnot.php:79 ../../addon.old/gnot/gnot.php:79
 msgid "Gnot Settings"
 msgstr ""
 
-#: ../../addon/gnot/gnot.php:81
+#: ../../addon/gnot/gnot.php:81 ../../addon.old/gnot/gnot.php:81
 msgid ""
 "Allows threading of email comment notifications on Gmail and anonymising the"
 " subject line."
 msgstr ""
 
-#: ../../addon/gnot/gnot.php:82
+#: ../../addon/gnot/gnot.php:82 ../../addon.old/gnot/gnot.php:82
 msgid "Enable this plugin/addon?"
 msgstr "Включить этот плагин / аддон?"
 
-#: ../../addon/gnot/gnot.php:97
+#: ../../addon/gnot/gnot.php:97 ../../addon.old/gnot/gnot.php:97
 #, php-format
 msgid "[Friendica:Notify] Comment to conversation #%d"
 msgstr ""
 
-#: ../../addon/wppost/wppost.php:42
+#: ../../addon/wppost/wppost.php:42 ../../addon.old/wppost/wppost.php:42
 msgid "Post to Wordpress"
 msgstr "Сообщение для Wordpress"
 
-#: ../../addon/wppost/wppost.php:76
+#: ../../addon/wppost/wppost.php:76 ../../addon.old/wppost/wppost.php:76
 msgid "WordPress Post Settings"
 msgstr "Настройки сообщений для Wordpress"
 
-#: ../../addon/wppost/wppost.php:78
+#: ../../addon/wppost/wppost.php:78 ../../addon.old/wppost/wppost.php:78
 msgid "Enable WordPress Post Plugin"
 msgstr "Включить WordPress  плагин сообщений"
 
-#: ../../addon/wppost/wppost.php:83
+#: ../../addon/wppost/wppost.php:83 ../../addon.old/wppost/wppost.php:83
 msgid "WordPress username"
 msgstr "WordPress Имя пользователя"
 
-#: ../../addon/wppost/wppost.php:88
+#: ../../addon/wppost/wppost.php:88 ../../addon.old/wppost/wppost.php:88
 msgid "WordPress password"
 msgstr "WordPress паролъ"
 
-#: ../../addon/wppost/wppost.php:93
+#: ../../addon/wppost/wppost.php:93 ../../addon.old/wppost/wppost.php:93
 msgid "WordPress API URL"
 msgstr "WordPress API URL"
 
-#: ../../addon/wppost/wppost.php:98
+#: ../../addon/wppost/wppost.php:98 ../../addon.old/wppost/wppost.php:98
 msgid "Post to WordPress by default"
 msgstr "Сообщение WordPress по умолчанию"
 
-#: ../../addon/wppost/wppost.php:103
+#: ../../addon/wppost/wppost.php:103 ../../addon.old/wppost/wppost.php:103
 msgid "Provide a backlink to the Friendica post"
 msgstr ""
 
-#: ../../addon/wppost/wppost.php:207
+#: ../../addon/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172
+#: ../../addon/posterous/posterous.php:189
+#: ../../addon.old/drpost/drpost.php:184 ../../addon.old/wppost/wppost.php:201
+#: ../../addon.old/blogger/blogger.php:172
+#: ../../addon.old/posterous/posterous.php:189
+msgid "Post from Friendica"
+msgstr "Сообщение от Friendica"
+
+#: ../../addon/wppost/wppost.php:207 ../../addon.old/wppost/wppost.php:207
 msgid "Read the original post and comment stream on Friendica"
 msgstr ""
 
 #: ../../addon/showmore/showmore.php:38
+#: ../../addon.old/showmore/showmore.php:38
 msgid "\"Show more\" Settings"
 msgstr ""
 
 #: ../../addon/showmore/showmore.php:41
+#: ../../addon.old/showmore/showmore.php:41
 msgid "Enable Show More"
 msgstr "Включить Показать больше"
 
 #: ../../addon/showmore/showmore.php:44
+#: ../../addon.old/showmore/showmore.php:44
 msgid "Cutting posts after how much characters"
 msgstr "Обрезание сообщения после превывения числа символов"
 
 #: ../../addon/showmore/showmore.php:65
+#: ../../addon.old/showmore/showmore.php:65
 msgid "Show More Settings saved."
 msgstr ""
 
-#: ../../addon/piwik/piwik.php:79
+#: ../../addon/piwik/piwik.php:79 ../../addon.old/piwik/piwik.php:79
 msgid ""
 "This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
 "analytics tool."
 msgstr "Этот веб-сайт отслеживается с помощью <a href='http://www.piwik.org'> Piwik </ a> инструмент аналитики."
 
-#: ../../addon/piwik/piwik.php:82
+#: ../../addon/piwik/piwik.php:82 ../../addon.old/piwik/piwik.php:82
 #, php-format
 msgid ""
 "If you do not want that your visits are logged this way you <a href='%s'>can"
@@ -6818,47 +7459,47 @@ msgid ""
 "(opt-out)."
 msgstr "Если вы не хотите, чтобы ваши посещения записывались таким образом, вы <a href='%s'> можете установить куки для предотвращения отслеживания Piwik от дальнейших посещений сайта </a> (opt-out)."
 
-#: ../../addon/piwik/piwik.php:90
+#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
 msgid "Piwik Base URL"
 msgstr "Piwik основной URL"
 
-#: ../../addon/piwik/piwik.php:90
+#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
 msgid ""
 "Absolute path to your Piwik installation. (without protocol (http/s), with "
 "trailing slash)"
 msgstr ""
 
-#: ../../addon/piwik/piwik.php:91
+#: ../../addon/piwik/piwik.php:91 ../../addon.old/piwik/piwik.php:91
 msgid "Site ID"
 msgstr "ID сайта"
 
-#: ../../addon/piwik/piwik.php:92
+#: ../../addon/piwik/piwik.php:92 ../../addon.old/piwik/piwik.php:92
 msgid "Show opt-out cookie link?"
 msgstr "Показать ссылку opt-out cookie?"
 
-#: ../../addon/piwik/piwik.php:93
+#: ../../addon/piwik/piwik.php:93 ../../addon.old/piwik/piwik.php:93
 msgid "Asynchronous tracking"
 msgstr "Асинхронное отслеживание"
 
-#: ../../addon/twitter/twitter.php:73
+#: ../../addon/twitter/twitter.php:73 ../../addon.old/twitter/twitter.php:73
 msgid "Post to Twitter"
 msgstr "Отправить в Твиттер"
 
-#: ../../addon/twitter/twitter.php:122
+#: ../../addon/twitter/twitter.php:122 ../../addon.old/twitter/twitter.php:122
 msgid "Twitter settings updated."
 msgstr "Настройки Твиттера обновлены."
 
-#: ../../addon/twitter/twitter.php:146
+#: ../../addon/twitter/twitter.php:146 ../../addon.old/twitter/twitter.php:146
 msgid "Twitter Posting Settings"
 msgstr "Настройка отправки сообщений в Твиттер"
 
-#: ../../addon/twitter/twitter.php:153
+#: ../../addon/twitter/twitter.php:153 ../../addon.old/twitter/twitter.php:153
 msgid ""
 "No consumer key pair for Twitter found. Please contact your site "
 "administrator."
 msgstr "Не найдено пары потребительских ключей для Твиттера. Пожалуйста, обратитесь к администратору сайта."
 
-#: ../../addon/twitter/twitter.php:172
+#: ../../addon/twitter/twitter.php:172 ../../addon.old/twitter/twitter.php:172
 msgid ""
 "At this Friendica instance the Twitter plugin was enabled but you have not "
 "yet connected your account to your Twitter account. To do so click the "
@@ -6867,22 +7508,22 @@ msgid ""
 " be posted to Twitter."
 msgstr ""
 
-#: ../../addon/twitter/twitter.php:173
+#: ../../addon/twitter/twitter.php:173 ../../addon.old/twitter/twitter.php:173
 msgid "Log in with Twitter"
 msgstr "Войдите с Твиттером"
 
-#: ../../addon/twitter/twitter.php:175
+#: ../../addon/twitter/twitter.php:175 ../../addon.old/twitter/twitter.php:175
 msgid "Copy the PIN from Twitter here"
 msgstr "Скопируйте PIN с Twitter здесь"
 
-#: ../../addon/twitter/twitter.php:190
+#: ../../addon/twitter/twitter.php:190 ../../addon.old/twitter/twitter.php:190
 msgid ""
 "If enabled all your <strong>public</strong> postings can be posted to the "
 "associated Twitter account. You can choose to do so by default (here) or for"
 " every posting separately in the posting options when writing the entry."
 msgstr "Если включено, то все ваши <strong>общественные сообщения</strong> могут быть отправлены на связанный аккаунт Твиттер. Вы можете сделать это по умолчанию (здесь) или для каждого сообщения отдельно при написании записи."
 
-#: ../../addon/twitter/twitter.php:192
+#: ../../addon/twitter/twitter.php:192 ../../addon.old/twitter/twitter.php:192
 msgid ""
 "<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
 "details from unknown viewers?</em>) the link potentially included in public "
@@ -6890,130 +7531,138 @@ msgid ""
 "the visitor that the access to your profile has been restricted."
 msgstr ""
 
-#: ../../addon/twitter/twitter.php:195
+#: ../../addon/twitter/twitter.php:195 ../../addon.old/twitter/twitter.php:195
 msgid "Allow posting to Twitter"
 msgstr "Разрешить отправку сообщений на Twitter"
 
-#: ../../addon/twitter/twitter.php:198
+#: ../../addon/twitter/twitter.php:198 ../../addon.old/twitter/twitter.php:198
 msgid "Send public postings to Twitter by default"
 msgstr "Отправлять сообщения для всех на Твиттер по умолчанию"
 
-#: ../../addon/twitter/twitter.php:201
+#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:201
 msgid "Send linked #-tags and @-names to Twitter"
 msgstr ""
 
-#: ../../addon/twitter/twitter.php:396
+#: ../../addon/twitter/twitter.php:508 ../../addon.old/twitter/twitter.php:396
 msgid "Consumer key"
 msgstr "Consumer key"
 
-#: ../../addon/twitter/twitter.php:397
+#: ../../addon/twitter/twitter.php:509 ../../addon.old/twitter/twitter.php:397
 msgid "Consumer secret"
 msgstr "Consumer secret"
 
-#: ../../addon/irc/irc.php:44
+#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44
 msgid "IRC Settings"
 msgstr ""
 
-#: ../../addon/irc/irc.php:46
+#: ../../addon/irc/irc.php:46 ../../addon.old/irc/irc.php:46
 msgid "Channel(s) to auto connect (comma separated)"
 msgstr ""
 
-#: ../../addon/irc/irc.php:51
+#: ../../addon/irc/irc.php:51 ../../addon.old/irc/irc.php:51
 msgid "Popular Channels (comma separated)"
 msgstr ""
 
-#: ../../addon/irc/irc.php:69
+#: ../../addon/irc/irc.php:69 ../../addon.old/irc/irc.php:69
 msgid "IRC settings saved."
 msgstr ""
 
-#: ../../addon/irc/irc.php:74
+#: ../../addon/irc/irc.php:74 ../../addon.old/irc/irc.php:74
 msgid "IRC Chatroom"
 msgstr ""
 
-#: ../../addon/irc/irc.php:96
+#: ../../addon/irc/irc.php:96 ../../addon.old/irc/irc.php:96
 msgid "Popular Channels"
 msgstr ""
 
-#: ../../addon/fromapp/fromapp.php:38
+#: ../../addon/fromapp/fromapp.php:38 ../../addon.old/fromapp/fromapp.php:38
 msgid "Fromapp settings updated."
 msgstr ""
 
-#: ../../addon/fromapp/fromapp.php:64
+#: ../../addon/fromapp/fromapp.php:64 ../../addon.old/fromapp/fromapp.php:64
 msgid "FromApp Settings"
 msgstr ""
 
-#: ../../addon/fromapp/fromapp.php:66
+#: ../../addon/fromapp/fromapp.php:66 ../../addon.old/fromapp/fromapp.php:66
 msgid ""
 "The application name you would like to show your posts originating from."
 msgstr ""
 
-#: ../../addon/fromapp/fromapp.php:70
+#: ../../addon/fromapp/fromapp.php:70 ../../addon.old/fromapp/fromapp.php:70
 msgid "Use this application name even if another application was used."
 msgstr ""
 
-#: ../../addon/blogger/blogger.php:42
+#: ../../addon/blogger/blogger.php:42 ../../addon.old/blogger/blogger.php:42
 msgid "Post to blogger"
 msgstr ""
 
-#: ../../addon/blogger/blogger.php:74
+#: ../../addon/blogger/blogger.php:74 ../../addon.old/blogger/blogger.php:74
 msgid "Blogger Post Settings"
 msgstr ""
 
-#: ../../addon/blogger/blogger.php:76
+#: ../../addon/blogger/blogger.php:76 ../../addon.old/blogger/blogger.php:76
 msgid "Enable Blogger Post Plugin"
 msgstr ""
 
-#: ../../addon/blogger/blogger.php:81
+#: ../../addon/blogger/blogger.php:81 ../../addon.old/blogger/blogger.php:81
 msgid "Blogger username"
 msgstr ""
 
-#: ../../addon/blogger/blogger.php:86
+#: ../../addon/blogger/blogger.php:86 ../../addon.old/blogger/blogger.php:86
 msgid "Blogger password"
 msgstr ""
 
-#: ../../addon/blogger/blogger.php:91
+#: ../../addon/blogger/blogger.php:91 ../../addon.old/blogger/blogger.php:91
 msgid "Blogger API URL"
 msgstr ""
 
-#: ../../addon/blogger/blogger.php:96
+#: ../../addon/blogger/blogger.php:96 ../../addon.old/blogger/blogger.php:96
 msgid "Post to Blogger by default"
 msgstr ""
 
 #: ../../addon/posterous/posterous.php:37
+#: ../../addon.old/posterous/posterous.php:37
 msgid "Post to Posterous"
 msgstr ""
 
 #: ../../addon/posterous/posterous.php:70
+#: ../../addon.old/posterous/posterous.php:70
 msgid "Posterous Post Settings"
 msgstr ""
 
 #: ../../addon/posterous/posterous.php:72
+#: ../../addon.old/posterous/posterous.php:72
 msgid "Enable Posterous Post Plugin"
 msgstr "Включить Posterous  плагин сообщений"
 
 #: ../../addon/posterous/posterous.php:77
+#: ../../addon.old/posterous/posterous.php:77
 msgid "Posterous login"
 msgstr ""
 
 #: ../../addon/posterous/posterous.php:82
+#: ../../addon.old/posterous/posterous.php:82
 msgid "Posterous password"
 msgstr ""
 
 #: ../../addon/posterous/posterous.php:87
+#: ../../addon.old/posterous/posterous.php:87
 msgid "Posterous site ID"
 msgstr ""
 
 #: ../../addon/posterous/posterous.php:92
+#: ../../addon.old/posterous/posterous.php:92
 msgid "Posterous API token"
 msgstr ""
 
 #: ../../addon/posterous/posterous.php:97
+#: ../../addon.old/posterous/posterous.php:97
 msgid "Post to Posterous by default"
 msgstr ""
 
 #: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/diabook/config.php:192
-#: ../../view/theme/quattro/config.php:55 ../../view/theme/dispy/config.php:72
+#: ../../view/theme/diabook/config.php:154
+#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
 msgid "Theme settings"
 msgstr ""
 
@@ -7022,7 +7671,7 @@ msgid "Set resize level for images in posts and comments (width and height)"
 msgstr ""
 
 #: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/diabook/config.php:193
+#: ../../view/theme/diabook/config.php:155
 #: ../../view/theme/dispy/config.php:73
 msgid "Set font-size for posts and comments"
 msgstr ""
@@ -7032,193 +7681,185 @@ msgid "Set theme width"
 msgstr ""
 
 #: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:57
+#: ../../view/theme/quattro/config.php:68
 msgid "Color scheme"
 msgstr "Цветовая схема"
 
-#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:49
-#: ../../include/nav.php:115
+#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:49
+#: ../../include/nav.php:116
 msgid "Your posts and conversations"
 msgstr "Ваши сообщения и беседы"
 
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:50
+#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:50
 msgid "Your profile page"
 msgstr "Страница Вашего профиля"
 
-#: ../../view/theme/diabook/theme.php:129
+#: ../../view/theme/diabook/theme.php:89
 msgid "Your contacts"
 msgstr "Ваши контакты"
 
-#: ../../view/theme/diabook/theme.php:130 ../../include/nav.php:51
+#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:51
 msgid "Your photos"
 msgstr "Ваши фотографии"
 
-#: ../../view/theme/diabook/theme.php:131 ../../include/nav.php:52
+#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:52
 msgid "Your events"
 msgstr "Ваши события"
 
-#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
+#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
 msgid "Personal notes"
 msgstr "Личные заметки"
 
-#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
+#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
 msgid "Your personal photos"
 msgstr "Ваши личные фотографии"
 
-#: ../../view/theme/diabook/theme.php:134
-#: ../../view/theme/diabook/theme.php:643
-#: ../../view/theme/diabook/theme.php:747
-#: ../../view/theme/diabook/config.php:201
+#: ../../view/theme/diabook/theme.php:94
+#: ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:163
 msgid "Community Pages"
 msgstr "Страницы сообщества"
 
-#: ../../view/theme/diabook/theme.php:490
-#: ../../view/theme/diabook/theme.php:749
-#: ../../view/theme/diabook/config.php:203
+#: ../../view/theme/diabook/theme.php:384
+#: ../../view/theme/diabook/theme.php:634
+#: ../../view/theme/diabook/config.php:165
 msgid "Community Profiles"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:511
-#: ../../view/theme/diabook/theme.php:754
-#: ../../view/theme/diabook/config.php:208
+#: ../../view/theme/diabook/theme.php:405
+#: ../../view/theme/diabook/theme.php:639
+#: ../../view/theme/diabook/config.php:170
 msgid "Last users"
 msgstr "Последние пользователи"
 
-#: ../../view/theme/diabook/theme.php:540
-#: ../../view/theme/diabook/theme.php:756
-#: ../../view/theme/diabook/config.php:210
+#: ../../view/theme/diabook/theme.php:434
+#: ../../view/theme/diabook/theme.php:641
+#: ../../view/theme/diabook/config.php:172
 msgid "Last likes"
 msgstr "Последние likes"
 
-#: ../../view/theme/diabook/theme.php:585
-#: ../../view/theme/diabook/theme.php:755
-#: ../../view/theme/diabook/config.php:209
+#: ../../view/theme/diabook/theme.php:479
+#: ../../view/theme/diabook/theme.php:640
+#: ../../view/theme/diabook/config.php:171
 msgid "Last photos"
 msgstr "Последние фото"
 
-#: ../../view/theme/diabook/theme.php:622
-#: ../../view/theme/diabook/theme.php:752
-#: ../../view/theme/diabook/config.php:206
+#: ../../view/theme/diabook/theme.php:516
+#: ../../view/theme/diabook/theme.php:637
+#: ../../view/theme/diabook/config.php:168
 msgid "Find Friends"
 msgstr "Найти друзей"
 
-#: ../../view/theme/diabook/theme.php:623
+#: ../../view/theme/diabook/theme.php:517
 msgid "Local Directory"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:625 ../../include/contact_widgets.php:35
+#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35
 msgid "Similar Interests"
 msgstr "Похожие интересы"
 
-#: ../../view/theme/diabook/theme.php:627 ../../include/contact_widgets.php:37
+#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37
 msgid "Invite Friends"
 msgstr "Пригласить друзей"
 
-#: ../../view/theme/diabook/theme.php:678
-#: ../../view/theme/diabook/theme.php:748
-#: ../../view/theme/diabook/config.php:202
+#: ../../view/theme/diabook/theme.php:572
+#: ../../view/theme/diabook/theme.php:633
+#: ../../view/theme/diabook/config.php:164
 msgid "Earth Layers"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:683
+#: ../../view/theme/diabook/theme.php:577
 msgid "Set zoomfactor for Earth Layers"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:684
-#: ../../view/theme/diabook/config.php:199
+#: ../../view/theme/diabook/theme.php:578
+#: ../../view/theme/diabook/config.php:161
 msgid "Set longitude (X) for Earth Layers"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:685
-#: ../../view/theme/diabook/config.php:200
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/config.php:162
 msgid "Set latitude (Y) for Earth Layers"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:698
-#: ../../view/theme/diabook/theme.php:750
-#: ../../view/theme/diabook/config.php:204
+#: ../../view/theme/diabook/theme.php:592
+#: ../../view/theme/diabook/theme.php:635
+#: ../../view/theme/diabook/config.php:166
 msgid "Help or @NewHere ?"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:705
-#: ../../view/theme/diabook/theme.php:751
-#: ../../view/theme/diabook/config.php:205
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:636
+#: ../../view/theme/diabook/config.php:167
 msgid "Connect Services"
 msgstr "Подключить службы"
 
-#: ../../view/theme/diabook/theme.php:712
-#: ../../view/theme/diabook/theme.php:753
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:638
 msgid "Last Tweets"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:715
-#: ../../view/theme/diabook/config.php:197
+#: ../../view/theme/diabook/theme.php:609
+#: ../../view/theme/diabook/config.php:159
 msgid "Set twitter search term"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:735
-#: ../../view/theme/diabook/theme.php:736
-#: ../../view/theme/diabook/theme.php:737
-#: ../../view/theme/diabook/theme.php:738
-#: ../../view/theme/diabook/theme.php:739
-#: ../../view/theme/diabook/theme.php:740
-#: ../../view/theme/diabook/theme.php:741
-#: ../../view/theme/diabook/theme.php:742
-#: ../../view/theme/diabook/theme.php:743
-#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:288
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:288
 msgid "don't show"
 msgstr "не показывать"
 
-#: ../../view/theme/diabook/theme.php:735
-#: ../../view/theme/diabook/theme.php:736
-#: ../../view/theme/diabook/theme.php:737
-#: ../../view/theme/diabook/theme.php:738
-#: ../../view/theme/diabook/theme.php:739
-#: ../../view/theme/diabook/theme.php:740
-#: ../../view/theme/diabook/theme.php:741
-#: ../../view/theme/diabook/theme.php:742
-#: ../../view/theme/diabook/theme.php:743
-#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:287
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:287
 msgid "show"
 msgstr "показывать"
 
-#: ../../view/theme/diabook/theme.php:745
+#: ../../view/theme/diabook/theme.php:630
 msgid "Show/hide boxes at right-hand column:"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:194
+#: ../../view/theme/diabook/config.php:156
 #: ../../view/theme/dispy/config.php:74
 msgid "Set line-height for posts and comments"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:195
+#: ../../view/theme/diabook/config.php:157
 msgid "Set resolution for middle column"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:196
+#: ../../view/theme/diabook/config.php:158
 msgid "Set color scheme"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:198
+#: ../../view/theme/diabook/config.php:160
 msgid "Set zoomfactor for Earth Layer"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:207
+#: ../../view/theme/diabook/config.php:169
 msgid "Last tweets"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:56
+#: ../../view/theme/quattro/config.php:67
 msgid "Alignment"
 msgstr "Выравнивание"
 
-#: ../../view/theme/quattro/config.php:56
+#: ../../view/theme/quattro/config.php:67
 msgid "Left"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:56
+#: ../../view/theme/quattro/config.php:67
 msgid "Center"
 msgstr "Центр"
 
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr ""
+
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr ""
+
 #: ../../view/theme/dispy/config.php:75
 msgid "Set colour scheme"
 msgstr ""
@@ -7348,6 +7989,10 @@ msgstr "XMPP/IM"
 msgid "MySpace"
 msgstr "MySpace"
 
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr ""
+
 #: ../../include/profile_selectors.php:6
 msgid "Male"
 msgstr "Мужчина"
@@ -7589,11 +8234,11 @@ msgstr "Начало:"
 msgid "Finishes:"
 msgstr "Окончание:"
 
-#: ../../include/delivery.php:457 ../../include/notifier.php:703
+#: ../../include/delivery.php:457 ../../include/notifier.php:771
 msgid "(no subject)"
 msgstr "(без темы)"
 
-#: ../../include/Scrape.php:576
+#: ../../include/Scrape.php:583
 msgid " on Last.fm"
 msgstr ""
 
@@ -7621,11 +8266,11 @@ msgstr ""
 msgid "older"
 msgstr ""
 
-#: ../../include/text.php:597
+#: ../../include/text.php:604
 msgid "No contacts"
 msgstr "Нет контактов"
 
-#: ../../include/text.php:606
+#: ../../include/text.php:613
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
@@ -7633,219 +8278,219 @@ msgstr[0] "%d контакт"
 msgstr[1] "%d контактов"
 msgstr[2] "%d контактов"
 
-#: ../../include/text.php:719
+#: ../../include/text.php:726
 msgid "poke"
 msgstr ""
 
-#: ../../include/text.php:719 ../../include/conversation.php:210
+#: ../../include/text.php:726 ../../include/conversation.php:210
 msgid "poked"
 msgstr ""
 
-#: ../../include/text.php:720
+#: ../../include/text.php:727
 msgid "ping"
 msgstr ""
 
-#: ../../include/text.php:720
+#: ../../include/text.php:727
 msgid "pinged"
 msgstr ""
 
-#: ../../include/text.php:721
+#: ../../include/text.php:728
 msgid "prod"
 msgstr ""
 
-#: ../../include/text.php:721
+#: ../../include/text.php:728
 msgid "prodded"
 msgstr ""
 
-#: ../../include/text.php:722
+#: ../../include/text.php:729
 msgid "slap"
 msgstr ""
 
-#: ../../include/text.php:722
+#: ../../include/text.php:729
 msgid "slapped"
 msgstr ""
 
-#: ../../include/text.php:723
+#: ../../include/text.php:730
 msgid "finger"
 msgstr ""
 
-#: ../../include/text.php:723
+#: ../../include/text.php:730
 msgid "fingered"
 msgstr ""
 
-#: ../../include/text.php:724
+#: ../../include/text.php:731
 msgid "rebuff"
 msgstr ""
 
-#: ../../include/text.php:724
+#: ../../include/text.php:731
 msgid "rebuffed"
 msgstr ""
 
-#: ../../include/text.php:736
+#: ../../include/text.php:743
 msgid "happy"
 msgstr ""
 
-#: ../../include/text.php:737
+#: ../../include/text.php:744
 msgid "sad"
 msgstr ""
 
-#: ../../include/text.php:738
+#: ../../include/text.php:745
 msgid "mellow"
 msgstr ""
 
-#: ../../include/text.php:739
+#: ../../include/text.php:746
 msgid "tired"
 msgstr ""
 
-#: ../../include/text.php:740
+#: ../../include/text.php:747
 msgid "perky"
 msgstr ""
 
-#: ../../include/text.php:741
+#: ../../include/text.php:748
 msgid "angry"
 msgstr ""
 
-#: ../../include/text.php:742
+#: ../../include/text.php:749
 msgid "stupified"
 msgstr ""
 
-#: ../../include/text.php:743
+#: ../../include/text.php:750
 msgid "puzzled"
 msgstr ""
 
-#: ../../include/text.php:744
+#: ../../include/text.php:751
 msgid "interested"
 msgstr ""
 
-#: ../../include/text.php:745
+#: ../../include/text.php:752
 msgid "bitter"
 msgstr ""
 
-#: ../../include/text.php:746
+#: ../../include/text.php:753
 msgid "cheerful"
 msgstr ""
 
-#: ../../include/text.php:747
+#: ../../include/text.php:754
 msgid "alive"
 msgstr ""
 
-#: ../../include/text.php:748
+#: ../../include/text.php:755
 msgid "annoyed"
 msgstr ""
 
-#: ../../include/text.php:749
+#: ../../include/text.php:756
 msgid "anxious"
 msgstr ""
 
-#: ../../include/text.php:750
+#: ../../include/text.php:757
 msgid "cranky"
 msgstr ""
 
-#: ../../include/text.php:751
+#: ../../include/text.php:758
 msgid "disturbed"
 msgstr ""
 
-#: ../../include/text.php:752
+#: ../../include/text.php:759
 msgid "frustrated"
 msgstr ""
 
-#: ../../include/text.php:753
+#: ../../include/text.php:760
 msgid "motivated"
 msgstr ""
 
-#: ../../include/text.php:754
+#: ../../include/text.php:761
 msgid "relaxed"
 msgstr ""
 
-#: ../../include/text.php:755
+#: ../../include/text.php:762
 msgid "surprised"
 msgstr ""
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "January"
 msgstr "Январь"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "February"
 msgstr "Февраль"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "March"
 msgstr "Март"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "April"
 msgstr "Апрель"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "May"
 msgstr "Май"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "June"
 msgstr "Июнь"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "July"
 msgstr "Июль"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "August"
 msgstr "Август"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "September"
 msgstr "Сентябрь"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "October"
 msgstr "Октябрь"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "November"
 msgstr "Ноябрь"
 
-#: ../../include/text.php:921
+#: ../../include/text.php:926
 msgid "December"
 msgstr "Декабрь"
 
-#: ../../include/text.php:1007
+#: ../../include/text.php:1010
 msgid "bytes"
 msgstr "байт"
 
-#: ../../include/text.php:1034 ../../include/text.php:1046
+#: ../../include/text.php:1037 ../../include/text.php:1049
 msgid "Click to open/close"
 msgstr "Нажмите, чтобы открыть / закрыть"
 
-#: ../../include/text.php:1219 ../../include/user.php:236
+#: ../../include/text.php:1222 ../../include/user.php:236
 msgid "default"
 msgstr "значение по умолчанию"
 
-#: ../../include/text.php:1231
+#: ../../include/text.php:1234
 msgid "Select an alternate language"
 msgstr "Выбор альтернативного языка"
 
-#: ../../include/text.php:1441
+#: ../../include/text.php:1444
 msgid "activity"
 msgstr "активность"
 
-#: ../../include/text.php:1444
+#: ../../include/text.php:1447
 msgid "post"
 msgstr ""
 
-#: ../../include/text.php:1599
+#: ../../include/text.php:1602
 msgid "Item filed"
 msgstr ""
 
-#: ../../include/diaspora.php:691
+#: ../../include/diaspora.php:702
 msgid "Sharing notification from Diaspora network"
 msgstr "Делиться уведомлениями из сети Diaspora"
 
-#: ../../include/diaspora.php:2211
+#: ../../include/diaspora.php:2236
 msgid "Attachments:"
 msgstr "Вложения:"
 
-#: ../../include/network.php:849
+#: ../../include/network.php:847
 msgid "view full size"
 msgstr "посмотреть в полный размер"
 
@@ -7857,6 +8502,47 @@ msgstr "Встроенное содержание"
 msgid "Embedding disabled"
 msgstr "Встраивание отключено"
 
+#: ../../include/uimport.php:61
+msgid "Error decoding account file"
+msgstr ""
+
+#: ../../include/uimport.php:67
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr ""
+
+#: ../../include/uimport.php:72
+msgid "Error! I can't import this file: DB schema version is not compatible."
+msgstr ""
+
+#: ../../include/uimport.php:81
+msgid "Error! Cannot check nickname"
+msgstr ""
+
+#: ../../include/uimport.php:85
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr ""
+
+#: ../../include/uimport.php:104
+msgid "User creation error"
+msgstr ""
+
+#: ../../include/uimport.php:122
+msgid "User profile creation error"
+msgstr ""
+
+#: ../../include/uimport.php:167
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: ../../include/uimport.php:245
+msgid "Done. You can now login with your username and password"
+msgstr ""
+
 #: ../../include/group.php:25
 msgid ""
 "A deleted group with this name was revived. Existing item permissions "
@@ -7864,31 +8550,31 @@ msgid ""
 "not what you intended, please create another group with a different name."
 msgstr ""
 
-#: ../../include/group.php:176
+#: ../../include/group.php:207
 msgid "Default privacy group for new contacts"
 msgstr ""
 
-#: ../../include/group.php:195
+#: ../../include/group.php:226
 msgid "Everybody"
 msgstr "Каждый"
 
-#: ../../include/group.php:218
+#: ../../include/group.php:249
 msgid "edit"
 msgstr "редактировать"
 
-#: ../../include/group.php:240
+#: ../../include/group.php:271
 msgid "Edit group"
 msgstr "Редактировать группу"
 
-#: ../../include/group.php:241
+#: ../../include/group.php:272
 msgid "Create a new group"
 msgstr "Создать новую группу"
 
-#: ../../include/group.php:242
+#: ../../include/group.php:273
 msgid "Contacts not in any group"
 msgstr ""
 
-#: ../../include/nav.php:46 ../../boot.php:911
+#: ../../include/nav.php:46 ../../boot.php:948
 msgid "Logout"
 msgstr "Выход"
 
@@ -7896,7 +8582,7 @@ msgstr "Выход"
 msgid "End this session"
 msgstr "Конец этой сессии"
 
-#: ../../include/nav.php:49 ../../boot.php:1665
+#: ../../include/nav.php:49 ../../boot.php:1724
 msgid "Status"
 msgstr "Статус"
 
@@ -7944,55 +8630,63 @@ msgstr "Каталог участников"
 msgid "Conversations from your friends"
 msgstr "Беседы с друзьями"
 
-#: ../../include/nav.php:121
+#: ../../include/nav.php:114
+msgid "Network Reset"
+msgstr ""
+
+#: ../../include/nav.php:114
+msgid "Load Network page with no filters"
+msgstr ""
+
+#: ../../include/nav.php:122
 msgid "Friend Requests"
 msgstr "Запросы на добавление в список друзей"
 
-#: ../../include/nav.php:123
+#: ../../include/nav.php:124
 msgid "See all notifications"
 msgstr "Посмотреть все уведомления"
 
-#: ../../include/nav.php:124
+#: ../../include/nav.php:125
 msgid "Mark all system notifications seen"
 msgstr ""
 
-#: ../../include/nav.php:128
+#: ../../include/nav.php:129
 msgid "Private mail"
 msgstr "Личная почта"
 
-#: ../../include/nav.php:129
+#: ../../include/nav.php:130
 msgid "Inbox"
 msgstr "Входящие"
 
-#: ../../include/nav.php:130
+#: ../../include/nav.php:131
 msgid "Outbox"
 msgstr "Исходящие"
 
-#: ../../include/nav.php:134
+#: ../../include/nav.php:135
 msgid "Manage"
 msgstr "Управлять"
 
-#: ../../include/nav.php:134
+#: ../../include/nav.php:135
 msgid "Manage other pages"
 msgstr "Управление другими страницами"
 
-#: ../../include/nav.php:138 ../../boot.php:1186
+#: ../../include/nav.php:140 ../../boot.php:1238
 msgid "Profiles"
 msgstr "Профили"
 
-#: ../../include/nav.php:138 ../../boot.php:1186
-msgid "Manage/edit profiles"
-msgstr "Управление / редактирование профилей"
+#: ../../include/nav.php:140
+msgid "Manage/Edit Profiles"
+msgstr ""
 
-#: ../../include/nav.php:139
+#: ../../include/nav.php:142
 msgid "Manage/edit friends and contacts"
 msgstr "Управление / редактирование друзей и контактов"
 
-#: ../../include/nav.php:146
+#: ../../include/nav.php:149
 msgid "Site setup and configuration"
 msgstr "Установка и конфигурация сайта"
 
-#: ../../include/nav.php:170
+#: ../../include/nav.php:173
 msgid "Nothing new here"
 msgstr "Ничего нового здесь"
 
@@ -8036,37 +8730,37 @@ msgstr "Примеры: Роберт Morgenstein, Рыбалка"
 msgid "Random Profile"
 msgstr ""
 
-#: ../../include/contact_widgets.php:68
+#: ../../include/contact_widgets.php:70
 msgid "Networks"
 msgstr "Сети"
 
-#: ../../include/contact_widgets.php:71
+#: ../../include/contact_widgets.php:73
 msgid "All Networks"
 msgstr "Все сети"
 
-#: ../../include/contact_widgets.php:98
+#: ../../include/contact_widgets.php:103 ../../include/features.php:59
 msgid "Saved Folders"
 msgstr ""
 
-#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
 msgid "Everything"
 msgstr "Всё"
 
-#: ../../include/contact_widgets.php:126
+#: ../../include/contact_widgets.php:135
 msgid "Categories"
 msgstr "Категории"
 
-#: ../../include/auth.php:35
+#: ../../include/auth.php:36
 msgid "Logged out."
 msgstr "Выход из системы."
 
-#: ../../include/auth.php:114
+#: ../../include/auth.php:126
 msgid ""
 "We encountered a problem while logging in with the OpenID you provided. "
 "Please check the correct spelling of the ID."
 msgstr ""
 
-#: ../../include/auth.php:114
+#: ../../include/auth.php:126
 msgid "The error message was:"
 msgstr ""
 
@@ -8127,38 +8821,186 @@ msgstr "сек."
 msgid "%1$d %2$s ago"
 msgstr "%1$d %2$s назад"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1688
+#: ../../include/datetime.php:472 ../../include/items.php:1695
 #, php-format
 msgid "%s's birthday"
 msgstr ""
 
-#: ../../include/datetime.php:473 ../../include/items.php:1689
+#: ../../include/datetime.php:473 ../../include/items.php:1696
 #, php-format
 msgid "Happy Birthday %s"
 msgstr ""
 
-#: ../../include/onepoll.php:399
+#: ../../include/onepoll.php:414
 msgid "From: "
 msgstr "От: "
 
-#: ../../include/bbcode.php:185 ../../include/bbcode.php:406
+#: ../../include/bbcode.php:202 ../../include/bbcode.php:423
 msgid "Image/photo"
 msgstr "Изображение / Фото"
 
-#: ../../include/bbcode.php:371 ../../include/bbcode.php:391
+#: ../../include/bbcode.php:388 ../../include/bbcode.php:408
 msgid "$1 wrote:"
 msgstr "$1 написал:"
 
-#: ../../include/bbcode.php:410 ../../include/bbcode.php:411
+#: ../../include/bbcode.php:427 ../../include/bbcode.php:428
 msgid "Encrypted content"
 msgstr ""
 
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr ""
+
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr ""
+
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr ""
+
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr ""
+
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr ""
+
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr ""
+
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr ""
+
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr ""
+
+#: ../../include/features.php:37
+msgid "Network Sidebar Widgets"
+msgstr ""
+
+#: ../../include/features.php:38
+msgid "Search by Date"
+msgstr ""
+
+#: ../../include/features.php:38
+msgid "Ability to select posts by date ranges"
+msgstr ""
+
+#: ../../include/features.php:39
+msgid "Group Filter"
+msgstr ""
+
+#: ../../include/features.php:39
+msgid "Enable widget to display Network posts only from selected group"
+msgstr ""
+
+#: ../../include/features.php:40
+msgid "Network Filter"
+msgstr ""
+
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected network"
+msgstr ""
+
+#: ../../include/features.php:41
+msgid "Save search terms for re-use"
+msgstr ""
+
+#: ../../include/features.php:46
+msgid "Network Tabs"
+msgstr ""
+
+#: ../../include/features.php:47
+msgid "Network Personal Tab"
+msgstr ""
+
+#: ../../include/features.php:47
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr ""
+
+#: ../../include/features.php:48
+msgid "Network New Tab"
+msgstr ""
+
+#: ../../include/features.php:48
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr ""
+
+#: ../../include/features.php:49
+msgid "Network Shared Links Tab"
+msgstr ""
+
+#: ../../include/features.php:49
+msgid "Enable tab to display only Network posts with links in them"
+msgstr ""
+
+#: ../../include/features.php:54
+msgid "Post/Comment Tools"
+msgstr ""
+
+#: ../../include/features.php:55
+msgid "Multiple Deletion"
+msgstr ""
+
+#: ../../include/features.php:55
+msgid "Select and delete multiple posts/comments at once"
+msgstr ""
+
+#: ../../include/features.php:56
+msgid "Edit Sent Posts"
+msgstr ""
+
+#: ../../include/features.php:56
+msgid "Edit and correct posts and comments after sending"
+msgstr ""
+
+#: ../../include/features.php:57
+msgid "Tagging"
+msgstr ""
+
+#: ../../include/features.php:57
+msgid "Ability to tag existing posts"
+msgstr ""
+
+#: ../../include/features.php:58
+msgid "Post Categories"
+msgstr ""
+
+#: ../../include/features.php:58
+msgid "Add categories to your posts"
+msgstr ""
+
+#: ../../include/features.php:59
+msgid "Ability to file posts under folders"
+msgstr ""
+
+#: ../../include/features.php:60
+msgid "Dislike Posts"
+msgstr ""
+
+#: ../../include/features.php:60
+msgid "Ability to dislike posts/comments"
+msgstr ""
+
+#: ../../include/features.php:61
+msgid "Star Posts"
+msgstr ""
+
+#: ../../include/features.php:61
+msgid "Ability to mark special posts with a star indicator"
+msgstr ""
+
 #: ../../include/dba.php:41
 #, php-format
 msgid "Cannot locate DNS info for database server '%s'"
 msgstr "Не могу найти информацию для DNS-сервера базы данных '%s'"
 
-#: ../../include/message.php:15 ../../include/message.php:171
+#: ../../include/message.php:15 ../../include/message.php:172
 msgid "[no subject]"
 msgstr "[без темы]"
 
@@ -8407,15 +9249,15 @@ msgstr "Невозможно получить контактную информ
 msgid "following"
 msgstr "следует"
 
-#: ../../include/items.php:3299
+#: ../../include/items.php:3363
 msgid "A new person is sharing with you at "
 msgstr "Новый человек делится с вами"
 
-#: ../../include/items.php:3299
+#: ../../include/items.php:3363
 msgid "You have a new follower at "
 msgstr "У вас есть новый фолловер на "
 
-#: ../../include/items.php:3980
+#: ../../include/items.php:4047
 msgid "Archives"
 msgstr ""
 
@@ -8499,44 +9341,44 @@ msgstr "Пожалуйста, загрузите фотографию профи
 msgid "Welcome back "
 msgstr "Добро пожаловать обратно, "
 
-#: ../../include/security.php:344
+#: ../../include/security.php:357
 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/Contact.php:111
+#: ../../include/Contact.php:115
 msgid "stopped following"
 msgstr "остановлено следование"
 
-#: ../../include/Contact.php:220 ../../include/conversation.php:734
+#: ../../include/Contact.php:225 ../../include/conversation.php:795
 msgid "Poke"
 msgstr ""
 
-#: ../../include/Contact.php:221 ../../include/conversation.php:728
+#: ../../include/Contact.php:226 ../../include/conversation.php:789
 msgid "View Status"
 msgstr ""
 
-#: ../../include/Contact.php:222 ../../include/conversation.php:729
+#: ../../include/Contact.php:227 ../../include/conversation.php:790
 msgid "View Profile"
 msgstr ""
 
-#: ../../include/Contact.php:223 ../../include/conversation.php:730
+#: ../../include/Contact.php:228 ../../include/conversation.php:791
 msgid "View Photos"
 msgstr ""
 
-#: ../../include/Contact.php:224 ../../include/Contact.php:237
-#: ../../include/conversation.php:731
+#: ../../include/Contact.php:229 ../../include/Contact.php:242
+#: ../../include/conversation.php:792
 msgid "Network Posts"
 msgstr ""
 
-#: ../../include/Contact.php:225 ../../include/Contact.php:237
-#: ../../include/conversation.php:732
+#: ../../include/Contact.php:230 ../../include/Contact.php:242
+#: ../../include/conversation.php:793
 msgid "Edit Contact"
 msgstr ""
 
-#: ../../include/Contact.php:226 ../../include/Contact.php:237
-#: ../../include/conversation.php:733
+#: ../../include/Contact.php:231 ../../include/Contact.php:242
+#: ../../include/conversation.php:794
 msgid "Send PM"
 msgstr "Отправить ЛС"
 
@@ -8554,118 +9396,90 @@ msgstr ""
 msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr "%1$s пометил %2$s %3$s как Фаворит"
 
-#: ../../include/conversation.php:545 ../../object/Item.php:218
+#: ../../include/conversation.php:599 ../../object/Item.php:225
 msgid "Categories:"
 msgstr ""
 
-#: ../../include/conversation.php:546 ../../object/Item.php:219
+#: ../../include/conversation.php:600 ../../object/Item.php:226
 msgid "Filed under:"
 msgstr ""
 
-#: ../../include/conversation.php:630
+#: ../../include/conversation.php:685
 msgid "remove"
 msgstr "удалить"
 
-#: ../../include/conversation.php:634
+#: ../../include/conversation.php:689
 msgid "Delete Selected Items"
 msgstr "Удалить выбранные позиции"
 
-#: ../../include/conversation.php:792
+#: ../../include/conversation.php:788
+msgid "Follow Thread"
+msgstr ""
+
+#: ../../include/conversation.php:857
 #, php-format
 msgid "%s likes this."
 msgstr "%s нравится это."
 
-#: ../../include/conversation.php:792
+#: ../../include/conversation.php:857
 #, php-format
 msgid "%s doesn't like this."
 msgstr "%s не нравится это."
 
-#: ../../include/conversation.php:796
+#: ../../include/conversation.php:861
 #, php-format
 msgid "<span  %1$s>%2$d people</span> like this."
 msgstr "<span  %1$s>%2$d чел.</span> нравится это."
 
-#: ../../include/conversation.php:798
+#: ../../include/conversation.php:863
 #, php-format
 msgid "<span  %1$s>%2$d people</span> don't like this."
 msgstr "<span  %1$s>%2$d чел.</span> не нравится это."
 
-#: ../../include/conversation.php:804
+#: ../../include/conversation.php:869
 msgid "and"
 msgstr "и"
 
-#: ../../include/conversation.php:807
+#: ../../include/conversation.php:875
 #, php-format
 msgid ", and %d other people"
 msgstr ", и %d других чел."
 
-#: ../../include/conversation.php:808
+#: ../../include/conversation.php:877
 #, php-format
 msgid "%s like this."
 msgstr "%s нравится это."
 
-#: ../../include/conversation.php:808
+#: ../../include/conversation.php:877
 #, php-format
 msgid "%s don't like this."
 msgstr "%s не нравится это."
 
-#: ../../include/conversation.php:832 ../../include/conversation.php:849
+#: ../../include/conversation.php:904 ../../include/conversation.php:922
 msgid "Visible to <strong>everybody</strong>"
 msgstr "Видимое <strong>всем</strong>"
 
-#: ../../include/conversation.php:834 ../../include/conversation.php:851
+#: ../../include/conversation.php:906 ../../include/conversation.php:924
 msgid "Please enter a video link/URL:"
 msgstr ""
 
-#: ../../include/conversation.php:835 ../../include/conversation.php:852
+#: ../../include/conversation.php:907 ../../include/conversation.php:925
 msgid "Please enter an audio link/URL:"
 msgstr ""
 
-#: ../../include/conversation.php:836 ../../include/conversation.php:853
+#: ../../include/conversation.php:908 ../../include/conversation.php:926
 msgid "Tag term:"
 msgstr ""
 
-#: ../../include/conversation.php:838 ../../include/conversation.php:855
+#: ../../include/conversation.php:910 ../../include/conversation.php:928
 msgid "Where are you right now?"
 msgstr "И где вы сейчас?"
 
-#: ../../include/conversation.php:898
-msgid "upload photo"
-msgstr "загрузить фото"
-
-#: ../../include/conversation.php:900
-msgid "attach file"
-msgstr "приложить файл"
-
-#: ../../include/conversation.php:902
-msgid "web link"
-msgstr "веб-ссылка"
-
-#: ../../include/conversation.php:903
-msgid "Insert video link"
-msgstr "Вставить ссылку видео"
-
-#: ../../include/conversation.php:904
-msgid "video link"
-msgstr "видео-ссылка"
-
-#: ../../include/conversation.php:905
-msgid "Insert audio link"
-msgstr "Вставить ссылку аудио"
-
-#: ../../include/conversation.php:906
-msgid "audio link"
-msgstr "аудио-ссылка"
-
-#: ../../include/conversation.php:908
-msgid "set location"
-msgstr "установить местонахождение"
-
-#: ../../include/conversation.php:910
-msgid "clear location"
-msgstr "убрать местонахождение"
+#: ../../include/conversation.php:911
+msgid "Delete item(s)?"
+msgstr ""
 
-#: ../../include/conversation.php:917
+#: ../../include/conversation.php:990
 msgid "permissions"
 msgstr "разрешения"
 
@@ -8681,100 +9495,172 @@ msgstr ""
 msgid "This action is not available under your subscription plan."
 msgstr ""
 
-#: ../../boot.php:573
+#: ../../boot.php:607
 msgid "Delete this item?"
 msgstr "Удалить этот элемент?"
 
-#: ../../boot.php:576
+#: ../../boot.php:610
 msgid "show fewer"
 msgstr "показать меньше"
 
-#: ../../boot.php:783
+#: ../../boot.php:819
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr ""
 
-#: ../../boot.php:785
+#: ../../boot.php:821
 #, php-format
 msgid "Update Error at %s"
 msgstr ""
 
-#: ../../boot.php:886
+#: ../../boot.php:922
 msgid "Create a New Account"
 msgstr "Создать новый аккаунт"
 
-#: ../../boot.php:914
+#: ../../boot.php:951
 msgid "Nickname or Email address: "
 msgstr "Ник или адрес электронной почты: "
 
-#: ../../boot.php:915
+#: ../../boot.php:952
 msgid "Password: "
 msgstr "Пароль: "
 
-#: ../../boot.php:918
+#: ../../boot.php:953
+msgid "Remember me"
+msgstr ""
+
+#: ../../boot.php:956
 msgid "Or login using OpenID: "
 msgstr ""
 
-#: ../../boot.php:924
+#: ../../boot.php:962
 msgid "Forgot your password?"
 msgstr "Забыли пароль?"
 
-#: ../../boot.php:1035
+#: ../../boot.php:1087
 msgid "Requested account is not available."
 msgstr ""
 
-#: ../../boot.php:1112
+#: ../../boot.php:1164
 msgid "Edit profile"
 msgstr "Редактировать профиль"
 
-#: ../../boot.php:1178
+#: ../../boot.php:1230
 msgid "Message"
 msgstr ""
 
-#: ../../boot.php:1300 ../../boot.php:1386
+#: ../../boot.php:1238
+msgid "Manage/edit profiles"
+msgstr "Управление / редактирование профилей"
+
+#: ../../boot.php:1352 ../../boot.php:1438
 msgid "g A l F d"
 msgstr "g A l F d"
 
-#: ../../boot.php:1301 ../../boot.php:1387
+#: ../../boot.php:1353 ../../boot.php:1439
 msgid "F d"
 msgstr "F d"
 
-#: ../../boot.php:1346 ../../boot.php:1427
+#: ../../boot.php:1398 ../../boot.php:1479
 msgid "[today]"
 msgstr "[сегодня]"
 
-#: ../../boot.php:1358
+#: ../../boot.php:1410
 msgid "Birthday Reminders"
 msgstr "Напоминания о днях рождения"
 
-#: ../../boot.php:1359
+#: ../../boot.php:1411
 msgid "Birthdays this week:"
 msgstr "Дни рождения на этой неделе:"
 
-#: ../../boot.php:1420
+#: ../../boot.php:1472
 msgid "[No description]"
 msgstr "[без описания]"
 
-#: ../../boot.php:1438
+#: ../../boot.php:1490
 msgid "Event Reminders"
 msgstr "Напоминания о мероприятиях"
 
-#: ../../boot.php:1439
+#: ../../boot.php:1491
 msgid "Events this week:"
 msgstr "Мероприятия на этой неделе:"
 
-#: ../../boot.php:1668
+#: ../../boot.php:1727
 msgid "Status Messages and Posts"
 msgstr ""
 
-#: ../../boot.php:1675
+#: ../../boot.php:1734
 msgid "Profile Details"
 msgstr ""
 
-#: ../../boot.php:1692
+#: ../../boot.php:1751
 msgid "Events and Calendar"
 msgstr ""
 
-#: ../../boot.php:1699
+#: ../../boot.php:1758
 msgid "Only You Can See This"
 msgstr ""
+
+#: ../../object/Item.php:237
+msgid "via"
+msgstr ""
+
+#: ../../index.php:398
+msgid "toggle mobile"
+msgstr ""
+
+#: ../../addon.old/bg/bg.php:51
+msgid "Bg settings updated."
+msgstr ""
+
+#: ../../addon.old/bg/bg.php:82
+msgid "Bg Settings"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:35
+msgid "Post to Drupal"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:72
+msgid "Drupal Post Settings"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:74
+msgid "Enable Drupal Post Plugin"
+msgstr "Включить Drupal  плагин сообщений"
+
+#: ../../addon.old/drpost/drpost.php:79
+msgid "Drupal username"
+msgstr "Drupal имя пользователя"
+
+#: ../../addon.old/drpost/drpost.php:84
+msgid "Drupal password"
+msgstr "Drupal пароль"
+
+#: ../../addon.old/drpost/drpost.php:89
+msgid "Post Type - article,page,or blog"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:94
+msgid "Drupal site URL"
+msgstr "Drupal site URL"
+
+#: ../../addon.old/drpost/drpost.php:99
+msgid "Drupal site uses clean URLS"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:104
+msgid "Post to Drupal by default"
+msgstr ""
+
+#: ../../addon.old/oembed.old/oembed.php:30
+msgid "OEmbed settings updated"
+msgstr "OEmbed настройки обновлены"
+
+#: ../../addon.old/oembed.old/oembed.php:43
+msgid "Use OEmbed for YouTube videos"
+msgstr "Использовать OEmbed для видео YouTube"
+
+#: ../../addon.old/oembed.old/oembed.php:71
+msgid "URL to embed:"
+msgstr "URL для встраивания:"
index 87daa7b57d9c0171cdcad9f34715743f6ce1f897..4111fa8e534d001b226004273f800d996a8034ea 100644 (file)
@@ -58,11 +58,11 @@ $a->strings["Tag removed"] = "Ключевое слово удалено";
 $a->strings["Remove Item Tag"] = "Удалить ключевое слово";
 $a->strings["Select a tag to remove: "] = "Выберите ключевое слово для удаления: ";
 $a->strings["Remove"] = "Удалить";
-$a->strings["%s welcomes %s"] = "%s приветствует %s";
+$a->strings["%1\$s welcomes %2\$s"] = "";
 $a->strings["Authorize application connection"] = "Разрешить связь с приложением";
 $a->strings["Return to your app and insert this Securty Code:"] = "Вернитесь в ваше приложение и задайте этот код:";
 $a->strings["Please login to continue."] = "Пожалуйста, войдите для продолжения.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?";
 $a->strings["Yes"] = "Да";
 $a->strings["No"] = "Нет";
 $a->strings["Photo Albums"] = "Фотоальбомы";
@@ -74,9 +74,8 @@ $a->strings["Profile Photos"] = "Фотографии профиля";
 $a->strings["Album not found."] = "Альбом не найден.";
 $a->strings["Delete Album"] = "Удалить альбом";
 $a->strings["Delete Photo"] = "Удалить фото";
-$a->strings["was tagged in a"] = "отмечен/а/ в";
-$a->strings["photo"] = "фото";
-$a->strings["by"] = "с";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
+$a->strings["a photo"] = "";
 $a->strings["Image exceeds size limit of "] = "Размер фото превышает лимит ";
 $a->strings["Image file is empty."] = "Файл изображения пуст.";
 $a->strings["Unable to process image."] = "Невозможно обработать фото.";
@@ -85,7 +84,6 @@ $a->strings["Public access denied."] = "Свободный доступ закр
 $a->strings["No photos selected"] = "Не выбрано фото.";
 $a->strings["Access to this item is restricted."] = "Доступ к этому пункту ограничен.";
 $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "";
-$a->strings["You have used %1$.2f Mbytes of photo storage."] = "";
 $a->strings["Upload Photos"] = "Загрузить фото";
 $a->strings["New album name: "] = "Название нового альбома: ";
 $a->strings["or existing album name: "] = "или название существующего альбома: ";
@@ -127,7 +125,7 @@ $a->strings["This is Friendica, version"] = "Это Friendica, версия";
 $a->strings["running at web location"] = "работает на веб-узле";
 $a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "";
 $a->strings["Bug reports and issues: please visit"] = "Отчет об ошибках и проблемах: пожалуйста, посетите";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com";
 $a->strings["Installed plugins/addons/apps:"] = "";
 $a->strings["No installed plugins/addons/apps"] = "Нет установленных плагинов / добавок / приложений";
 $a->strings["Item not found"] = "Элемент не найден";
@@ -135,13 +133,19 @@ $a->strings["Edit post"] = "Редактировать сообщение";
 $a->strings["Post to Email"] = "Отправить на Email";
 $a->strings["Edit"] = "Редактировать";
 $a->strings["Upload photo"] = "Загрузить фото";
+$a->strings["upload photo"] = "загрузить фото";
 $a->strings["Attach file"] = "Приложить файл";
+$a->strings["attach file"] = "приложить файл";
 $a->strings["Insert web link"] = "Вставить веб-ссылку";
-$a->strings["Insert YouTube video"] = "Вставить видео YouTube";
-$a->strings["Insert Vorbis [.ogg] video"] = "Вставить Vorbis [.ogg] видео";
-$a->strings["Insert Vorbis [.ogg] audio"] = "Вставить Vorbis [.ogg] аудио";
+$a->strings["web link"] = "веб-ссылка";
+$a->strings["Insert video link"] = "Вставить ссылку видео";
+$a->strings["video link"] = "видео-ссылка";
+$a->strings["Insert audio link"] = "Вставить ссылку аудио";
+$a->strings["audio link"] = "аудио-ссылка";
 $a->strings["Set your location"] = "Задать ваше местоположение";
+$a->strings["set location"] = "установить местонахождение";
 $a->strings["Clear browser location"] = "Очистить местонахождение браузера";
+$a->strings["clear location"] = "убрать местонахождение";
 $a->strings["Permission settings"] = "Настройки разрешений";
 $a->strings["CC: email addresses"] = "Копии на email адреса";
 $a->strings["Public post"] = "Публичное сообщение";
@@ -194,6 +198,18 @@ $a->strings["Diaspora"] = "Diaspora";
 $a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "";
 $a->strings["Your Identity Address:"] = "Ваш идентификационный адрес:";
 $a->strings["Submit Request"] = "Отправить запрос";
+$a->strings["Account settings"] = "Настройки аккаунта";
+$a->strings["Display settings"] = "Параметры дисплея";
+$a->strings["Connector settings"] = "Настройки соединителя";
+$a->strings["Plugin settings"] = "Настройки плагина";
+$a->strings["Connected apps"] = "";
+$a->strings["Export personal data"] = "Экспорт личных данных";
+$a->strings["Remove account"] = "";
+$a->strings["Settings"] = "Настройки";
+$a->strings["Export account"] = "";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "";
+$a->strings["Export all"] = "";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "";
 $a->strings["Friendica Social Communications Server - Setup"] = "";
 $a->strings["Could not connect to database."] = "Не удалось подключиться к базе данных.";
 $a->strings["Could not create table."] = "Не удалось создать таблицу.";
@@ -375,16 +391,16 @@ $a->strings["%d contact in common"] = array(
 );
 $a->strings["View all contacts"] = "Показать все контакты";
 $a->strings["Unblock"] = "Разблокировать";
-$a->strings["Block"] = "Ð\91локировать";
-$a->strings["Toggle Blocked status"] = "";
+$a->strings["Block"] = "Ð\97аблокировать";
+$a->strings["Toggle Blocked status"] = "Изменить статус блокированности (заблокировать/разблокировать)";
 $a->strings["Unignore"] = "Не игнорировать";
-$a->strings["Toggle Ignored status"] = "";
-$a->strings["Unarchive"] = "";
-$a->strings["Archive"] = "";
-$a->strings["Toggle Archive status"] = "";
+$a->strings["Toggle Ignored status"] = "Изменить статус игнорирования";
+$a->strings["Unarchive"] = "Разархивировать";
+$a->strings["Archive"] = "Архивировать";
+$a->strings["Toggle Archive status"] = "Сменить статус архивации (архивирова/не архивировать)";
 $a->strings["Repair"] = "Восстановить";
-$a->strings["Advanced Contact Settings"] = "";
-$a->strings["Communications lost with this contact!"] = "";
+$a->strings["Advanced Contact Settings"] = "Дополнительные Настройки Контакта";
+$a->strings["Communications lost with this contact!"] = "Связь с контактом утеряна!";
 $a->strings["Contact Editor"] = "Редактор контакта";
 $a->strings["Profile Visibility"] = "Видимость профиля";
 $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен.";
@@ -401,21 +417,21 @@ $a->strings["Update public posts"] = "Обновить публичные соо
 $a->strings["Update now"] = "Обновить сейчас";
 $a->strings["Currently blocked"] = "В настоящее время заблокирован";
 $a->strings["Currently ignored"] = "В настоящее время игнорируется";
-$a->strings["Currently archived"] = "";
+$a->strings["Currently archived"] = "В данный момент архивирован";
 $a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
 $a->strings["Suggestions"] = "";
-$a->strings["Suggest potential friends"] = "";
+$a->strings["Suggest potential friends"] = "Предложить потенциального знакомого";
 $a->strings["All Contacts"] = "Все контакты";
-$a->strings["Show all contacts"] = "";
-$a->strings["Unblocked"] = "";
-$a->strings["Only show unblocked contacts"] = "";
-$a->strings["Blocked"] = "";
-$a->strings["Only show blocked contacts"] = "";
-$a->strings["Ignored"] = "";
-$a->strings["Only show ignored contacts"] = "";
-$a->strings["Archived"] = "";
+$a->strings["Show all contacts"] = "Показать все контакты";
+$a->strings["Unblocked"] = "Не блокирован";
+$a->strings["Only show unblocked contacts"] = "Показать только не блокированные контакты";
+$a->strings["Blocked"] = "Заблокирован";
+$a->strings["Only show blocked contacts"] = "Показать только блокированные контакты";
+$a->strings["Ignored"] = "Игнорирован";
+$a->strings["Only show ignored contacts"] = "Показать только игнорируемые контакты";
+$a->strings["Archived"] = "Архивированные";
 $a->strings["Only show archived contacts"] = "";
-$a->strings["Hidden"] = "";
+$a->strings["Hidden"] = "Скрытые";
 $a->strings["Only show hidden contacts"] = "";
 $a->strings["Mutual Friendship"] = "Взаимная дружба";
 $a->strings["is a fan of yours"] = "является вашим поклонником";
@@ -440,18 +456,12 @@ $a->strings["Forgot your Password?"] = "Забыли пароль?";
 $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций.";
 $a->strings["Nickname or Email: "] = "Ник или E-mail: ";
 $a->strings["Reset"] = "Сброс";
-$a->strings["Account settings"] = "Настройки аккаунта";
-$a->strings["Display settings"] = "Параметры дисплея";
-$a->strings["Connector settings"] = "Настройки соединителя";
-$a->strings["Plugin settings"] = "Настройки плагина";
-$a->strings["Connected apps"] = "";
-$a->strings["Export personal data"] = "Экспорт личных данных";
-$a->strings["Remove account"] = "";
-$a->strings["Settings"] = "Настройки";
+$a->strings["Additional features"] = "";
 $a->strings["Missing some important data!"] = "Не хватает важных данных!";
 $a->strings["Update"] = "Обновление";
 $a->strings["Failed to connect with email account using the settings provided."] = "Не удалось подключиться к аккаунту e-mail, используя указанные настройки.";
 $a->strings["Email settings updated."] = "Настройки эл. почты обновлены.";
+$a->strings["Features updated"] = "";
 $a->strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменен.";
 $a->strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменен.";
 $a->strings["Password changed."] = "Пароль изменен.";
@@ -475,6 +485,9 @@ $a->strings["No name"] = "Нет имени";
 $a->strings["Remove authorization"] = "Удалить авторизацию";
 $a->strings["No Plugin settings configured"] = "Нет сконфигурированных настроек плагина";
 $a->strings["Plugin Settings"] = "Настройки плагина";
+$a->strings["Off"] = "";
+$a->strings["On"] = "";
+$a->strings["Additional Features"] = "";
 $a->strings["Built-in support for %s connectivity is %s"] = "Встроенная  поддержка для %s подключение %s";
 $a->strings["enabled"] = "подключено";
 $a->strings["disabled"] = "отключено";
@@ -584,10 +597,10 @@ $a->strings["Sort by Post Date"] = "";
 $a->strings["Posts that mention or involve you"] = "";
 $a->strings["New"] = "Новый";
 $a->strings["Activity Stream - by date"] = "";
-$a->strings["Starred"] = "Помеченный";
-$a->strings["Favourite Posts"] = "";
 $a->strings["Shared Links"] = "";
 $a->strings["Interesting Links"] = "";
+$a->strings["Starred"] = "Помеченный";
+$a->strings["Favourite Posts"] = "";
 $a->strings["Warning: This group contains %s member from an insecure network."] = array(
        0 => "Внимание: Эта группа содержит %s участника с незащищенной сети.",
        1 => "Внимание: Эта группа содержит %s участников с незащищенной сети.",
@@ -599,6 +612,12 @@ $a->strings["Private messages to this person are at risk of public disclosure."]
 $a->strings["Invalid contact."] = "Недопустимый контакт.";
 $a->strings["Personal Notes"] = "Личные заметки";
 $a->strings["Save"] = "Сохранить";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
+$a->strings["Import"] = "";
+$a->strings["Move account"] = "";
+$a->strings["You can import an account from another Friendica server. <br>\r\n                            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.<br>\r\n                            <b>This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"] = "";
+$a->strings["Account file"] = "";
+$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "";
 $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
 $a->strings["No recipient selected."] = "Не выбран получатель.";
 $a->strings["Unable to check your home location."] = "";
@@ -674,7 +693,6 @@ $a->strings["Failed to send email message. Here is the message that failed."] =
 $a->strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана.";
 $a->strings["Registration request at %s"] = "Запрос на регистрацию на %s";
 $a->strings["Your registration is pending approval by the site owner."] = "Ваша регистрация в ожидании одобрения владельцем сайта.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
 $a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\".";
 $a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы.";
 $a->strings["Your OpenID (optional): "] = "Ваш OpenID (необязательно):";
@@ -688,6 +706,7 @@ $a->strings["Choose a profile nickname. This must begin with a text character. Y
 $a->strings["Choose a nickname: "] = "Выберите псевдоним: ";
 $a->strings["Register"] = "Регистрация";
 $a->strings["People Search"] = "Поиск людей";
+$a->strings["photo"] = "фото";
 $a->strings["status"] = "статус";
 $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %3\$s от %2\$s ";
 $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %3\$s от %2\$s ";
@@ -711,7 +730,7 @@ $a->strings["Mood"] = "";
 $a->strings["Set your current mood and tell your friends"] = "";
 $a->strings["Image uploaded but image cropping failed."] = "Изображение загружено, но обрезка изображения не удалась.";
 $a->strings["Image size reduction [%s] failed."] = "Уменьшение размера изображения [%s] не удалось.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно.";
 $a->strings["Unable to process image"] = "Не удается обработать изображение";
 $a->strings["Image exceeds size limit of %d"] = "Изображение превышает предельный размер %d";
 $a->strings["Upload File:"] = "Загрузить файл:";
@@ -797,10 +816,12 @@ $a->strings["Maximum length in pixels of the longest side of uploaded images. De
 $a->strings["JPEG image quality"] = "";
 $a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
 $a->strings["Register policy"] = "Политика регистрация";
+$a->strings["Maximum Daily Registrations"] = "";
+$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "";
 $a->strings["Register text"] = "Текст регистрации";
 $a->strings["Will be displayed prominently on the registration page."] = "";
 $a->strings["Accounts abandoned after x days"] = "Аккаунт считается после x дней не воспользованным";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени.";
 $a->strings["Allowed friend domains"] = "Разрешенные домены друзей";
 $a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
 $a->strings["Allowed email domains"] = "Разрешенные почтовые домены";
@@ -921,6 +942,7 @@ $a->strings["Login failed."] = "Войти не удалось.";
 $a->strings["Contact added"] = "";
 $a->strings["Common Friends"] = "Общие друзья";
 $a->strings["No contacts in common."] = "";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
 $a->strings["link"] = "";
 $a->strings["Item has been removed."] = "Пункт был удален.";
 $a->strings["Applications"] = "Приложения";
@@ -1067,7 +1089,7 @@ $a->strings["No user record found for '%s' "] = "Не найдено запис
 $a->strings["Our site encryption key is apparently messed up."] = "Наш ключ шифрования сайта, по-видимому, перепутался.";
 $a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами.";
 $a->strings["Contact record was not found for you on our site."] = "Запись контакта не найдена для вас на нашем сайте.";
-$a->strings["Site public key not available in contact record for URL %s."] = "";
+$a->strings["Site public key not available in contact record for URL %s."] = "Публичный ключ недоступен в записи о контакте по ссылке %s";
 $a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку.";
 $a->strings["Unable to set your contact credentials on our system."] = "Не удалось установить ваши учетные данные контакта в нашей системе.";
 $a->strings["Unable to update your contact profile details on our system"] = "Не удается обновить ваши контактные детали профиля в нашей системе";
@@ -1083,15 +1105,15 @@ $a->strings["Facebook API key is missing."] = "Отсутствует ключ F
 $a->strings["Facebook Connect"] = "Facebook подключение";
 $a->strings["Install Facebook connector for this account."] = "Установить Facebook Connector для этого аккаунта.";
 $a->strings["Remove Facebook connector"] = "Удалить Facebook Connector";
-$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "";
+$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Переаутентификация [Это необходимо, если вы изменили пароль на Facebook.]";
 $a->strings["Post to Facebook by default"] = "Отправлять на Facebook по умолчанию";
 $a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
 $a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
-$a->strings["Link all your Facebook friends and conversations on this website"] = "";
+$a->strings["Link all your Facebook friends and conversations on this website"] = "Прикрепите своих друзей и общение с Facebook на этот сайт";
 $a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "";
-$a->strings["On this website, your Facebook friend stream is only visible to you."] = "";
-$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "";
-$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "";
+$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Facebook-лента друзей видна только вам.";
+$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Следующие настройки определяют параметры приватности вашей стены с Facebook на этом сайте.";
+$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Ваша лента профиля Facebook будет видна только вам";
 $a->strings["Do not import your Facebook profile wall conversations"] = "Не импортировать Facebook разговоров с Вашей страницы";
 $a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "";
 $a->strings["Comma separated applications to ignore"] = "Игнорировать приложения (список через запятую)";
@@ -1122,9 +1144,6 @@ $a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Face
 $a->strings["StatusNet AutoFollow settings updated."] = "";
 $a->strings["StatusNet AutoFollow Settings"] = "";
 $a->strings["Automatically follow any StatusNet followers/mentioners"] = "";
-$a->strings["Bg settings updated."] = "";
-$a->strings["Bg Settings"] = "";
-$a->strings["How many contacts to display on profile sidebar"] = "";
 $a->strings["Lifetime of the cache (in hours)"] = "";
 $a->strings["Cache Statistics"] = "";
 $a->strings["Number of items"] = "";
@@ -1214,6 +1233,7 @@ $a->strings["Randomise Page/Forum list"] = "";
 $a->strings["Show pages/forums on profile page"] = "";
 $a->strings["Planets Settings"] = "";
 $a->strings["Enable Planets Plugin"] = "";
+$a->strings["Forum Directory"] = "";
 $a->strings["Login"] = "Вход";
 $a->strings["OpenID"] = "OpenID";
 $a->strings["Latest users"] = "";
@@ -1369,16 +1389,15 @@ $a->strings["Enable dreamwidth Post Plugin"] = "Включить dreamwidth пл
 $a->strings["dreamwidth username"] = "dreamwidth имя пользователя";
 $a->strings["dreamwidth password"] = "dreamwidth пароль";
 $a->strings["Post to dreamwidth by default"] = "";
-$a->strings["Post to Drupal"] = "";
-$a->strings["Drupal Post Settings"] = "";
-$a->strings["Enable Drupal Post Plugin"] = "Включить Drupal  плагин сообщений";
-$a->strings["Drupal username"] = "Drupal имя пользователя";
-$a->strings["Drupal password"] = "Drupal пароль";
-$a->strings["Post Type - article,page,or blog"] = "";
-$a->strings["Drupal site URL"] = "Drupal site URL";
-$a->strings["Drupal site uses clean URLS"] = "";
-$a->strings["Post to Drupal by default"] = "";
-$a->strings["Post from Friendica"] = "Сообщение от Friendica";
+$a->strings["Remote Permissions Settings"] = "";
+$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "";
+$a->strings["Remote Permissions settings updated."] = "";
+$a->strings["Visible to"] = "";
+$a->strings["may only be a partial list"] = "";
+$a->strings["Global"] = "";
+$a->strings["The posts of every user on this server show the post recipients"] = "";
+$a->strings["Individual"] = "";
+$a->strings["Each user chooses whether his/her posts show the post recipients"] = "";
 $a->strings["Startpage Settings"] = "";
 $a->strings["Home page to load after login  - leave blank for profile wall"] = "";
 $a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "";
@@ -1395,15 +1414,13 @@ $a->strings["No files were uploaded."] = "Нет загруженных файл
 $a->strings["Uploaded file is empty"] = "Загруженный файл пустой";
 $a->strings["File has an invalid extension, it should be one of "] = "Файл имеет недопустимое расширение, оно должно быть одним из следующих ";
 $a->strings["Upload was cancelled, or server error encountered"] = "Загрузка была отменена, или произошла ошибка сервера";
-$a->strings["OEmbed settings updated"] = "OEmbed настройки обновлены";
-$a->strings["Use OEmbed for YouTube videos"] = "Использовать OEmbed для видео YouTube";
-$a->strings["URL to embed:"] = "URL для встраивания:";
 $a->strings["show/hide"] = "";
 $a->strings["No forum subscriptions"] = "";
 $a->strings["Forumlist settings updated."] = "";
 $a->strings["Forumlist Settings"] = "";
 $a->strings["Randomise forum list"] = "";
 $a->strings["Show forums on profile page"] = "";
+$a->strings["Show forums on network page"] = "";
 $a->strings["Impressum"] = "Impressum";
 $a->strings["Site Owner"] = "Владелец сайта";
 $a->strings["Email Address"] = "Адрес электронной почты";
@@ -1535,6 +1552,7 @@ $a->strings["Tumblr password"] = "Tumblr пароль";
 $a->strings["Post to Tumblr by default"] = "Сообщение Tumblr по умолчанию";
 $a->strings["Numfriends settings updated."] = "";
 $a->strings["Numfriends Settings"] = "";
+$a->strings["How many contacts to display on profile sidebar"] = "";
 $a->strings["Gnot settings updated."] = "";
 $a->strings["Gnot Settings"] = "";
 $a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "";
@@ -1548,6 +1566,7 @@ $a->strings["WordPress password"] = "WordPress паролъ";
 $a->strings["WordPress API URL"] = "WordPress API URL";
 $a->strings["Post to WordPress by default"] = "Сообщение WordPress по умолчанию";
 $a->strings["Provide a backlink to the Friendica post"] = "";
+$a->strings["Post from Friendica"] = "Сообщение от Friendica";
 $a->strings["Read the original post and comment stream on Friendica"] = "";
 $a->strings["\"Show more\" Settings"] = "";
 $a->strings["Enable Show More"] = "Включить Показать больше";
@@ -1639,6 +1658,8 @@ $a->strings["Last tweets"] = "";
 $a->strings["Alignment"] = "Выравнивание";
 $a->strings["Left"] = "";
 $a->strings["Center"] = "Центр";
+$a->strings["Posts font size"] = "";
+$a->strings["Textareas font size"] = "";
 $a->strings["Set colour scheme"] = "";
 $a->strings["j F, Y"] = "j F, Y";
 $a->strings["j F"] = "j F";
@@ -1671,6 +1692,7 @@ $a->strings["Zot!"] = "Zot!";
 $a->strings["LinkedIn"] = "LinkedIn";
 $a->strings["XMPP/IM"] = "XMPP/IM";
 $a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "";
 $a->strings["Male"] = "Мужчина";
 $a->strings["Female"] = "Женщина";
 $a->strings["Currently Male"] = "В данный момент мужчина";
@@ -1801,6 +1823,19 @@ $a->strings["Attachments:"] = "Вложения:";
 $a->strings["view full size"] = "посмотреть в полный размер";
 $a->strings["Embedded content"] = "Встроенное содержание";
 $a->strings["Embedding disabled"] = "Встраивание отключено";
+$a->strings["Error decoding account file"] = "";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
+$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "";
+$a->strings["Error! Cannot check nickname"] = "";
+$a->strings["User '%s' already exists on this server!"] = "";
+$a->strings["User creation error"] = "";
+$a->strings["User profile creation error"] = "";
+$a->strings["%d contact not imported"] = array(
+       0 => "",
+       1 => "",
+       2 => "",
+);
+$a->strings["Done. You can now login with your username and password"] = "";
 $a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "";
 $a->strings["Default privacy group for new contacts"] = "";
 $a->strings["Everybody"] = "Каждый";
@@ -1822,6 +1857,8 @@ $a->strings["Conversations on this site"] = "Беседы на этом сайт
 $a->strings["Directory"] = "Каталог";
 $a->strings["People directory"] = "Каталог участников";
 $a->strings["Conversations from your friends"] = "Беседы с друзьями";
+$a->strings["Network Reset"] = "";
+$a->strings["Load Network page with no filters"] = "";
 $a->strings["Friend Requests"] = "Запросы на добавление в список друзей";
 $a->strings["See all notifications"] = "Посмотреть все уведомления";
 $a->strings["Mark all system notifications seen"] = "";
@@ -1831,7 +1868,7 @@ $a->strings["Outbox"] = "Исходящие";
 $a->strings["Manage"] = "Управлять";
 $a->strings["Manage other pages"] = "Управление другими страницами";
 $a->strings["Profiles"] = "Профили";
-$a->strings["Manage/edit profiles"] = "Управление / редактирование профилей";
+$a->strings["Manage/Edit Profiles"] = "";
 $a->strings["Manage/edit friends and contacts"] = "Управление / редактирование друзей и контактов";
 $a->strings["Site setup and configuration"] = "Установка и конфигурация сайта";
 $a->strings["Nothing new here"] = "Ничего нового здесь";
@@ -1876,6 +1913,43 @@ $a->strings["From: "] = "От: ";
 $a->strings["Image/photo"] = "Изображение / Фото";
 $a->strings["$1 wrote:"] = "$1 написал:";
 $a->strings["Encrypted content"] = "";
+$a->strings["General Features"] = "";
+$a->strings["Multiple Profiles"] = "";
+$a->strings["Ability to create multiple profiles"] = "";
+$a->strings["Post Composition Features"] = "";
+$a->strings["Richtext Editor"] = "";
+$a->strings["Enable richtext editor"] = "";
+$a->strings["Post Preview"] = "";
+$a->strings["Allow previewing posts and comments before publishing them"] = "";
+$a->strings["Network Sidebar Widgets"] = "";
+$a->strings["Search by Date"] = "";
+$a->strings["Ability to select posts by date ranges"] = "";
+$a->strings["Group Filter"] = "";
+$a->strings["Enable widget to display Network posts only from selected group"] = "";
+$a->strings["Network Filter"] = "";
+$a->strings["Enable widget to display Network posts only from selected network"] = "";
+$a->strings["Save search terms for re-use"] = "";
+$a->strings["Network Tabs"] = "";
+$a->strings["Network Personal Tab"] = "";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
+$a->strings["Network New Tab"] = "";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "";
+$a->strings["Network Shared Links Tab"] = "";
+$a->strings["Enable tab to display only Network posts with links in them"] = "";
+$a->strings["Post/Comment Tools"] = "";
+$a->strings["Multiple Deletion"] = "";
+$a->strings["Select and delete multiple posts/comments at once"] = "";
+$a->strings["Edit Sent Posts"] = "";
+$a->strings["Edit and correct posts and comments after sending"] = "";
+$a->strings["Tagging"] = "";
+$a->strings["Ability to tag existing posts"] = "";
+$a->strings["Post Categories"] = "";
+$a->strings["Add categories to your posts"] = "";
+$a->strings["Ability to file posts under folders"] = "";
+$a->strings["Dislike Posts"] = "";
+$a->strings["Ability to dislike posts/comments"] = "";
+$a->strings["Star Posts"] = "";
+$a->strings["Ability to mark special posts with a star indicator"] = "";
 $a->strings["Cannot locate DNS info for database server '%s'"] = "Не могу найти информацию для DNS-сервера базы данных '%s'";
 $a->strings["[no subject]"] = "[без темы]";
 $a->strings["Visible to everybody"] = "Видимо всем";
@@ -1967,6 +2041,7 @@ $a->strings["Categories:"] = "";
 $a->strings["Filed under:"] = "";
 $a->strings["remove"] = "удалить";
 $a->strings["Delete Selected Items"] = "Удалить выбранные позиции";
+$a->strings["Follow Thread"] = "";
 $a->strings["%s likes this."] = "%s нравится это.";
 $a->strings["%s doesn't like this."] = "%s не нравится это.";
 $a->strings["<span  %1\$s>%2\$d people</span> like this."] = "<span  %1\$s>%2\$d чел.</span> нравится это.";
@@ -1980,15 +2055,7 @@ $a->strings["Please enter a video link/URL:"] = "";
 $a->strings["Please enter an audio link/URL:"] = "";
 $a->strings["Tag term:"] = "";
 $a->strings["Where are you right now?"] = "И где вы сейчас?";
-$a->strings["upload photo"] = "загрузить фото";
-$a->strings["attach file"] = "приложить файл";
-$a->strings["web link"] = "веб-ссылка";
-$a->strings["Insert video link"] = "Вставить ссылку видео";
-$a->strings["video link"] = "видео-ссылка";
-$a->strings["Insert audio link"] = "Вставить ссылку аудио";
-$a->strings["audio link"] = "аудио-ссылка";
-$a->strings["set location"] = "установить местонахождение";
-$a->strings["clear location"] = "убрать местонахождение";
+$a->strings["Delete item(s)?"] = "";
 $a->strings["permissions"] = "разрешения";
 $a->strings["Click here to upgrade."] = "";
 $a->strings["This action exceeds the limits set by your subscription plan."] = "";
@@ -2000,11 +2067,13 @@ $a->strings["Update Error at %s"] = "";
 $a->strings["Create a New Account"] = "Создать новый аккаунт";
 $a->strings["Nickname or Email address: "] = "Ник или адрес электронной почты: ";
 $a->strings["Password: "] = "Пароль: ";
+$a->strings["Remember me"] = "";
 $a->strings["Or login using OpenID: "] = "";
 $a->strings["Forgot your password?"] = "Забыли пароль?";
 $a->strings["Requested account is not available."] = "";
 $a->strings["Edit profile"] = "Редактировать профиль";
 $a->strings["Message"] = "";
+$a->strings["Manage/edit profiles"] = "Управление / редактирование профилей";
 $a->strings["g A l F d"] = "g A l F d";
 $a->strings["F d"] = "F d";
 $a->strings["[today]"] = "[сегодня]";
@@ -2017,3 +2086,19 @@ $a->strings["Status Messages and Posts"] = "";
 $a->strings["Profile Details"] = "";
 $a->strings["Events and Calendar"] = "";
 $a->strings["Only You Can See This"] = "";
+$a->strings["via"] = "";
+$a->strings["toggle mobile"] = "";
+$a->strings["Bg settings updated."] = "";
+$a->strings["Bg Settings"] = "";
+$a->strings["Post to Drupal"] = "";
+$a->strings["Drupal Post Settings"] = "";
+$a->strings["Enable Drupal Post Plugin"] = "Включить Drupal  плагин сообщений";
+$a->strings["Drupal username"] = "Drupal имя пользователя";
+$a->strings["Drupal password"] = "Drupal пароль";
+$a->strings["Post Type - article,page,or blog"] = "";
+$a->strings["Drupal site URL"] = "Drupal site URL";
+$a->strings["Drupal site uses clean URLS"] = "";
+$a->strings["Post to Drupal by default"] = "";
+$a->strings["OEmbed settings updated"] = "OEmbed настройки обновлены";
+$a->strings["Use OEmbed for YouTube videos"] = "Использовать OEmbed для видео YouTube";
+$a->strings["URL to embed:"] = "URL для встраивания:";
index dfdee1fabcc4c5812bfd936093aad34775dfdc73..384f6087ac3b409563ce32fdf7af729bdbfa411d 100644 (file)
                        <div class="wall-item-title-end"></div>
                        <div class="wall-item-body" id="wall-item-body-$item.id" >$item.body</div>
                        {{ if $item.has_cats }}
-                       <div class="categorytags"><span>$item.txt_cats {{ for $item.categories as $cat }}$cat.name <a href="$cat.removeurl" title="$remove">[$remove]</a> {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
+                       <div class="categorytags"><span>$item.txt_cats {{ for $item.categories as $cat }}$cat.name{{ if $cat.removeurl }} <a href="$cat.removeurl" title="$remove">[$remove]</a>{{ endif }} {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
                        </div>
                        {{ endif }}
 
                        {{ if $item.has_folders }}
-                       <div class="filesavetags"><span>$item.txt_folders {{ for $item.folders as $cat }}$cat.name <a href="$cat.removeurl" title="$remove">[$remove]</a> {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
+                       <div class="filesavetags"><span>$item.txt_folders {{ for $item.folders as $cat }}$cat.name{{ if $cat.removeurl }} <a href="$cat.removeurl" title="$remove">[$remove]</a>{{ endif }}{{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
                        </div>
                        {{ endif }}
                </div>
index bcb74ec7045033953d0735f50535dee3d80b0a1c..e22cb4c3fbd82ba9bc2f156a6674c36ff7944c54 100644 (file)
                                                {{ endfor }}
                                        </div>
                        {{ if $item.has_cats }}
-                       <div class="categorytags"><span>$item.txt_cats {{ for $item.categories as $cat }}$cat.name <a href="$cat.removeurl" title="$remove">[$remove]</a> {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
+                       <div class="categorytags"><span>$item.txt_cats {{ for $item.categories as $cat }}$cat.name{{ if $cat.removeurl }} <a href="$cat.removeurl" title="$remove">[$remove]</a>{{ endif }} {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
                        </div>
                        {{ endif }}
 
                        {{ if $item.has_folders }}
-                       <div class="filesavetags"><span>$item.txt_folders {{ for $item.folders as $cat }}$cat.name <a href="$cat.removeurl" title="$remove">[$remove]</a> {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
+                       <div class="filesavetags"><span>$item.txt_folders {{ for $item.folders as $cat }}$cat.name{{ if $cat.removeurl}} <a href="$cat.removeurl" title="$remove">[$remove]</a>{{ endif }}{{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }}
                        </div>
                        {{ endif }}
                        </div>